/* =====================================================================
   Clixel Media — merged stylesheet (ported from the client's HTML).
   Navy + gold, Poppins. Section class names match the original design so
   the flexible-content partials render pixel-for-pixel.
   ===================================================================== */

:root{
  --ink-900:#0A2246;
  --ink-800:#0A2F6D;
  --ink-700:#123566;
  --paper:#FAF9F6;
  --gold:#C5AB5D;
  --gold-soft:rgba(197,171,93,0.14);
  --gold-line:rgba(197,171,93,0.28);
  --on-dark:#FAF9F6;
  --on-dark-muted:rgba(250,249,246,0.66);
  --on-light:#0A2F6D;
  --on-light-muted:rgba(10,47,109,0.62);
  --max:1380px;
  --gutter:clamp(24px,5vw,64px);
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Poppins',sans-serif;
  background:var(--ink-900);
  color:var(--on-dark);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a.btn.btn-ghost-light {
    width: 100%;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
.wrap{max-width:var(--max);margin:0 auto;padding-left:var(--gutter);padding-right:var(--gutter);}
.eyebrow{
  font-size:12.5px;font-weight:600;letter-spacing:0.22em;text-transform:uppercase;
  color:var(--gold);display:flex;align-items:center;gap:10px;
}
.eyebrow::before{content:"";width:22px;height:1px;background:var(--gold);display:inline-block;}
h1,h2,h3{font-weight:800;letter-spacing:-0.01em;line-height:1.05;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:600;font-size:15px;padding:16px 30px;border-radius:100px;
  cursor:pointer;transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;border:none;
}
.btn-gold{background:var(--gold);color:var(--ink-900);}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 12px 28px -8px rgba(197,171,93,0.55);}
.btn-ghost-dark{border:1.5px solid rgba(250,249,246,0.28);color:var(--on-dark);}
.btn-ghost-dark:hover{border-color:var(--gold);color:var(--gold);}
.btn-ghost-light{border:1.5px solid rgba(10,34,70,0.22);color:var(--on-light);}
.btn-ghost-light:hover{border-color:var(--ink-800);background:var(--ink-800);color:var(--paper);}
.btn-block{width:100%;}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;}
.skip-link{position:absolute;left:-9999px;}
.skip-link:focus{left:16px;top:16px;z-index:200;background:var(--gold);color:var(--ink-900);padding:10px 16px;border-radius:8px;}
.screen-reader-text{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);}

/* ===== NAV ===== */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:22px 0;transition:background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled{
  background:rgba(10,34,70,0.92);backdrop-filter:blur(10px);
  padding:14px 0;box-shadow:0 8px 30px -12px rgba(0,0,0,0.4);
  border-bottom:1px solid rgba(197,171,93,0.15);
}
nav.wrap{display:flex;align-items:center;justify-content:space-between;}
.logo{font-size:22px;font-weight:900;letter-spacing:0.01em;display:flex;align-items:baseline;gap:2px;}
.logo .dot{color:var(--gold);}
.logo-img{max-height:34px;width:auto;}
.nav-links{display:flex;align-items:center;gap:36px;}
.nav-links li{list-style:none;}
.nav-links a{font-size:14.5px;font-weight:500;color:var(--on-dark-muted);transition:color .2s;position:relative;}
.nav-links a:hover,.nav-links .current-menu-item>a,.nav-links a.active{color:var(--on-dark);}
.nav-cta{display:flex;align-items:center;gap:18px;}
.nav-cta .btn{padding:12px 24px;font-size:14px;}
.burger{display:none;background:none;border:none;color:var(--on-dark);cursor:pointer;padding:6px;}
.mobile-panel{
  display:none;position:fixed;inset:0;background:var(--ink-900);z-index:99;
  flex-direction:column;padding:110px var(--gutter) 40px;gap:28px;
}
.mobile-panel.open{display:flex;}
.mobile-panel .mobile-links{display:flex;flex-direction:column;gap:28px;}
.mobile-panel .mobile-links li{list-style:none;}
.mobile-panel a{font-size:22px;font-weight:600;}
body.clx-menu-open{overflow:hidden;}

/* ===== WhatsApp float ===== */
.clx-whatsapp{
  position:fixed;right:22px;bottom:22px;z-index:95;
  display:inline-flex;align-items:center;gap:10px;
  background:#25D366;color:#fff;padding:12px 16px;border-radius:100px;
  box-shadow:0 12px 30px -8px rgba(0,0,0,0.45);transition:transform .2s ease, box-shadow .2s ease;
}
.clx-whatsapp:hover{transform:translateY(-2px);box-shadow:0 16px 34px -8px rgba(0,0,0,0.55);}
.clx-whatsapp-icon{display:flex;}
.clx-whatsapp-label{font-size:14px;font-weight:600;}
@media (max-width:520px){ .clx-whatsapp-label{display:none;} .clx-whatsapp{padding:14px;} }

/* ===== HERO ===== */
.hero{
  position:relative;padding:168px 0 90px;overflow:hidden;
  background:
    radial-gradient(ellipse 900px 500px at 82% -5%, rgba(197,171,93,0.16), transparent 60%),
    linear-gradient(180deg, var(--ink-900) 0%, var(--ink-900) 100%);
}
.hero-grid{
  position:absolute;inset:0;z-index:0;opacity:0.5;
  background-image:radial-gradient(rgba(250,249,246,0.06) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(180deg, black, transparent 85%);
  -webkit-mask-image:linear-gradient(180deg, black, transparent 85%);
}
.hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.05fr 0.95fr;gap:40px;align-items:center;}
.hero-inner.hero-banner{display:block;max-width:720px;}
.hero-copy h1,.hero-inner h1{font-size:clamp(2.3rem, 4.4vw, 3.9rem);margin:22px 0 24px;}
.hero-copy h1 em,.hero-inner h1 em{
  font-style:normal;color:var(--gold);
  background:linear-gradient(180deg, transparent 62%, rgba(197,171,93,0.22) 62%);
}
.hero-copy p.lede,.hero-inner p.lede{
  font-size:clamp(16px,1.6vw,18.5px);color:var(--on-dark-muted);
  max-width:560px;font-weight:400;line-height:1.65;margin-bottom:34px;
}
.hero-ctas{display:flex;flex-wrap:wrap;align-items:center;gap:16px;margin-bottom:26px;}
.hero-note{font-size:13px;color:var(--on-dark-muted);display:flex;align-items:center;gap:8px;}
.hero-note svg{width:14px;height:14px;stroke:var(--gold);flex-shrink:0;}
.hero-visual{position:relative;height:420px;}
.hero-visual svg{width:100%;height:100%;overflow:visible;}

/* hero quick actions (contact) */
.quick-actions{display:flex;flex-wrap:wrap;gap:14px;}
.quick-chip{
  display:inline-flex;align-items:center;gap:10px;padding:13px 22px;border-radius:100px;
  border:1.5px solid rgba(250,249,246,0.22);font-size:14px;font-weight:600;transition:border-color .2s, background .2s;
}
.quick-chip:hover{border-color:var(--gold);background:rgba(197,171,93,0.08);}
.quick-chip svg{width:16px;height:16px;stroke:var(--gold);}

/* hero graph node text */
.clx-node-label{font-size:11.5px;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;fill:var(--on-dark-muted);}
.clx-node-label.gold{fill:var(--gold);}
.clx-node-big{font-size:20px;font-weight:800;fill:var(--on-dark);}
.clx-venn-label{font-size:12.5px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;fill:var(--on-dark-muted);}
.clx-venn-label.gold{fill:var(--gold);}
.clx-venn-center{font-size:15px;font-weight:800;fill:var(--on-dark);letter-spacing:0.06em;}
.clx-hub-label{font-size:11.5px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;fill:var(--on-dark-muted);}
.clx-hub-center{font-size:15px;font-weight:800;fill:var(--gold);letter-spacing:0.05em;}

/* ===== SECTION shared ===== */
section{padding:110px 0;}
.section-head{max-width:640px;margin-bottom:56px;}
.section-head h2{font-size:clamp(1.9rem,3.4vw,2.7rem);margin-top:18px;}
.section-head p{font-size:16.5px;margin-top:16px;line-height:1.65;}
.section-head.center{max-width:680px;margin-left:auto;margin-right:auto;text-align:center;}
.section-head.center .eyebrow{justify-content:center;}

/* ===== TICKER ===== */
.ticker{
  background:var(--ink-800);border-top:1px solid rgba(197,171,93,0.18);border-bottom:1px solid rgba(197,171,93,0.18);
  padding:18px 0;overflow:hidden;white-space:nowrap;position:relative;
}
.ticker-track{display:inline-flex;align-items:center;gap:14px;animation:clx-scroll-left 32s linear infinite;}
.ticker-track span{font-size:14.5px;font-weight:600;letter-spacing:0.04em;color:var(--on-dark);white-space:nowrap;}
.ticker-track span.dot{color:var(--gold);font-weight:400;}
@keyframes clx-scroll-left{from{transform:translateX(0);}to{transform:translateX(-50%);}}
@media (prefers-reduced-motion: reduce){ .ticker-track{animation:none;} }

/* ===== ABOUT (home, light) ===== */
.about{background:var(--paper);color:var(--on-light);}
.about .eyebrow{color:var(--ink-800);}
.about .eyebrow::before{background:var(--ink-800);}
.about .section-head p{color:var(--on-light-muted);}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;}
.about-copy p{font-size:17px;line-height:1.75;color:var(--on-light-muted);margin-bottom:18px;}
.pillars{display:flex;flex-direction:column;gap:28px;}
.pillar{display:flex;gap:18px;align-items:flex-start;}
.pillar-icon{
  width:48px;height:48px;border-radius:14px;background:var(--ink-900);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;color:var(--gold);
}
.pillar-icon svg{width:22px;height:22px;stroke:var(--gold);}
.pillar h4{font-size:17px;font-weight:700;margin-bottom:6px;}
.pillar p{font-size:14.5px;color:var(--on-light-muted);line-height:1.55;}

/* ===== SERVICES GRID (dark) ===== */
.services{background:var(--ink-900);}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(250,249,246,0.1);border:1px solid rgba(250,249,246,0.1);border-radius:20px;overflow:hidden;}
.service-card{background:var(--ink-900);padding:38px 32px;transition:background .3s ease;position:relative;}
.service-card:hover{background:var(--ink-700);}
.service-num{font-size:12px;font-weight:600;color:var(--on-dark-muted);letter-spacing:0.1em;}
.service-icon{width:42px;height:42px;margin:22px 0 20px;display:flex;align-items:center;justify-content:center;border:1px solid var(--gold-line);border-radius:12px;color:var(--gold);}
.service-icon svg{width:20px;height:20px;stroke:var(--gold);}
.service-card h3{font-size:19px;font-weight:700;margin-bottom:10px;}
.service-card p{font-size:14.5px;color:var(--on-dark-muted);line-height:1.6;}

/* ===== PROCESS (light, connected line) ===== */
.process{background:var(--paper);color:var(--on-light);}
.process .eyebrow{color:var(--ink-800);}
.process .eyebrow::before{background:var(--ink-800);}
.process .section-head p{color:var(--on-light-muted);}
.steps{position:relative;display:grid;gap:20px;grid-template-columns:repeat(var(--steps,5),1fr);}
/* Connector runs only between circle centres — never past the last step. */
.step:not(:last-child)::before{
  content:"";position:absolute;top:23px;left:23px;width:calc(100% + 20px);height:1px;
  background:repeating-linear-gradient(90deg, rgba(10,47,109,0.25) 0 8px, transparent 8px 16px);
  z-index:0;
}
.step{position:relative;z-index:1;}
.step-num{
  position:relative;z-index:1;
  width:46px;height:46px;border-radius:50%;background:var(--ink-900);color:var(--gold);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:15px;margin-bottom:22px;
}
.step h4{font-size:16px;font-weight:700;margin-bottom:8px;}
.step p{font-size:13.5px;color:var(--on-light-muted);line-height:1.55;}

/* ===== MINI PROCESS (light, compact) ===== */
.mini-process{background:var(--paper);color:var(--on-light);}
.mini-process .eyebrow{color:var(--ink-800);}
.mini-process .eyebrow::before{background:var(--ink-800);}
.mini-process-head{margin-bottom:48px;}
.mini-process-head p{font-size:15px;color:var(--on-light-muted);margin-top:14px;max-width:480px;}
.mini-steps{position:relative;display:grid;gap:16px;grid-template-columns:repeat(var(--steps,5),1fr);}
.mini-step:not(:last-child)::before{
  content:"";position:absolute;top:22px;left:22px;width:calc(100% + 16px);height:1px;
  background:repeating-linear-gradient(90deg, rgba(10,47,109,0.25) 0 8px, transparent 8px 16px);
  z-index:0;
}
.mini-step{position:relative;z-index:1;}
.mini-step-num{
  position:relative;z-index:1;
  width:44px;height:44px;border-radius:50%;background:var(--ink-900);color:var(--gold);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;margin-bottom:16px;
}
.mini-step span{font-size:14.5px;font-weight:600;display:block;}
.mini-step small{font-size:13px;color:var(--on-light-muted);line-height:1.5;display:block;margin-top:6px;}

/* ===== WORK (dark) ===== */
.work{background:var(--ink-900);}
.work-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.work-card{
  border:1px solid rgba(250,249,246,0.12);border-radius:18px;padding:34px 30px;
  display:flex;flex-direction:column;gap:18px;transition:border-color .3s, transform .3s;
}
.work-card:hover{border-color:var(--gold-line);transform:translateY(-4px);}
.work-tag{font-size:12px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;color:var(--gold);}
.work-card h3{font-size:20px;font-weight:700;}
.work-card p{font-size:14.5px;color:var(--on-dark-muted);line-height:1.6;flex-grow:1;}
.work-metric{display:flex;align-items:center;gap:10px;padding-top:16px;border-top:1px solid rgba(250,249,246,0.1);font-size:13.5px;font-weight:600;color:var(--on-dark);}
.work-metric svg{width:15px;height:15px;stroke:var(--gold);}
.work-note{margin-top:34px;font-size:13.5px;color:var(--on-dark-muted);}
.work-note a{color:var(--gold);text-decoration:underline;}

/* Logo grid (Portfolio / clients) */
.logo-grid{background:var(--ink-900);}
.lg-row{display:grid;grid-template-columns:repeat(var(--logo-cols,4),1fr);gap:20px;}
.lg-box{
  aspect-ratio:3/2;display:flex;align-items:center;justify-content:center;padding:18px;
  border:1.5px dashed var(--gold-line);border-radius:14px;background:rgba(250,249,246,0.03);
  transition:border-color .3s, background .3s, transform .3s;
}
.lg-box:hover{border-color:var(--gold);background:rgba(250,249,246,0.05);transform:translateY(-3px);}
.lg-box span{font-size:12px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--on-dark-muted);text-align:center;}
.lg-box.has-logo{border-style:solid;border-color:rgba(250,249,246,0.12);background:rgba(250,249,246,0.06);}
.lg-box.has-logo img{max-height:100%;max-width:100%;object-fit:contain;}
.lg-note{margin-top:34px;text-align:center;font-size:13.5px;color:var(--on-dark-muted);}
.lg-note a{color:var(--gold);text-decoration:underline;}
@media(max-width:900px){.lg-row{grid-template-columns:repeat(3,1fr);}}
@media(max-width:560px){.lg-row{grid-template-columns:repeat(2,1fr);}}

/* ===== ORIGIN (about, light) ===== */
.origin{background:var(--paper);color:var(--on-light);}
.origin .eyebrow{color:var(--ink-800);}
.origin .eyebrow::before{background:var(--ink-800);}
.origin-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:64px;align-items:start;}
.origin-copy p{font-size:17px;line-height:1.8;color:var(--on-light-muted);margin-bottom:20px;}
.origin-copy p:last-child{margin-bottom:0;}
.origin-marks{display:flex;flex-direction:column;gap:26px;}
.origin-mark{padding-left:22px;border-left:2px solid var(--gold);}
.origin-mark b{display:block;font-size:15px;font-weight:700;margin-bottom:6px;color:var(--on-light);}
.origin-mark span{font-size:14px;color:var(--on-light-muted);line-height:1.55;}

/* ===== QUOTE BAND (dark) ===== */
.quote-band{
  background:linear-gradient(135deg, var(--ink-800), var(--ink-900) 75%);
  padding:90px 0;position:relative;overflow:hidden;
}
.quote-band::before{
  content:"";position:absolute;width:520px;height:520px;border-radius:50%;
  background:radial-gradient(circle, rgba(197,171,93,0.16), transparent 70%);
  bottom:-260px;left:-140px;
}
.quote-band .wrap{position:relative;z-index:1;}
.quote-mark{font-family:Georgia,serif;font-size:64px;color:var(--gold);line-height:1;margin-bottom:8px;}
.quote-band h2{font-size:clamp(1.7rem,3.4vw,2.5rem);max-width:820px;font-weight:700;line-height:1.35;}
.quote-band cite{display:block;margin-top:26px;font-style:normal;font-size:14px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--on-dark-muted);}

/* ===== JOURNEY TIMELINE (light) ===== */
.journey{background:var(--paper);color:var(--on-light);}
.journey .eyebrow{color:var(--ink-800);}
.journey .eyebrow::before{background:var(--ink-800);}
.journey .section-head p{color:var(--on-light-muted);}
.timeline{position:relative;}
.timeline::before{
  content:"";position:absolute;top:0;bottom:0;left:50%;width:2px;
  background:repeating-linear-gradient(180deg, rgba(10,47,109,0.22) 0 8px, transparent 8px 16px);
  transform:translateX(-50%);
}
.tl-row{position:relative;display:grid;grid-template-columns:1fr 60px 1fr;gap:0;margin-bottom:52px;}
.tl-row:last-child{margin-bottom:0;}
.tl-node{
  grid-column:2;justify-self:center;align-self:start;margin-top:4px;z-index:2;
  width:44px;height:44px;border-radius:50%;background:var(--ink-900);color:var(--gold);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;
  border:3px solid var(--paper);box-shadow:0 0 0 2px rgba(10,47,109,0.15);
}
.tl-card{grid-column:1;padding-right:44px;text-align:right;}
.tl-row.right .tl-card{grid-column:3;padding-right:0;padding-left:44px;text-align:left;}
.tl-tag{font-size:12px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:var(--gold);margin-bottom:8px;}
.tl-card h4{font-size:18px;font-weight:700;margin-bottom:10px;}
.tl-card p{font-size:14.5px;color:var(--on-light-muted);line-height:1.65;}

/* ===== MISSION / VISION ===== */
.mv{background:var(--ink-900);}
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
.mv-card{
  border:1px solid rgba(250,249,246,0.12);border-radius:20px;padding:40px 36px;
  background:linear-gradient(160deg, rgba(197,171,93,0.06), transparent 60%);
}
.mv-card .eyebrow{margin-bottom:16px;}
.mv-card h3{font-size:22px;font-weight:700;margin-bottom:14px;}
.mv-card p{font-size:15px;color:var(--on-dark-muted);line-height:1.7;margin-bottom:22px;}
.mv-tags{display:flex;flex-wrap:wrap;gap:10px;}
.mv-tags span{font-size:12.5px;font-weight:600;padding:7px 14px;border-radius:100px;border:1px solid var(--gold-line);color:var(--gold);}

/* ===== VALUES (dark) ===== */
.values{background:var(--ink-900);}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(250,249,246,0.1);border:1px solid rgba(250,249,246,0.1);border-radius:20px;overflow:hidden;}
.value-card{background:var(--ink-900);padding:38px 32px;transition:background .3s ease;}
.value-card:hover{background:var(--ink-700);}
.value-num{font-size:12px;font-weight:600;color:var(--gold);letter-spacing:0.1em;}
.value-card h3{font-size:18.5px;font-weight:700;margin:16px 0 10px;}
.value-card p{font-size:14.5px;color:var(--on-dark-muted);line-height:1.6;}

/* ===== APPROACH (light) ===== */
.approach{background:var(--paper);color:var(--on-light);}
.approach .eyebrow{color:var(--ink-800);}
.approach .eyebrow::before{background:var(--ink-800);}
.approach .section-head p{color:var(--on-light-muted);}
.approach-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:36px;}
.approach-card{border:1px solid rgba(10,47,109,0.14);border-radius:18px;padding:34px 30px;background:#fff;}
.approach-icon{width:46px;height:46px;border-radius:13px;background:var(--ink-900);display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--gold);}
.approach-icon svg{width:21px;height:21px;stroke:var(--gold);}
.approach-card h4{font-size:17px;font-weight:700;margin-bottom:10px;}
.approach-card p{font-size:14.5px;color:var(--on-light-muted);line-height:1.6;}

/* ===== DIFFERENTIATOR STRIP ===== */
.diff-strip{
  background:var(--ink-800);border-top:1px solid rgba(197,171,93,0.18);border-bottom:1px solid rgba(197,171,93,0.18);
  padding:34px 0;
}
.diff-strip .wrap{display:flex;flex-wrap:wrap;gap:14px 42px;justify-content:space-between;align-items:center;}
.diff-item{display:flex;align-items:center;gap:10px;font-size:14.5px;font-weight:500;color:var(--on-dark);}
.diff-item svg{width:17px;height:17px;stroke:var(--gold);flex-shrink:0;}

/* ===== INTRO + CALLOUT (services, light) ===== */
.intro{background:var(--paper);color:var(--on-light);}
.intro .eyebrow{color:var(--ink-800);}
.intro .eyebrow::before{background:var(--ink-800);}
.intro-top p{font-size:17px;line-height:1.75;color:var(--on-light-muted);max-width:760px;margin-top:20px;}
.callout{
  margin-top:56px;display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;
  background:#fff;border:1px solid rgba(10,47,109,0.12);border-radius:22px;padding:44px;
}
.callout-copy .eyebrow{margin-bottom:14px;}
.callout-copy h3{font-size:24px;font-weight:700;margin-bottom:14px;}
.callout-copy p{font-size:15px;color:var(--on-light-muted);line-height:1.7;margin-bottom:22px;}
.callout-visual{
  height:230px;
  overflow:hidden; 
  max-width:100%;
}
.callout-visual svg{
  width:100%;
  height:100%;
  overflow:visible;  
  display:block;
}
.mini-node-label{font-size:10.5px;font-weight:600;letter-spacing:0.05em;text-transform:uppercase;fill:var(--on-light-muted);}
.mini-node-label.gold{fill:var(--gold);}

/* ===== SERVICES DETAIL (dark rows) ===== */
.svc-list{background:var(--ink-900);}
.svc-row{
  display:grid;grid-template-columns:90px 1fr 300px;gap:44px;
  padding:52px 0;border-bottom:1px solid rgba(250,249,246,0.1);
}
.svc-row:first-of-type{border-top:1px solid rgba(250,249,246,0.1);}
.svc-row-num{font-size:52px;font-weight:800;color:transparent;-webkit-text-stroke:1.4px rgba(197,171,93,0.55);line-height:1;}
.svc-row-main h3{font-size:24px;font-weight:700;margin-bottom:14px;}
.svc-row-main p{font-size:15.5px;color:var(--on-dark-muted);line-height:1.7;max-width:480px;}
.svc-row-side ul{display:flex;flex-direction:column;gap:12px;margin-bottom:20px;}
.svc-row-side li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:var(--on-dark);}
.svc-row-side li svg{width:15px;height:15px;stroke:var(--gold);flex-shrink:0;margin-top:2px;}
.svc-best{font-size:12.5px;color:var(--on-dark-muted);border-top:1px solid rgba(250,249,246,0.1);padding-top:14px;}
.svc-best b{color:var(--gold);font-weight:600;}

/* ===== FIT (dark) ===== */
.fit{background:var(--ink-900);}
.fit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.fit-card{border:1px solid rgba(250,249,246,0.12);border-radius:18px;padding:34px 30px;transition:border-color .3s, transform .3s;}
.fit-card:hover{border-color:var(--gold-line);transform:translateY(-4px);}
.fit-icon{width:46px;height:46px;border-radius:13px;border:1px solid var(--gold-line);display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--gold);}
.fit-icon svg{width:21px;height:21px;stroke:var(--gold);}
.fit-card h4{font-size:18px;font-weight:700;margin-bottom:12px;}
.fit-card p{font-size:14.5px;color:var(--on-dark-muted);line-height:1.65;}

/* ===== FAQ (light) ===== */
.faq{background:var(--paper);color:var(--on-light);}
.faq .eyebrow{color:var(--ink-800);}
.faq .eyebrow::before{background:var(--ink-800);}
.faq-list{max-width:820px;}
.faq-item{border-bottom:1px solid rgba(10,47,109,0.14);}
.faq-item summary{
  list-style:none;cursor:pointer;padding:26px 0;display:flex;justify-content:space-between;align-items:center;
  font-size:16.5px;font-weight:600;gap:20px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .plus{
  width:26px;height:26px;border-radius:50%;border:1.5px solid var(--ink-800);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;position:relative;transition:transform .3s;
}
.faq-item summary .plus::before,.faq-item summary .plus::after{content:"";position:absolute;background:var(--ink-800);}
.faq-item summary .plus::before{width:11px;height:1.6px;}
.faq-item summary .plus::after{width:1.6px;height:11px;transition:opacity .2s;}
.faq-item[open] summary .plus::after{opacity:0;}
.faq-item[open] summary .plus{transform:rotate(180deg);}
.faq-item p{font-size:15px;color:var(--on-light-muted);line-height:1.7;padding-bottom:26px;max-width:680px;}

/* ===== CONTACT MAIN (light) ===== */
.contact-main{background:var(--paper);color:var(--on-light);padding-top:90px;}
.contact-grid{display:grid;grid-template-columns:1.3fr 0.9fr;gap:48px;align-items:start;}
.form-card{background:#fff;border:1px solid rgba(10,47,109,0.12);border-radius:22px;padding:44px;}
.form-card h3{font-size:22px;font-weight:700;margin-bottom:8px;}
.form-card .sub{font-size:14.5px;color:var(--on-light-muted);margin-bottom:32px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.form-group{margin-bottom:20px;display:flex;flex-direction:column;gap:8px;}
.form-group label{font-size:13px;font-weight:600;color:var(--on-light);}
.form-group .req{color:var(--gold);}
.form-group input,.form-group select,.form-group textarea{
  font-family:'Poppins',sans-serif;font-size:14.5px;padding:13px 16px;border-radius:10px;
  border:1.5px solid rgba(10,47,109,0.16);background:var(--paper);color:var(--on-light);
  transition:border-color .2s;width:100%;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--gold);}
.form-group textarea{resize:vertical;min-height:120px;}
.clx-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;}
.clx-form-error{color:#b3261e;font-size:13.5px;margin-top:14px;}
.form-success{
  margin-top:18px;padding:16px 20px;border-radius:12px;
  background:rgba(197,171,93,0.12);border:1px solid var(--gold-line);
  font-size:14px;color:var(--ink-800);font-weight:500;display:flex;align-items:center;gap:10px;
}
.form-success[hidden],.clx-form-error[hidden]{display:none !important;}
.form-success svg{width:18px;height:18px;stroke:var(--gold);flex-shrink:0;}
.form-note{font-size:12.5px;color:var(--on-light-muted);margin-top:16px;line-height:1.6;}
.form-note a{text-decoration:underline;}

/* ===== CONTACT SIDEBAR ===== */
.sidebar{display:flex;flex-direction:column;gap:20px;}
.side-card{background:var(--ink-900);color:var(--on-dark);border-radius:20px;padding:30px 28px;}
.side-card h4{font-size:12.5px;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:var(--gold);margin-bottom:22px;}
.contact-line{display:flex;align-items:center;gap:14px;margin-bottom:18px;}
.contact-line:last-child{margin-bottom:0;}
.contact-line .ic{width:38px;height:38px;border-radius:10px;background:rgba(250,249,246,0.08);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--gold);}
.contact-line svg{width:16px;height:16px;stroke:var(--gold);}
.contact-line a,.contact-line .ct-val{font-size:14.5px;font-weight:600;display:block;}
.contact-line small{display:block;font-size:12px;color:var(--on-dark-muted);font-weight:400;margin-top:1px;}
.hours-row{display:flex;justify-content:space-between;font-size:13.5px;margin-bottom:12px;color:var(--on-dark-muted);}
.hours-row:last-child{margin-bottom:0;}
.hours-row b{color:var(--on-dark);font-weight:600;}
.next-step{display:flex;gap:14px;margin-bottom:18px;}
.next-step:last-child{margin-bottom:0;}
.next-num{width:26px;height:26px;border-radius:50%;background:rgba(197,171,93,0.14);color:var(--gold);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;flex-shrink:0;}
.next-step p{font-size:13.5px;line-height:1.55;color:var(--on-dark-muted);}
.next-step b{color:var(--on-dark);font-weight:600;display:block;margin-bottom:2px;font-size:14px;}

/* ===== FINAL CTA ===== */
.cta-final{
  background:linear-gradient(135deg, var(--ink-800), var(--ink-900) 70%);
  padding:100px 0;position:relative;overflow:hidden;
}
.cta-final::before{
  content:"";position:absolute;width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle, rgba(197,171,93,0.18), transparent 70%);
  top:-260px;right:-160px;
}
.cta-inner{position:relative;z-index:1;max-width:680px;}
.cta-final h2{font-size:clamp(2rem,4vw,3rem);margin-bottom:20px;}
.cta-final h2 .grad{color:var(--gold);}
.cta-final p{font-size:17px;color:var(--on-dark-muted);margin-bottom:38px;max-width:520px;line-height:1.65;}
.cta-row{display:flex;flex-wrap:wrap;gap:20px;align-items:center;}

/* ===== FOOTER ===== */
.site-footer{background:#081a38;padding:70px 0 30px;}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:40px;padding-bottom:50px;border-bottom:1px solid rgba(250,249,246,0.08);}
.footer-brand .logo{margin-bottom:16px;}
.footer-logo-img{max-height:34px;width:auto;}
.footer-brand p{font-size:14px;color:var(--on-dark-muted);max-width:280px;line-height:1.6;margin-bottom:22px;}
.social-row{display:flex;gap:12px;}
.social-row a{
  width:36px;height:36px;border-radius:50%;border:1px solid rgba(250,249,246,0.18);
  display:flex;align-items:center;justify-content:center;transition:border-color .2s,background .2s;color:var(--on-dark);
}
.social-row a:hover{border-color:var(--gold);background:var(--gold-soft);}
.social-row svg{width:15px;height:15px;}
.social-row .social-text{font-size:11px;}
.fcol h5{font-size:13px;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:var(--gold);margin-bottom:20px;}
.fcol a,.fcol span{display:block;font-size:14.5px;color:var(--on-dark-muted);margin-bottom:13px;transition:color .2s;}
.fcol a:hover{color:var(--on-dark);}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:26px;font-size:13px;color:var(--on-dark-muted);flex-wrap:wrap;gap:12px;}

/* ===== icon helpers ===== */
.clx-icon-svg{display:inline-flex;align-items:center;justify-content:center;line-height:0;}
.clx-icon-img{width:22px;height:22px;object-fit:contain;}

/* ===== reveal animation ===== */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s ease, transform .7s ease;transition-delay:var(--reveal-delay,0ms);}
.reveal.in{opacity:1;transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .reveal{opacity:1;transform:none;transition:none;}
  .clx-node,.clx-venn circle,.hero-visual svg *{animation:none !important;}
}

/* ===== RESPONSIVE ===== */
@media (max-width:980px){
  section{padding:84px 0;}
  .section-head{margin-bottom:40px;}
  .hero-inner{grid-template-columns:1fr;gap:8px;}
  .hero-visual{height:280px;order:0;margin-top:26px;}
  .about-grid{grid-template-columns:1fr;gap:40px;}
  .origin-grid{grid-template-columns:1fr;gap:40px;}
  .services-grid{grid-template-columns:1fr 1fr;}
  .values-grid{grid-template-columns:1fr 1fr;}
  .approach-grid{grid-template-columns:1fr;}
  .mv-grid{grid-template-columns:1fr;}
  .work-grid{grid-template-columns:1fr;}
  .fit-grid{grid-template-columns:1fr;}
  .callout{grid-template-columns:1fr;}
  .svc-row{grid-template-columns:60px 1fr;}
  .svc-row-side{grid-column:1/-1;}
  .steps{grid-template-columns:1fr 1fr;row-gap:36px;}
  .step:not(:last-child)::before{display:none;}
  .mini-steps{grid-template-columns:1fr 1fr;row-gap:30px;}
  .mini-step:not(:last-child)::before{display:none;}
  .contact-grid{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;row-gap:36px;}
}
@media (max-width:760px){
  .timeline::before{left:20px;}
  .tl-row,.tl-row.right{grid-template-columns:44px 1fr;margin-bottom:36px;}
  .tl-row>div:empty{display:none;}
  .tl-node{grid-column:1;margin-top:4px;}
  .tl-card,.tl-row.right .tl-card{grid-column:2;text-align:left;padding-left:24px;padding-right:0;}
}
@media (max-width:760px){
  .timeline{
    padding-left:8px;
  }
  .timeline::before{
    left:29px;
    transform:none;
  }
  .tl-row,
  .tl-row.right{
    grid-template-columns:44px 1fr;
    column-gap:20px;
    margin-bottom:40px;
    align-items:start;
  }
  .tl-row>div:empty{
    display:none;
  }
  .tl-node{
    grid-column:1;
    grid-row:1;
    margin-top:0;
  }
  .tl-card,
  .tl-row.right .tl-card{
    grid-column:2;
    grid-row:1;
    text-align:left;
    padding-left:0;
    padding-right:0;
  }
  .tl-card h4,
  .tl-card p{
    overflow-wrap:break-word;
    word-break:break-word;
    max-width:100%;
  }
  .tl-tag{
    font-size:11px;
  }
}
@media (max-width:640px){
  .nav-links{display:none;}
  .callout.reveal.in {
    DISPLAY: BLOCK;
}
  .nav-cta .btn{display:none;}
  .burger{display:block;}
  .callout-visual{height:190px;}
  section{padding:64px 0;}
  .section-head{margin-bottom:34px;}
  .hero{padding:120px 0 56px;}
  .hero-visual{height:240px;}
  .services-grid{grid-template-columns:1fr;}
  .values-grid{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .mini-steps{grid-template-columns:1fr;}
  .svc-row{grid-template-columns:1fr;gap:22px;padding:38px 0;}
  .svc-row-num{font-size:38px;}
  .diff-strip .wrap{flex-direction:column;align-items:flex-start;}
  .cta-row{flex-direction:column;align-items:stretch;}
  .cta-row .btn{width:100%;}
  .hero-ctas{gap:12px;}
  .hero-ctas .btn{width:100%;}
  .quote-band{padding:64px 0;}
  .quote-band h2{font-size:1.5rem;}
  .cta-final{padding:72px 0;}
  .callout{padding:30px 24px;gap:30px;}
  .mv-card{padding:30px 26px;}
  .work-card,.fit-card,.approach-card,.service-card,.value-card{padding:28px 24px;}
  .side-card{padding:26px 22px;}
  .footer-top{grid-template-columns:1fr;}
  .footer-bottom{justify-content:flex-start;}
  .form-card{padding:30px 24px;}
  .form-row{grid-template-columns:1fr;}
}
@media (max-width:420px){
  .hero-visual{height:200px;}
  .hero-note{align-items:flex-start;}
  .quick-actions{width:100%;}
  .quick-chip{flex:1 1 100%;justify-content:center;}
  .logo{font-size:19px;}
  .quote-mark{font-size:52px;}
}
