/* ===========================================================
   Hagen Systems — premium Scandinavian B2B
   Hand-written CSS. No framework runtime.
   =========================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0F1B2D;
  --ink-2:      #1E2A3D;
  --slate:      #44505F;
  --muted:      #6B7480;
  --canvas:     #FBFAF7;
  --sand:       #F3EFE7;
  --sand-2:     #ECE6DA;
  --paper:      #FFFFFF;
  --line:       #E7E1D5;
  --line-2:     #EFEADF;

  --teal:       #0E766A;
  --teal-600:   #0B5F55;
  --teal-700:   #084B43;
  --teal-tint:  #E6F1EE;
  --teal-tint-2:#D5E7E2;

  --amber:      #C0823B;
  --amber-tint: #F6ECDC;
  --alert:      #D9534A;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --pill: 999px;

  --shadow-xs: 0 1px 2px rgba(15,27,45,.05);
  --shadow-sm: 0 2px 8px rgba(15,27,45,.06);
  --shadow:    0 12px 30px -12px rgba(15,27,45,.18);
  --shadow-lg: 0 30px 60px -22px rgba(15,27,45,.30);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-display: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--slate);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -.01em; }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--teal); opacity: .8;
}
.eyebrow--center::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--slate); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 124px); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); }
.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 18px; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--pill);
  font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .2s var(--ease),
              box-shadow .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px -10px rgba(14,118,106,.7); }
.btn--primary:hover { background: var(--teal-600); box-shadow: 0 16px 30px -10px rgba(14,118,106,.6); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251,250,247,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px; border-radius: var(--pill);
  font-size: .95rem; font-weight: 500; color: var(--slate);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--sand-2); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600; color: var(--ink); white-space: nowrap; transition: color .2s; }
.nav-phone svg { width: 18px; height: 18px; color: var(--teal); }
.nav-phone:hover { color: var(--teal-600); }
@media (max-width: 1080px){ .nav-phone span { display: none; } }

/* Brand wordmark */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 40px; height: auto; flex: none;
  display: block; max-height: 24px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); letter-spacing: -.02em; }
.brand-sub { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; font-weight: 600; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--canvas);
  padding: 24px var(--gutter);
  display: flex; flex-direction: column;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .4s var(--ease), opacity .3s, visibility .3s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu nav { margin-top: 40px; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.mobile-menu .mm-cta { margin-top: auto; display: grid; gap: 12px; padding-bottom: 20px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ===========================================================
   HERO — full-bleed video background
   =========================================================== */
.hero--video {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}

/* Video layer */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(11,22,38,.90) 0%,
    rgba(11,22,38,.80) 38%,
    rgba(11,22,38,.52) 62%,
    rgba(11,22,38,.22) 100%
  );
}
/* Bottom fade to page canvas color */
.hero-overlay::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(to top, var(--canvas), transparent);
}

/* Content grid */
.hero-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(80px, 10vw, 130px);
}
@media (max-width: 880px) {
  .hero--video { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 44px; padding-block: clamp(64px, 10vw, 100px); }
}

/* Badge — light on dark */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 9px; border-radius: var(--pill);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #5FD3C2; position: relative; }
.hero-badge .dot::after {
  content:""; position:absolute; inset:-4px; border-radius:50%;
  border: 2px solid #5FD3C2; opacity:.5; animation: ripple 2.4s ease-out infinite;
}
@keyframes ripple { 0%{transform:scale(.6);opacity:.6} 100%{transform:scale(1.8);opacity:0} }

/* Heading on dark */
.hero h1 { margin-top: 22px; color: #fff; }
.hero h1 .hl {
  color: #5FD3C2; position: relative; white-space: nowrap;
}
.hero h1 .hl::after {
  content:""; position:absolute; left:0; right:0; bottom:.06em; height:.12em;
  background: rgba(95,211,194,.25); border-radius: 4px; z-index:-1;
}

.hero-sub {
  margin-top: 24px; max-width: 520px;
  font-size: clamp(1.05rem,1.6vw,1.22rem);
  color: rgba(255,255,255,.82);
}

.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Ghost on dark */
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
  white-space: nowrap;
}
.btn--ghost-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.hero-trust { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; }
.hero-trust-item { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: rgba(255,255,255,.80); font-weight: 500; }
.hero-trust-item svg { width: 19px; height: 19px; color: #5FD3C2; flex: none; }
.hero-trust .sep { width: 1px; height: 18px; background: rgba(255,255,255,.20); }
@media (max-width:520px){ .hero-trust .sep { display:none; } }

/* Story cards column */
.hero-floats {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0; max-width: 320px; justify-self: end;
}
@media (max-width: 880px) { .hero-floats { justify-self: start; max-width: 100%; } }

/* Float connector arrow */
.float-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 4px 0 4px 22px;
  color: rgba(255,255,255,.45);
}
.float-arrow svg { width: 18px; height: 18px; }

/* Float cards */
.float {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--r); padding: 14px 18px;
  box-shadow: 0 8px 28px -8px rgba(11,22,38,.40);
  display: flex; align-items: center; gap: 13px;
  font-size: .9rem; width: 100%;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.float:hover { transform: translateX(4px); box-shadow: 0 14px 36px -10px rgba(11,22,38,.45); }
.float .fi { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.float .fi svg { width: 20px; height: 20px; }
.float .ft { font-weight: 600; color: var(--ink); line-height: 1.25; }
.float .fs { font-size: .78rem; color: var(--muted); font-weight: 500; }
.fi--alert { background: #FBEAE8; color: var(--alert); }
.fi--ok    { background: var(--teal-tint); color: var(--teal); }
.fi--sum   { background: var(--amber-tint); color: var(--amber); }

/* Entrance animation */
.hero-anim > * { opacity: 0; transform: translateY(14px); }
.hero-anim.go > * { animation: floatIn .7s var(--ease) forwards; }
.hero-anim.go > *:nth-child(1) { animation-delay: .45s; }
.hero-anim.go > *:nth-child(2) { animation-delay: .9s; }
.hero-anim.go > *:nth-child(3) { animation-delay: 1.0s; }
.hero-anim.go > *:nth-child(4) { animation-delay: 1.5s; }
.hero-anim.go > *:nth-child(5) { animation-delay: 1.6s; }
@keyframes floatIn { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce){ .hero-anim > * { opacity:1; transform:none; } }

/* Logo / proof strip */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--canvas); }
.proof-inner { padding-block: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.proof-label { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.proof-tag { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink-2); font-size: 1rem; }
.proof-tag svg { width: 20px; height: 20px; color: var(--teal); }

/* ===========================================================
   Cards / generic
   =========================================================== */
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }

.icon-badge {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; flex: none;
  background: var(--teal-tint); color: var(--teal);
  transition: background .3s, color .3s;
}
.icon-badge svg { width: 26px; height: 26px; }
.card:hover .icon-badge { background: var(--teal); color: #fff; }
.card h3 { margin-top: 20px; }
.card p { margin-top: 12px; font-size: .98rem; }

/* ---------- Problem section ---------- */
.problem-list { display: grid; gap: 14px; }
.problem-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px 22px; box-shadow: var(--shadow-xs);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.problem-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.problem-item .pi { width: 44px; height: 44px; border-radius: 12px; background: #FBEAE8; color: var(--alert); display: grid; place-items: center; flex: none; }
.problem-item .pi svg { width: 22px; height: 22px; }
.problem-item h3 { font-size: 1.1rem; }
.problem-item p { margin-top: 4px; font-size: .94rem; }

.media-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.stat-chip {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(15,27,45,.86); color: #fff; backdrop-filter: blur(6px);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow);
}
.stat-chip .n { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.stat-chip .l { font-size: .8rem; opacity: .82; margin-top: 5px; }

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,68px); align-items: center; }
.split--rev .split-media { order: -1; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; gap: 32px; } .split--rev .split-media { order: 0; } }
.feat-list { margin-top: 26px; display: grid; gap: 16px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--slate); }
.feat-list .ic { width: 26px; height: 26px; border-radius: 8px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; flex: none; margin-top: 1px; }
.feat-list .ic svg { width: 16px; height: 16px; }
.feat-list b { color: var(--ink); font-weight: 600; }

/* ---------- How it works ---------- */
.steps { counter-reset: step; display: grid; gap: clamp(18px,2.4vw,26px); position: relative; }
.step { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-xs); transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .num {
  counter-increment: step;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--ink); color: #fff;
}
.step .num::before { content: "0" counter(step); }
.step h3 { margin-top: 20px; font-size: 1.2rem; }
.step p { margin-top: 10px; font-size: .95rem; }

/* ---------- Services ---------- */
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card.featured { background: var(--ink); border-color: var(--ink); }
.service-card.featured h3, .service-card.featured .price { color: #fff; }
.service-card.featured p { color: #C4CDD8; }
.service-card.featured .icon-badge { background: rgba(255,255,255,.1); color: #fff; }
.service-card.featured:hover .icon-badge { background: var(--teal); }
.service-card.featured .svc-list li { color: #D6DEE7; }
.service-card .tag { display:inline-flex; align-self:flex-start; font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--teal); background:var(--teal-tint); padding:5px 11px; border-radius:var(--pill); margin-bottom:18px; }
.service-card.featured .tag { color: var(--ink); background: #fff; }
.svc-list { margin-top: 20px; display: grid; gap: 11px; flex: 1; }
.svc-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--slate); }
.svc-list .ic { color: var(--teal); flex: none; margin-top: 2px; }
.svc-list .ic svg { width: 18px; height: 18px; }
.service-card.featured .svc-list .ic { color: #5FD3C2; }
.service-card .svc-foot { margin-top: 26px; }

/* ---------- Industries ---------- */
.industry {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.industry:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-tint-2); }
.industry .iz { width: 52px; height: 52px; border-radius: 14px; background: var(--sand); color: var(--ink); display: grid; place-items: center; transition: background .3s,color .3s; }
.industry:hover .iz { background: var(--teal); color: #fff; }
.industry .iz svg { width: 27px; height: 27px; }
.industry h3 { font-size: 1.15rem; }
.industry p { font-size: .9rem; margin-top: -6px; }

/* ---------- Benefits ---------- */
.benefit { display: flex; gap: 16px; align-items: flex-start; padding: 4px; }
.benefit .bi { width: 48px; height: 48px; border-radius: 13px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; flex: none; }
.benefit .bi svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.12rem; }
.benefit p { font-size: .94rem; margin-top: 6px; }
.section--ink .benefit .bi { background: rgba(95,211,194,.15); color: #6FE0CF; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .lead, .section--ink .benefit p { color: #B7C2CF; }
.section--ink .eyebrow { color: #6FE0CF; }
.section--ink .eyebrow::before { background:#6FE0CF; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px,5vw,64px); align-items: center; }
@media (max-width: 900px){ .about-grid { grid-template-columns: 1fr; } }
.about-photo { position: relative; }
.about-photo .pf { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid #fff; }
.about-photo .pf img { aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.about-sign { margin-top: 28px; display: flex; align-items: center; gap: 16px; }
.about-sign .nm { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.15rem; }
.about-sign .rl { font-size: .9rem; color: var(--muted); }
.quote-card {
  position: absolute; right: -18px; bottom: -22px; max-width: 260px;
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: 20px 22px; box-shadow: var(--shadow-lg);
}
.quote-card p { font-size: .95rem; line-height: 1.5; }
.quote-card .qm { font-family: var(--font-display); font-size: 2.4rem; line-height: .6; color: var(--teal); }
@media (max-width: 480px){ .quote-card { position: static; margin-top: 18px; max-width: none; } }
.about-body p + p { margin-top: 16px; }
.about-stats { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px 36px; }
.about-stats .as .n { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--teal); }
.about-stats .as .l { font-size: .88rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--teal-tint-2); }
.faq-q { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.08rem; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q .chev { width: 30px; height: 30px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background .3s; }
.faq-q .chev svg { width: 18px; height: 18px; color: var(--ink); }
.faq-item[open] .faq-q .chev { transform: rotate(45deg); background: var(--teal); }
.faq-item[open] .faq-q .chev svg { color: #fff; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); }
.faq-item[open] .faq-a { padding: 0 24px 24px; max-height: 460px; }
.faq-a p { color: var(--slate); font-size: .98rem; }

/* ---------- Final CTA ---------- */
.cta-wrap { position: relative; background: var(--ink); border-radius: var(--r-xl); overflow: hidden; padding: clamp(36px,5vw,68px); }
.cta-wrap::before { content:""; position:absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(14,118,106,.45), transparent 65%); top: -180px; right: -120px; }
.cta-wrap::after { content:""; position:absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(192,130,59,.22), transparent 65%); bottom: -200px; left: -100px; }
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,56px); align-items: center; }
@media (max-width: 880px){ .cta-grid { grid-template-columns: 1fr; gap: 36px; } }
.cta-wrap h2, .cta-copy .lead { color: #fff; }
.cta-copy .lead { color: #C4CDD8; margin-top: 18px; }
.cta-points { margin-top: 26px; display: grid; gap: 12px; }
.cta-points li { display: flex; gap: 11px; align-items: center; color: #DCE3EA; font-size: .98rem; }
.cta-points svg { width: 20px; height: 20px; color: #6FE0CF; flex: none; }

.form-card { background: var(--paper); border-radius: var(--r-lg); padding: clamp(24px,3vw,34px); box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.3rem; }
.form-card .fc-sub { margin-top: 6px; font-size: .92rem; color: var(--muted); }
.field { margin-top: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .96rem;
  background: var(--canvas); border: 1.5px solid var(--line); border-radius: 12px;
  color: var(--ink); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 4px var(--teal-tint);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px){ .form-row { grid-template-columns: 1fr; } }
.form-note { margin-top: 14px; font-size: .8rem; color: var(--muted); text-align: center; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .si { width: 64px; height: 64px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .si svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 1.4rem; }
.form-success p { margin-top: 10px; color: var(--slate); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #AEB9C6; padding-block: clamp(48px,6vw,72px) 32px; }
.footer .brand-name { color: #fff; }
.footer .brand-mark { opacity: 0.85; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: .95rem; color: #AEB9C6; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-about p { margin-top: 18px; font-size: .94rem; max-width: 300px; line-height: 1.6; }
.footer-contact a { display: flex; align-items: center; gap: 10px; color: #C4CDD8; margin-bottom: 12px; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: #6FE0CF; flex: none; }
.footer-bottom { margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .85rem; color: #8794A3; }

/* ===========================================================
   Reveal animations
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-badge .dot::after, .hero-video { animation: none !important; }
}

/* Selection */
::selection { background: var(--teal-tint-2); color: var(--ink); }
