/* ═══════════════════════════════════════════
   V6 — "EDITORIAL BLUE"
   Awwwards-inspired · Blue accent · Bold type
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg:         #F0F0F4;
  --bg2:        #E6E6EC;
  --bg-warm:    #ECEAEF;
  --surface:    #FFFFFF;
  --glass:      rgba(255,255,255,0.7);
  --glass-border: rgba(0,0,0,0.07);
  --ink:        #0A0A12;
  --ink-dim:    rgba(10,10,18,0.6);
  --ink-muted:  rgba(10,10,18,0.3);
  --blue:       #2563EB;
  --blue-dark:  #1D4ED8;
  --blue-deep:  #1E3A5F;
  --blue-light: #DBEAFE;
  --navy:       #0F1B2D;
  --gradient:   linear-gradient(135deg, #2563EB, #1D4ED8);
  --radius:     12px;
  --radius-lg:  18px;
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.05);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.12);
  --ease:       cubic-bezier(0.22,1,0.36,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #C0C0CC; border-radius: 3px; }

.page-wrapper { flex: 1; }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */

.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }

/* Clip reveal — text slides up from hidden */
.clip-rv {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
}
.clip-rv.vis { clip-path: inset(0 0 0% 0); }

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */

.blue-text { color: var(--blue); }

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */

header {
  background: rgba(240,240,244,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { cursor: pointer; flex-shrink: 0; }
.logo img { height: 26px; }

nav ul { list-style: none; display: flex; gap: 2px; }

nav ul li a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--ink-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.1px;
  cursor: pointer;
  transition: color .3s, background .3s;
  white-space: nowrap;
}

nav ul li a:hover { color: var(--ink); background: rgba(0,0,0,0.04); }

nav ul li a.active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 2px 10px rgba(37,99,235,0.3);
}

.hamburger {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer; padding: 6px;
  line-height: 1; color: var(--ink);
  margin-left: auto;
}

/* ═══════════════════════════════════════════
   PAGE ROUTING
═══════════════════════════════════════════ */

.page { display: none; }
.page.active { display: block; animation: pgIn .6s var(--ease) both; }

@keyframes pgIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   PAGE HERO (subpages)
═══════════════════════════════════════════ */

.pg-hero {
  background: var(--navy);
  color: #fff;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 60px) clamp(50px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pg-hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15), transparent 70%);
  pointer-events: none;
}

.pg-hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}

.pg-hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: clamp(-2px, -0.04em, -3px);
  line-height: 1.0;
  margin-bottom: 16px;
}

.pg-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   HOME HERO — Full bleed image
═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,27,45,0.95) 0%,
    rgba(15,27,45,0.7) 35%,
    rgba(15,27,45,0.4) 60%,
    rgba(15,27,45,0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px) clamp(60px, 8vw, 100px);
  width: 100%;
  color: #fff;
}

.hero-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}

.hero-tag-line {
  width: 40px; height: 1px;
  background: var(--blue);
}

.hero h1 {
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: clamp(-2px, -0.05em, -6px);
  margin-bottom: 28px;
  max-width: 900px;
}

.hero h1 .blue-text {
  color: #60A5FA;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 28px; right: clamp(20px, 4vw, 60px);
  z-index: 2;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 12px;
}

.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.3); }
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */

.marquee {
  background: var(--navy);
  padding: 20px 0;
  overflow: hidden;
  user-select: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex; width: max-content;
  animation: marq 28s linear infinite;
}

.marquee-w {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 36px;
  white-space: nowrap;
  color: rgba(255,255,255,0.35);
}

.marquee-w.hl { color: rgba(255,255,255,0.6); }

.marquee-w .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  margin-left: 36px;
  vertical-align: middle;
}

@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════ */

.sec {
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 60px);
}

.sec-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.sec-header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.sec-header h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
}

.sec-header p {
  font-size: 16px;
  color: var(--ink-dim);
  margin-top: 16px;
  max-width: 480px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   USP — Numbered strips
═══════════════════════════════════════════ */

.usp-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.usp-item {
  background: var(--surface);
  padding: 44px 32px;
  position: relative;
  transition: background .3s;
}

.usp-item:hover { background: var(--blue-light); }

.usp-num {
  font-size: 44px; font-weight: 900; color: var(--blue-light);
  letter-spacing: -2px; line-height: 1; margin-bottom: 18px;
}

.usp-item h3 {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 8px;
}

.usp-item p {
  font-size: 13.5px; color: var(--ink-dim);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   GALLERY — Bento grid
═══════════════════════════════════════════ */

.bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 8px;
}

.bento-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .7s var(--ease), filter .7s;
  filter: saturate(0.9);
}

.bento-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.bento-item.tall { grid-row: span 2; }

/* ═══════════════════════════════════════════
   ABOUT — Split
═══════════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-big {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
}

.about-body p {
  font-size: 15.5px;
  color: var(--ink-dim);
  line-height: 1.85;
  margin-bottom: 18px;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 30px;
  background: var(--blue); color: #fff;
  text-decoration: none; border-radius: 10px;
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.1px;
  border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(37,99,235,0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.35);
  background: var(--blue-dark);
}

.btn-dark {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.btn-dark:hover {
  background: #162740;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--glass-border);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--ink);
  box-shadow: none;
}

.btn-lg { padding: 17px 38px; font-size: 15px; }

/* ═══════════════════════════════════════════
   PRODUCTEN
═══════════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s;
}

.p-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.p-card-img {
  aspect-ratio: 1/0.85;
  overflow: hidden;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

.p-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .6s var(--ease);
}

.p-card:hover .p-card-img img { transform: scale(1.08); }

.p-card-body {
  padding: 24px;
  display: flex; flex-direction: column; flex: 1;
}

.p-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.2px; }
.p-card-body p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.6; flex: 1; margin-bottom: 18px; }

/* ═══════════════════════════════════════════
   HANDLEIDING — Timeline
═══════════════════════════════════════════ */

.tl-wrap { max-width: 720px; margin: 0 auto; }

.tl { position: relative; padding-left: 60px; }

.tl::before {
  content: ''; position: absolute;
  left: 22px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--glass-border));
}

.tl-step { position: relative; margin-bottom: 52px; }
.tl-step:last-child { margin-bottom: 0; }

.tl-num {
  position: absolute; left: -60px; top: 2px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--blue);
  box-shadow: var(--shadow-sm);
  transition: background .3s, border-color .3s, color .3s;
}

.tl-step:hover .tl-num {
  background: var(--blue); border-color: var(--blue); color: #fff;
}

.tl-step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.tl-step p { font-size: 15px; color: var(--ink-dim); line-height: 1.7; margin-bottom: 10px; }
.tl-step ol, .tl-step ul { padding-left: 20px; margin-top: 8px; }
.tl-step li { font-size: 15px; color: var(--ink-dim); margin-bottom: 7px; line-height: 1.65; }

.tl-img {
  margin-top: 14px; border-radius: var(--radius);
  overflow: hidden; max-width: 340px; box-shadow: var(--shadow-sm);
}
.tl-img img { width: 100%; }

.tips-card {
  background: var(--surface); border: 1px solid var(--glass-border);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 30px; margin-top: 52px;
}
.tips-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.tips-card ul { padding-left: 18px; }
.tips-card li { font-size: 14.5px; color: var(--ink-dim); margin-bottom: 7px; }

.dl-note {
  text-align: center; margin-top: 52px;
  padding-top: 36px; border-top: 1px solid var(--glass-border);
  font-size: 13.5px; color: var(--ink-muted);
}
.dl-note a { color: var(--blue); text-decoration: none; font-weight: 600; }
.dl-note a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   FAQ — Numbered, editorial
═══════════════════════════════════════════ */

.faq-wrap { max-width: 800px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  position: relative;
  transition: background .3s;
}
.faq-item:first-child { border-top: 1px solid var(--glass-border); }

.faq-item::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--blue); opacity: 0;
  transition: opacity .4s;
}
.faq-item.open::before { opacity: 1; }
.faq-item.open { background: var(--surface); }

.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 26px 28px 26px 28px;
  font-size: 16px; font-weight: 600;
  color: var(--ink); cursor: pointer;
  display: flex; align-items: center; gap: 18px;
  font-family: inherit; line-height: 1.4;
  transition: color .25s;
}
.faq-q:hover { color: var(--blue); }

.faq-num {
  flex-shrink: 0; font-size: 12px; font-weight: 800;
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2); color: var(--ink-muted);
  transition: background .3s, color .3s;
}
.faq-item.open .faq-num { background: var(--blue); color: #fff; }

.faq-q-text { flex: 1; letter-spacing: -0.2px; }

.faq-toggle {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
  color: var(--ink-muted);
  transition: transform .5s var(--ease), color .3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--blue); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease), opacity .4s;
  padding: 0 28px 0 80px;
  font-size: 15px; color: var(--ink-dim); line-height: 1.8; opacity: 0;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 28px 26px 80px; opacity: 1; }

/* ═══════════════════════════════════════════
   B2B
═══════════════════════════════════════════ */

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}

.b2b-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: transform .4s var(--ease), box-shadow .4s;
  position: relative; overflow: hidden;
}
.b2b-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); opacity: 0;
  transition: opacity .3s;
}
.b2b-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.b2b-card:hover::after { opacity: 1; }

.b2b-card .num {
  font-size: 44px; font-weight: 900; color: var(--blue-light);
  letter-spacing: -2px; line-height: 1; margin-bottom: 18px;
}
.b2b-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.b2b-card p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.65; }

.b2b-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */

.contact-sec { max-width: 960px; margin: 0 auto; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-dark {
  background: var(--navy); color: #fff;
  padding: 52px 44px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-dark::before {
  content: ''; position: absolute;
  top: -40%; right: -30%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.contact-dark h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 16px; position: relative; }
.contact-dark > p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 36px; position: relative; }

.c-detail { display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; position: relative; }
.c-detail:last-child { margin-bottom: 0; }
.c-detail-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.c-detail-val { font-size: 15px; font-weight: 600; }
.c-detail-val a { color: #60A5FA; text-decoration: none; }
.c-detail-val a:hover { text-decoration: underline; }
.c-detail-sub { font-size: 12.5px; color: rgba(255,255,255,0.3); margin-top: 2px; }

.contact-light {
  padding: 52px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-light h3 { font-size: 21px; font-weight: 700; margin-bottom: 12px; }
.contact-light > p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.7; margin-bottom: 26px; }

.c-topics { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 8px; }
.c-topics li {
  padding: 11px 14px; background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px; font-size: 13.5px; font-weight: 500;
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 10px;
  transition: border-color .3s, color .3s;
}
.c-topics li:hover { border-color: var(--blue); color: var(--ink); }
.c-topics li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--blue); flex-shrink: 0;
}

.c-links { display: flex; gap: 14px; margin-top: 12px; }
.c-links a { font-size: 12.5px; color: var(--ink-muted); text-decoration: none; cursor: pointer; transition: color .2s; }
.c-links a:hover { color: var(--blue); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

footer {
  background: var(--navy); color: #fff;
  position: relative;
}
footer::before {
  content: ''; position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.3;
}

.ft-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 60px) 44px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px;
}

.ft-logo { height: 22px; filter: brightness(0) invert(1); margin-bottom: 16px; opacity: 0.7; }
.ft-desc { font-size: 13.5px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 240px; }

.ft-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 18px; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 9px; }
.ft-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; cursor: pointer; transition: color .2s; }
.ft-col ul li a:hover { color: #fff; }

.ft-email { display: inline-block; font-size: 13.5px; font-weight: 600; color: #60A5FA; text-decoration: none; margin-bottom: 8px; }
.ft-email:hover { text-decoration: underline; }
.ft-sub { font-size: 12.5px; color: rgba(255,255,255,0.2); line-height: 1.5; }

.ft-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px clamp(20px, 4vw, 60px);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.2);
  max-width: 1440px; margin: 0 auto;
}
.ft-bar-brand { font-weight: 800; letter-spacing: 3px; text-transform: uppercase; font-size: 10px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .usp-list { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .bento-item.tall { grid-row: span 1; }
  .ft-inner { grid-template-columns: 1fr 1fr 1fr; }
  .ft-inner > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero h1 { max-width: 100%; }
  .b2b-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 52px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-dark, .contact-light { padding: 36px 28px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  nav ul {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; width: 100%;
    background: rgba(240,240,244,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 10px 0 18px; z-index: 900;
    border-bottom: 1px solid var(--glass-border);
  }
  nav ul.show { display: flex; }
  nav ul li a { border-radius: 0; padding: 11px 20px; font-size: 15px; }
  nav ul li a.active { background: none; color: var(--blue); box-shadow: none; }
  .product-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .usp-list { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ft-inner > div:first-child { grid-column: 1 / -1; }
  .ft-bar { flex-direction: column; text-align: center; gap: 8px; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .ft-inner { grid-template-columns: 1fr; }
}
