/* ==========================================================================
   theipdefender — Design System & Component Library
   Brand protection & digital growth. Black-and-gold, editorial, premium.
   No frameworks. This file is shared across every page.
   ========================================================================== */

:root{
  --gold:#C3A05C; --gold-light:#D8BE86; --gold-dark:#A6863F;
  --ink:#0E0E0E; --ink-soft:#1C1C1C; --charcoal:#2A2A2A;
  --gray:#6B6B6B; --line:#E6E2D9;
  --cream:#FAF8F3; --cream-2:#F3EFE6; --white:#FFFFFF;
  --radius:16px; --radius-lg:24px; --shadow:0 20px 50px rgba(14,14,14,.08);
  --shadow-gold:0 12px 40px rgba(195,160,92,.25);
  --container:1200px;

  --font-head:'Poppins', sans-serif;
  --font-body:'Inter', sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  color:var(--charcoal);
  background:var(--cream);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  overflow-wrap:break-word;
  word-wrap:break-word;
}
img{ max-width:100%; display:block; height:auto; }
table{ max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul,ol{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; }
input,textarea,select{ font-family:inherit; font-size:1rem; }
svg{ display:block; }

::selection{ background:var(--gold); color:var(--ink); }

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:2px; }

/* ---------- Visually hidden (a11y) ---------- */
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- Skip link (a11y) ---------- */
.skip-link{
  position:absolute; left:-999px; top:0;
  background:var(--ink); color:var(--white);
  padding:14px 22px; z-index:3000; border-radius:0 0 8px 0;
  font-weight:600; font-size:.9rem;
}
.skip-link:focus{ left:0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6{
  font-family:var(--font-head);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-.01em;
  color:var(--ink);
  margin:0 0 .5em;
}
h5,h6{ font-weight:600; }
h1{ font-size:clamp(2.6rem, 4.4vw, 4.2rem); }
h2{ font-size:clamp(2rem, 3.4vw, 2.85rem); }
h3{ font-size:clamp(1.35rem, 2vw, 1.65rem); }
h4{ font-size:1.15rem; }

p{ margin:0 0 1.1em; color:var(--gray); }
p:last-child{ margin-bottom:0; }

.lead{ font-size:1.2rem; color:var(--charcoal); line-height:1.6; }

strong,b{ color:var(--ink); font-weight:600; }

.gold{ color:var(--gold); }
.text-center{ text-align:center; }
.text-white{ color:var(--white) !important; }
.muted{ color:var(--gray); }

/* ---------- Dark-background text safety net ----------
   `strong`/`b` default to var(--ink) for light sections, which is
   invisible (near-black on near-black) inside any dark-background
   component. Every dark surface gets its own override so bold text,
   plain inline links, and lead copy are always light-on-dark. */
.section-dark strong,.section-dark b,
.card-dark strong,.card-dark b,
.philosophy-circle--protect strong,.philosophy-circle--protect b,
.pricing-card--featured strong,.pricing-card--featured b,
.coverage-banner strong,.coverage-banner b,
.nav-mobile strong,.nav-mobile b,
.site-footer strong,.site-footer b{ color:var(--white); }

.section-dark .lead{ color:rgba(255,255,255,.72); }
.card-dark .lead{ color:rgba(255,255,255,.72); }

.section-dark a:not([class]),.card-dark a:not([class]){ color:var(--gold-light); text-decoration:underline; }
.section-dark a:not([class]):hover,.card-dark a:not([class]):hover{ color:var(--white); }

/* ---------- Logo ---------- */
.logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:1.5rem;
  text-transform:lowercase;
  letter-spacing:-.02em;
  color:var(--ink);
  white-space:nowrap;
}
.logo .gold{ color:var(--gold); }
.logo-mark{
  width:46px; height:46px; object-fit:contain; flex-shrink:0;
  filter:drop-shadow(0 0 7px rgba(195,160,92,.4));
  transition:transform .5s cubic-bezier(.16,1,.3,1), width .3s ease, height .3s ease;
  animation:logoMarkIn .45s cubic-bezier(.16,1,.3,1) both;
}
.logo:hover .logo-mark{ transform:rotate(-8deg) scale(1.06); }
.site-header.is-scrolled .logo-mark{ width:38px; height:38px; }
@keyframes logoMarkIn{ from{ opacity:0; transform:scale(.8); } to{ opacity:1; transform:scale(1); } }
@media (prefers-reduced-motion:reduce){
  .logo-mark{ animation:none; }
  .logo:hover .logo-mark{ transform:none; }
}

/* ---------- Layout ---------- */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}
.section{ padding:110px 0; }
.section-sm{ padding:64px 0; }
.section-tight{ padding-top:0; }
.section-dark{ background:var(--ink); color:rgba(255,255,255,.72); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4{ color:var(--white); }
.section-dark p{ color:rgba(255,255,255,.62); }
.section-cream2{ background:var(--cream-2); }
.section-white{ background:var(--white); }

.section-head{ max-width:680px; margin:0 0 56px; }
.section-head.text-center{ margin-left:auto; margin-right:auto; }

hr.divider{ border:none; border-top:1px solid var(--line); margin:0; }
.section-dark hr.divider{ border-top-color:rgba(255,255,255,.1); }

/* ---------- Eyebrow ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  text-transform:uppercase; letter-spacing:.16em;
  font-size:.75rem; font-weight:600;
  color:var(--gold-dark);
  margin-bottom:18px;
}
.section-dark .eyebrow{ color:var(--gold-light); }
.eyebrow::before{
  content:''; width:26px; height:2px; background:var(--gold); display:inline-block; flex-shrink:0;
}

/* ---------- Buttons ---------- */
.btn-primary,.btn-ghost,.btn-dark{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:17px 34px;
  border-radius:999px;
  font-family:var(--font-head);
  font-weight:600; font-size:.94rem;
  cursor:pointer; border:1.5px solid transparent;
  overflow:hidden; isolation:isolate;
  transition:transform .28s ease, box-shadow .28s ease, color .28s ease, border-color .28s ease;
  white-space:nowrap;
}
.btn-primary span,.btn-ghost span,.btn-dark span{ position:relative; z-index:2; }
.btn-primary::after,.btn-ghost::after,.btn-dark::after{
  content:''; position:absolute; inset:0; z-index:1;
  transform:scaleX(0); transform-origin:left;
  transition:transform .4s cubic-bezier(.65,0,.35,1);
}
.btn-primary:hover,.btn-ghost:hover,.btn-dark:hover{
  transform:translateY(-3px);
}

.btn-primary{ background:var(--gold); color:var(--ink); }
.btn-primary::after{ background:var(--gold-dark); }
.btn-primary:hover{ box-shadow:0 16px 34px rgba(195,160,92,.38); }
.btn-primary:hover::after{ transform:scaleX(1); }

/* Sheen sweep — sits above the ::after fill swap (z-index 1), below the label span (z-index 2, tie broken by tree order) */
.btn-primary::before{
  content:''; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:linear-gradient(115deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
  transform:translateX(-120%) skewX(-15deg);
  transition:transform .7s cubic-bezier(.16,1,.3,1);
}
.btn-primary:hover::before{ transform:translateX(120%) skewX(-15deg); }
@media (prefers-reduced-motion:reduce){
  .btn-primary::before{ display:none; }
}

.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-ghost::after{ background:var(--ink); }
.btn-ghost:hover{ color:var(--white); box-shadow:0 16px 34px rgba(14,14,14,.16); }
.btn-ghost:hover::after{ transform:scaleX(1); }
.section-dark .btn-ghost{ color:var(--white); border-color:rgba(255,255,255,.4); }
.section-dark .btn-ghost::after{ background:var(--white); }
.section-dark .btn-ghost:hover{ color:var(--ink); }

.btn-dark{ background:var(--ink); color:var(--gold); }
.btn-dark::after{ background:var(--gold); }
.btn-dark:hover{ color:var(--ink); box-shadow:0 16px 34px rgba(14,14,14,.28); }
.btn-dark:hover::after{ transform:scaleX(1); }

.btn-sm{ padding:12px 24px; font-size:.85rem; }
.btn-block{ width:100%; }

/* ---------- Pill ---------- */
.pill{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--cream-2); border:1px solid var(--line);
  padding:9px 18px; border-radius:999px;
  font-size:.85rem; font-weight:500; color:var(--charcoal);
}
.section-dark .pill{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.14); color:rgba(255,255,255,.8); }

/* ---------- Badge (trust) ---------- */
.badge-trust{
  display:inline-flex; align-items:center; gap:10px;
  padding:11px 20px; background:var(--white);
  border:1px solid var(--line); border-radius:999px;
  font-size:.82rem; font-weight:600; color:var(--charcoal);
  box-shadow:0 8px 20px rgba(14,14,14,.04);
}
.badge-trust svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; }

/* ---------- Cards ---------- */
.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:38px;
  box-shadow:var(--shadow);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover{
  transform:translateY(-8px);
  border-color:var(--gold);
  box-shadow:0 30px 60px rgba(195,160,92,.2);
}
.card-icon{
  width:52px; height:52px; border-radius:12px;
  background:var(--cream-2); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px; flex-shrink:0;
}
.card-icon svg{ width:26px; height:26px; }
.card h3{ margin-bottom:12px; }
.card p{ margin-bottom:0; }

.card-dark{
  background:var(--ink-soft);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:38px;
  color:rgba(255,255,255,.7);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card-dark:hover{
  transform:translateY(-8px);
  border-color:var(--gold);
  box-shadow:0 30px 60px rgba(195,160,92,.22);
}
.card-dark h3,.card-dark h4{ color:var(--white); }
.card-dark p{ color:rgba(255,255,255,.62); }
.card-dark .card-icon{ background:rgba(195,160,92,.12); }

/* ---------- Stats ---------- */
.stat{ text-align:left; }
.stat .stat-number{
  font-family:var(--font-head); font-weight:700;
  font-size:clamp(2.4rem, 4.2vw, 3.4rem);
  color:var(--gold); line-height:1; display:inline-flex; align-items:baseline;
}
.stat .stat-label{
  margin-top:10px; font-size:.88rem; color:var(--gray);
  text-transform:uppercase; letter-spacing:.09em; font-weight:500;
}
.section-dark .stat .stat-label{ color:rgba(255,255,255,.55); }

/* ---------- Grids ---------- */
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:36px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }

/* ---------- Hero (shared pattern) ---------- */
.hero{ padding:168px 0 96px; }
.hero.section-sm{ padding-top:150px; }
.hero-content{ max-width:720px; }
.hero .lead{ max-width:560px; margin-bottom:36px; }
.hero-cta{ display:flex; gap:18px; flex-wrap:wrap; align-items:center; margin-top:8px; }
.hero-trust{ display:flex; gap:14px; flex-wrap:wrap; margin-top:44px; }

/* ---------- Logo strip ---------- */
/* Static fallback — used as-is if JS doesn't run or prefers-reduced-motion is set. */
.logo-strip{
  display:flex; align-items:center; justify-content:center;
  gap:56px; flex-wrap:wrap;
}
.logo-strip img{ height:26px; width:auto; opacity:.55; filter:grayscale(1); transition:opacity .25s; }
.logo-strip img:hover{ opacity:.9; }

/* Marquee enhancement — main.js moves the strip's children into a
   .logo-marquee-track it creates, duplicates them once for a seamless loop,
   then adds .is-marquee. Without JS, the static rules above still apply. */
.logo-strip.is-marquee{
  justify-content:flex-start; flex-wrap:nowrap; overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-marquee-track{
  display:flex; align-items:center; gap:56px; width:max-content; flex-shrink:0;
  animation:logoMarquee 26s linear infinite;
}
.logo-strip.is-marquee:hover .logo-marquee-track{ animation-play-state:paused; }
@keyframes logoMarquee{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){
  .logo-marquee-track{ animation:none; }
}

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--line); padding:26px 0; }
.section-dark .faq-item{ border-bottom-color:rgba(255,255,255,.1); }
.faq-question{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  cursor:pointer; font-family:var(--font-head); font-weight:600;
  font-size:1.05rem; color:var(--ink); background:none; border:none;
  width:100%; min-height:44px; text-align:left; padding:8px 0;
}
.section-dark .faq-question{ color:var(--white); }
.faq-question .icon{
  flex-shrink:0; width:28px; height:28px; border-radius:50%;
  border:1.5px solid var(--gold); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  transition:transform .35s ease, background .25s ease, color .25s ease;
  position:relative;
}
.faq-question .icon::before,.faq-question .icon::after{
  content:''; position:absolute; background:currentColor;
}
.faq-question .icon::before{ width:10px; height:1.5px; }
.faq-question .icon::after{ width:1.5px; height:10px; transition:transform .3s ease; }
.faq-item.is-open .faq-question .icon::after{ transform:scaleY(0); }
.faq-item.is-open .faq-question .icon{ background:var(--gold); color:var(--ink); }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-answer p{ padding-top:16px; margin:0; max-width:680px; }
.faq-item.is-open .faq-answer{ max-height:600px; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:1000;
  background:rgba(250,248,243,.92);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled{
  border-bottom-color:var(--line);
  box-shadow:0 10px 30px rgba(14,14,14,.06);
  background:rgba(250,248,243,.98);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:28px 24px; transition:padding .3s ease;
}
.site-header.is-scrolled .header-inner{ padding:15px 24px; }

.nav-desktop ul{ display:flex; align-items:center; gap:38px; }
.nav-desktop a{
  position:relative; padding:6px 0;
  font-size:.92rem; font-weight:500; color:var(--charcoal);
  transition:color .2s ease;
}
.nav-desktop a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--gold); transition:width .3s ease;
}
.nav-desktop a:hover{ color:var(--ink); }
.nav-desktop a:hover::after,.nav-desktop a.active::after{ width:100%; }
.nav-desktop a.active{ color:var(--ink); font-weight:600; }

.header-actions{ display:flex; align-items:center; gap:20px; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:6px;
  width:44px; height:44px; background:none; border:none; cursor:pointer;
  z-index:1400; position:relative;
}
.nav-toggle span{
  display:block; width:100%; height:2px; background:var(--ink);
  transition:transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-active span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

.nav-mobile{
  position:fixed; inset:0; z-index:1300;
  background:var(--ink);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  transform:translateY(-100%);
  transition:transform .5s cubic-bezier(.65,0,.35,1);
}
.nav-mobile.is-open{ transform:translateY(0); }
.nav-mobile ul{ display:flex; flex-direction:column; align-items:center; gap:26px; }
.nav-mobile a{
  font-family:var(--font-head); font-size:1.7rem; font-weight:600; color:var(--white);
}
.nav-mobile a.active{ color:var(--gold); }
.nav-mobile .nav-mobile-cta{ margin-top:28px; }

@media (max-width:960px){
  .nav-desktop{ display:none; }
  .header-actions .btn-primary{ display:none; }
  .nav-toggle{ display:flex; }
  /* Below this width the CTA button (the row's tallest element on desktop)
     is hidden, leaving only the 44px .nav-toggle — cap the header's logo
     mark at 44px too so it can't become the tallest item and grow the bar. */
  .site-header .logo-mark{ width:44px; height:44px; }
}

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:rgba(255,255,255,.62); padding-top:88px; }
.footer-top{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:44px; padding-bottom:64px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .logo{ color:var(--white); }
.footer-brand p{ margin-top:18px; max-width:320px; color:rgba(255,255,255,.55); }
.footer-col h4{ color:var(--white); font-family:var(--font-head); font-size:.82rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:22px; }
.footer-col ul li{ margin-bottom:13px; }
.footer-col a{ font-size:.92rem; color:rgba(255,255,255,.6); transition:color .2s ease, padding-left .2s ease; }
.footer-col a:hover{ color:var(--gold); }
.footer-contact li{ font-size:.92rem; color:rgba(255,255,255,.6); display:flex; gap:10px; align-items:flex-start; }
.footer-contact svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; margin-top:3px; }

.newsletter-form{
  display:flex; margin-top:20px; max-width:380px;
  border:1px solid rgba(255,255,255,.2); border-radius:999px; overflow:hidden;
}
.newsletter-form input{
  flex:1; min-width:0; background:transparent; border:none; padding:14px 20px;
  color:var(--white); font-size:.9rem;
}
.newsletter-form input::placeholder{ color:rgba(255,255,255,.38); }
.newsletter-form button{
  background:var(--gold); color:var(--ink); border:none; padding:0 22px;
  font-weight:600; font-family:var(--font-head); cursor:pointer; flex-shrink:0;
  transition:background .2s ease;
}
.newsletter-form button:hover{ background:var(--gold-light); }

.footer-social{ display:flex; gap:12px; margin-top:24px; }
.footer-social a{
  width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
}
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); transform:translateY(-3px); }
.footer-social svg{ width:16px; height:16px; color:var(--white); }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding:26px 0; font-size:.8rem; color:rgba(255,255,255,.55); flex-wrap:wrap; gap:14px;
}
.footer-bottom a{ color:rgba(255,255,255,.55); }
.footer-bottom a:hover{ color:var(--gold); }
.footer-legal{ display:flex; gap:24px; flex-wrap:wrap; }

/* ---------- Scroll reveal ---------- */
.reveal{ opacity:0; transform:translateY(32px); transition:opacity .7s ease, transform .7s ease; will-change:opacity, transform; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.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{ transition:none; opacity:1; transform:none; }
}

/* Optional variant — clip-path wipe instead of the default translateY+fade.
   Overrides .reveal's base opacity/transform (source order); combine as
   class="reveal reveal-wipe" so the shared IntersectionObserver still picks it up. */
.reveal-wipe{
  opacity:1; transform:none;
  clip-path:inset(0 100% 0 0);
  transition:clip-path .8s cubic-bezier(.65,0,.35,1);
  will-change:clip-path;
}
.reveal-wipe.is-visible{ clip-path:inset(0 0 0 0); }
@media (prefers-reduced-motion:reduce){
  .reveal-wipe{ clip-path:none; transition:none; }
}

/* ---------- Section transition seam (gold hairline shimmer) ----------
   A zero-height marker dropped between two <section>s; the hairline itself
   is an absolutely-positioned 1px pseudo-element, so it never affects the
   layout height of the page. */
.section-seam{ position:relative; height:0; pointer-events:none; }
.section-seam::before{
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg, transparent, rgba(195,160,92,.6) 25%, rgba(216,190,134,.95) 50%, rgba(195,160,92,.6) 75%, transparent);
  background-size:200% 100%;
  opacity:.7;
  animation:seamShimmer 7s linear infinite;
}
@keyframes seamShimmer{ 0%{ background-position:0% 0; } 100%{ background-position:200% 0; } }
@media (prefers-reduced-motion:reduce){
  .section-seam::before{ animation:none; background-position:0 0; }
}

/* ==========================================================================
   Home-page components (dashboard mock, timeline, industries, testimonials)
   Shared — reusable on any page that needs the same pattern.
   ========================================================================== */

/* ---------- Hero grain overlay ---------- */
.hero-grain{ position:relative; overflow:hidden; }
.hero-grain::before{
  content:''; position:absolute; inset:-50%; z-index:0; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:.06; mix-blend-mode:overlay;
}
.hero-grain > .container{ position:relative; z-index:1; }

/* ---------- Hero mesh backdrop (gold aurora glow) ---------- */
.hero-mesh{ position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none; }
.hero-mesh-aurora{
  position:absolute; left:50%; top:50%; width:130%; height:130%;
  background:conic-gradient(from 0deg, transparent 0deg, rgba(195,160,92,.5) 70deg, transparent 150deg, rgba(216,190,134,.4) 230deg, transparent 320deg, rgba(195,160,92,.35) 360deg);
  opacity:.12; filter:blur(70px);
  transform:translate(-50%,-50%) rotate(0deg);
  animation:heroAuroraSpin 60s linear infinite;
  will-change:transform;
}
@keyframes heroAuroraSpin{ to{ transform:translate(-50%,-50%) rotate(360deg); } }
.hero-mesh.is-paused .hero-mesh-aurora{ animation-play-state:paused; }
@media (prefers-reduced-motion:reduce){
  .hero-mesh-aurora{ animation:none; }
}

.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center; }
.hero-visual{ position:relative; perspective:1200px; }
.hero-visual::before{
  content:''; position:absolute; width:420px; height:420px; z-index:0;
  background:radial-gradient(circle, rgba(195,160,92,.28), transparent 70%);
  top:-70px; right:-60px; filter:blur(6px);
}
.hero-trust{ display:flex; gap:14px; flex-wrap:wrap; margin-top:40px; }
.section-dark .badge-trust{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.16); color:rgba(255,255,255,.85); }

@media (max-width:960px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ margin-top:20px; }
  .hero-visual::before{ display:none; }
}

/* ---------- Dashboard mockup (pure CSS) ---------- */
/* Wrapper carries the JS mouse-tilt transform; floatMock bob animation stays
   on .dashboard-mock itself so the two transforms never fight over the
   same element's `transform` property. */
.dashboard-tilt{
  transition:transform .5s cubic-bezier(.16,1,.3,1);
  will-change:transform;
}
@media (prefers-reduced-motion:reduce){ .dashboard-tilt{ transition:none; } }
.dashboard-mock{
  position:relative; z-index:1;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  box-shadow:0 40px 90px rgba(0,0,0,.5);
  overflow:hidden;
  animation:floatMock 7s ease-in-out infinite;
}
@keyframes floatMock{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
@media (prefers-reduced-motion:reduce){ .dashboard-mock{ animation:none; } }

.dashboard-mock-header{ display:flex; align-items:center; gap:9px; padding:18px 22px; border-bottom:1px solid rgba(255,255,255,.1); }
.dashboard-dot{ width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.15); }
.dashboard-mock-title{ margin-left:8px; font-family:var(--font-head); font-weight:600; font-size:.85rem; color:rgba(255,255,255,.75); }
.live-badge{
  margin-left:auto; display:inline-flex; align-items:center; gap:8px;
  background:rgba(195,160,92,.12); border:1px solid rgba(195,160,92,.35);
  padding:6px 13px; border-radius:999px; font-size:.7rem; font-weight:600;
  color:var(--gold-light); text-transform:uppercase; letter-spacing:.07em;
}
.live-dot{ width:7px; height:7px; border-radius:50%; background:#5FCB6B; animation:pulseDot 1.8s infinite; }
@keyframes pulseDot{ 0%{ box-shadow:0 0 0 0 rgba(95,203,107,.55); } 70%{ box-shadow:0 0 0 8px rgba(95,203,107,0); } 100%{ box-shadow:0 0 0 0 rgba(95,203,107,0); } }

.dashboard-mock-body{ padding:28px 22px 30px; display:flex; flex-direction:column; gap:24px; }
.dashboard-stat-card{ display:flex; align-items:baseline; gap:16px; flex-wrap:wrap; }
.dashboard-stat-number{ font-family:var(--font-head); font-weight:700; font-size:2.6rem; color:var(--gold-light); line-height:1; }
.dashboard-stat-caption{ font-size:.84rem; color:rgba(255,255,255,.55); line-height:1.5; }

.dashboard-progress{ margin-top:18px; }
.dashboard-progress-label{ display:flex; justify-content:space-between; font-size:.82rem; color:rgba(255,255,255,.6); margin-bottom:10px; }
.dashboard-progress-label span:last-child{ color:var(--gold-light); font-weight:600; }
.dashboard-progress-bar{ height:8px; background:rgba(255,255,255,.08); border-radius:999px; overflow:hidden; }
.dashboard-progress-fill{ height:100%; border-radius:999px; background:linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }

.dashboard-sparkline{ display:flex; align-items:flex-end; gap:4px; height:26px; }
.dashboard-sparkline span{
  flex:1; border-radius:2px; transform-origin:bottom;
  background:linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  opacity:.5;
  animation:sparklinePulse 2.6s ease-in-out infinite;
}
.dashboard-sparkline span:nth-child(1){ height:35%; animation-delay:-2.4s; }
.dashboard-sparkline span:nth-child(2){ height:55%; animation-delay:-2.1s; }
.dashboard-sparkline span:nth-child(3){ height:40%; animation-delay:-1.8s; }
.dashboard-sparkline span:nth-child(4){ height:70%; animation-delay:-1.5s; }
.dashboard-sparkline span:nth-child(5){ height:50%; animation-delay:-1.2s; }
.dashboard-sparkline span:nth-child(6){ height:80%; animation-delay:-.9s; }
.dashboard-sparkline span:nth-child(7){ height:45%; animation-delay:-.6s; }
.dashboard-sparkline span:nth-child(8){ height:60%; animation-delay:-.3s; }
@keyframes sparklinePulse{ 0%,100%{ transform:scaleY(.85); opacity:.4; } 50%{ transform:scaleY(1.15); opacity:.75; } }
@media (prefers-reduced-motion:reduce){
  .dashboard-sparkline span{ animation:none; transform:none; opacity:.55; }
}

.dashboard-mini-row{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.dashboard-mock--wide .dashboard-mini-row{ grid-template-columns:repeat(4,1fr); }
.dashboard-mini-card{ background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:16px 16px; }
.dashboard-mini-num{ font-family:var(--font-head); font-weight:700; color:var(--white); font-size:1.35rem; }
.dashboard-mini-label{ font-size:.7rem; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.05em; margin-top:6px; }

@media (max-width:700px){
  .dashboard-mock--wide .dashboard-mini-row{ grid-template-columns:repeat(2,1fr); }
}

/* ---------- Card link (arrow) ---------- */
.card-link{
  display:inline-flex; align-items:center; gap:8px; margin-top:24px;
  font-family:var(--font-head); font-weight:600; font-size:.9rem; color:var(--gold-dark);
}
.card-link svg{ width:16px; height:16px; transition:transform .25s ease; }
.card:hover .card-link svg,.card-dark:hover .card-link svg{ transform:translateX(5px); }
.card-dark .card-link{ color:var(--gold-light); }

.stat-highlight{ display:block; font-family:var(--font-head); font-weight:700; font-size:1.4rem; color:var(--gold-dark); margin:16px 0 8px; }

/* ---------- Pillar bullet list ---------- */
.pillar-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }

.pillar-list{ margin:22px 0 0; }
.pillar-list li{ display:flex; align-items:flex-start; gap:11px; font-size:.9rem; color:var(--gray); margin-bottom:11px; }
.pillar-list li::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--gold); margin-top:8px; flex-shrink:0; }

/* ---------- Feature item (icon + text row) ---------- */
.feature-item{ display:flex; gap:18px; align-items:flex-start; }
.feature-item .card-icon{ margin-bottom:0; }
.feature-item h4{ margin-bottom:8px; }
.feature-item p{ font-size:.92rem; margin-bottom:0; }

/* ---------- Timeline ---------- */
.timeline{ display:flex; justify-content:space-between; position:relative; gap:16px; }
.timeline::before{ content:''; position:absolute; top:27px; left:0; right:0; height:2px; background:var(--line); z-index:0; }
.timeline-step{ flex:1; position:relative; z-index:1; text-align:center; padding:0 8px; }
.timeline-num{
  width:56px; height:56px; border-radius:50%; background:var(--cream); border:2px solid var(--gold);
  color:var(--gold-dark); font-family:var(--font-head); font-weight:700; font-size:1.2rem;
  display:flex; align-items:center; justify-content:center; margin:0 auto 22px;
}
.timeline-step h4{ margin-bottom:8px; }
.timeline-step p{ font-size:.86rem; }
@media (max-width:960px){
  .timeline{ flex-direction:column; align-items:flex-start; gap:36px; }
  .timeline::before{ display:none; }
  .timeline-step{ display:flex; align-items:flex-start; gap:20px; text-align:left; padding:0; width:100%; }
  .timeline-num{ margin:0; flex-shrink:0; }
}

/* ---------- Grid-5 + industry tiles ---------- */
.grid-5{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
@media (max-width:900px){ .grid-5{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:600px){ .grid-5{ grid-template-columns:repeat(2,1fr); } }

.industry-tile{
  display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center;
  padding:30px 16px; background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.industry-tile:hover{ transform:translateY(-6px); border-color:var(--gold); box-shadow:0 20px 40px rgba(195,160,92,.16); }
.industry-tile .icon-wrap{ width:48px; height:48px; border-radius:50%; background:var(--cream-2); color:var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.industry-tile .icon-wrap svg{ width:23px; height:23px; }
.industry-tile span{ font-size:.85rem; font-weight:600; color:var(--ink); line-height:1.3; }

/* ---------- Client logo box (trust strip placeholder) ---------- */
.logo-strip .client-logo-box{ flex:0 0 auto; min-width:170px; }
.client-logo-box{
  display:flex; align-items:center; justify-content:center; height:60px;
  padding:0 22px; white-space:nowrap;
  border:1px solid var(--line); border-radius:12px; background:var(--white);
  font-family:var(--font-head); font-weight:600; font-size:.86rem; letter-spacing:.02em;
  color:var(--gray); opacity:.75; transition:opacity .25s ease, border-color .25s ease;
}
.client-logo-box:hover{ opacity:1; border-color:var(--gold); }

/* ---------- Testimonials ----------
   Plain grid (reuses .grid-3's existing column/gap/mobile-stack rules) rather
   than a horizontal scroller — three fixed cards don't need a carousel, and
   this sidesteps the clipped-shadow/stray-scrollbar issues that came with one. */
.testimonial-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:36px; box-shadow:var(--shadow);
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}
.testimonial-card:hover{ transform:translateY(-6px); box-shadow:0 24px 50px rgba(14,14,14,.12); }
@media (prefers-reduced-motion:reduce){
  .testimonial-card{ transition:none; }
  .testimonial-card:hover{ transform:none; }
}
.testimonial-stars{ color:var(--gold); font-size:.95rem; letter-spacing:2px; margin-bottom:18px; }
.testimonial-quote{ font-style:italic; color:var(--charcoal); font-size:1rem; line-height:1.7; margin:0; }
.testimonial-footer{ display:flex; align-items:center; gap:14px; margin-top:24px; }
.testimonial-avatar{
  width:52px; height:52px; border-radius:50%; background:var(--cream-2); color:var(--gold-dark);
  font-family:var(--font-head); font-weight:700; font-size:1rem;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.testimonial-name{ font-weight:600; color:var(--ink); font-size:.92rem; }
.testimonial-role{ font-size:.8rem; color:var(--gray); }

.cta-trust-row{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; margin-top:38px; }

/* ==========================================================================
   About-page components (philosophy diagram, team cards)
   ========================================================================== */

/* ---------- Protect + Grow philosophy diagram ---------- */
.philosophy-diagram{
  position:relative; display:flex; align-items:center; justify-content:center;
  height:320px; max-width:640px; margin:0 auto;
}
.philosophy-circle{
  width:270px; height:270px; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:20px; mix-blend-mode:multiply;
}
.philosophy-circle--protect{ background:rgba(14,14,14,.85); color:var(--white); margin-right:-95px; }
.philosophy-circle--protect h4{ color:var(--white); }
.philosophy-circle--grow{ background:rgba(195,160,92,.85); color:var(--ink); margin-left:-95px; }
.philosophy-circle--protect h4,.philosophy-circle--protect p{ transform:translateX(-40px); }
.philosophy-circle--grow h4,.philosophy-circle--grow p{ transform:translateX(40px); }
.philosophy-circle p{ font-size:.85rem; margin:0; }
.philosophy-circle--protect p{ color:rgba(255,255,255,.7); }
.philosophy-circle--grow p{ color:rgba(14,14,14,.65); }

.philosophy-center-label{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:5;
  background:var(--cream); border:2px solid var(--gold); border-radius:999px;
  padding:12px 22px; font-family:var(--font-head); font-weight:700; font-size:.82rem;
  color:var(--ink); white-space:nowrap; box-shadow:var(--shadow); text-align:center;
}

@media (max-width:700px){
  .philosophy-diagram{ flex-direction:column; height:auto; gap:0; padding:20px 0; }
  .philosophy-circle{ width:230px; height:230px; margin:0 0 -60px !important; }
  .philosophy-circle--protect h4,.philosophy-circle--protect p,
  .philosophy-circle--grow h4,.philosophy-circle--grow p{ transform:none; }
  .philosophy-center-label{ position:static; transform:none; margin:24px auto 0; }
}

/* ---------- Team cards ---------- */
.team-card{ text-align:center; }
.team-avatar{
  width:92px; height:92px; border-radius:50%; margin:0 auto 22px;
  background:var(--cream-2); color:var(--gold-dark);
  font-family:var(--font-head); font-weight:700; font-size:1.7rem;
  display:flex; align-items:center; justify-content:center;
}
.team-card .team-role{
  display:block; color:var(--gold-dark); font-weight:600; font-size:.8rem;
  text-transform:uppercase; letter-spacing:.06em; margin:2px 0 14px;
}
.team-linkedin{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:50%; border:1px solid var(--line);
  color:var(--gray); margin-top:18px; transition:background .25s ease, border-color .25s ease, color .25s ease;
}
.team-linkedin:hover{ background:var(--ink); border-color:var(--ink); color:var(--white); }
.team-linkedin svg{ width:16px; height:16px; }

/* ==========================================================================
   Service-page components (live feed mock) — reused across all
   Protect / Grow / Build / Advise sub-service pages.
   ========================================================================== */
.feed-list{ display:flex; flex-direction:column; }
.feed-item{ display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.feed-item:last-child{ border-bottom:none; padding-bottom:0; }
.feed-icon{
  width:36px; height:36px; border-radius:50%; flex-shrink:0;
  background:rgba(195,160,92,.12); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center;
}
.feed-icon svg{ width:17px; height:17px; }
.feed-text{ flex:1; font-size:.85rem; color:rgba(255,255,255,.78); }
.feed-time{ font-size:.72rem; color:rgba(255,255,255,.55); white-space:nowrap; flex-shrink:0; }

/* ==========================================================================
   Before / After listing showcase — reusable anywhere enforcement needs
   to be demonstrated visually (counterfeit removal, impersonation, etc.)
   ========================================================================== */
.before-after{ display:grid; grid-template-columns:1fr auto 1fr; gap:36px; align-items:center; }
.before-after-arrow{
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  width:56px; height:56px; border-radius:50%; background:var(--gold); color:var(--ink);
}
.before-after-arrow svg{ width:24px; height:24px; }
@media (max-width:800px){
  .before-after{ grid-template-columns:1fr; }
  .before-after-arrow{ margin:0 auto; transform:rotate(90deg); }
}

.listing-mock{
  position:relative; overflow:hidden;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px; box-shadow:var(--shadow);
}
.listing-mock-label{
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--font-head); font-weight:700; font-size:.7rem;
  text-transform:uppercase; letter-spacing:.07em; margin-bottom:18px;
}
.listing-mock-label svg{ width:14px; height:14px; flex-shrink:0; }
.listing-mock--before .listing-mock-label{ color:#B3441F; }
.listing-mock--after .listing-mock-label{ color:var(--gold-dark); }
.listing-mock-image{
  height:130px; border-radius:10px; background:var(--cream-2); margin-bottom:18px;
  display:flex; align-items:center; justify-content:center; color:var(--line);
}
.listing-mock-image svg{ width:36px; height:36px; }
.listing-mock-title{ font-family:var(--font-head); font-weight:600; font-size:.95rem; color:var(--ink); margin-bottom:8px; }
.listing-mock-price{ font-family:var(--font-head); font-weight:700; color:var(--ink); font-size:1.15rem; margin-bottom:12px; }
.listing-mock-price del{ color:var(--gray); font-weight:500; font-size:.82rem; margin-right:8px; }
.listing-mock-seller{ display:flex; align-items:center; gap:6px; font-size:.8rem; color:var(--gray); }
.listing-mock--before .listing-mock-seller{ color:#B3441F; }
.listing-mock--after{ opacity:.5; }
.listing-mock-stamp{
  position:absolute; top:42%; left:50%; transform:translate(-50%,-50%) rotate(-9deg);
  border:3px solid var(--gold); color:var(--gold-dark); background:rgba(250,248,243,.95);
  font-family:var(--font-head); font-weight:800; font-size:1.1rem; text-transform:uppercase;
  letter-spacing:.06em; padding:9px 22px; border-radius:8px; white-space:nowrap; opacity:1;
}

/* ==========================================================================
   Search-results (SERP) mock + generic before/after label
   Reuses .before-after / .before-after-arrow for layout.
   ========================================================================== */
.mock-label{
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--font-head); font-weight:700; font-size:.7rem;
  text-transform:uppercase; letter-spacing:.07em; margin-bottom:16px;
}
.mock-label svg{ width:14px; height:14px; flex-shrink:0; }
.mock-label--before{ color:#B3441F; }
.mock-label--after{ color:var(--gold-dark); }

.serp-mock{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow);
}
.serp-mock--after{ opacity:.9; }
.serp-mock-bar{
  display:flex; align-items:center; gap:10px; padding:15px 20px;
  border-bottom:1px solid var(--line); background:var(--cream-2);
}
.serp-mock-bar svg{ width:16px; height:16px; color:var(--gray); flex-shrink:0; }
.serp-mock-query{ font-size:.85rem; color:var(--charcoal); }
.serp-results{ padding:18px 20px; display:flex; flex-direction:column; gap:16px; }
.serp-result{ padding-bottom:16px; border-bottom:1px solid var(--line); }
.serp-result:last-child{ border-bottom:none; padding-bottom:0; }
.serp-result-tag{
  display:inline-block; font-family:var(--font-head); font-weight:700; font-size:.62rem;
  text-transform:uppercase; letter-spacing:.06em; padding:3px 9px; border-radius:999px; margin-bottom:8px;
}
.serp-result--negative .serp-result-tag{ background:rgba(179,68,31,.1); color:#B3441F; }
.serp-result--positive .serp-result-tag{ background:rgba(195,160,92,.14); color:var(--gold-dark); }
.serp-result-title{ font-family:var(--font-head); font-weight:600; font-size:.88rem; color:var(--ink); margin-bottom:4px; }
.serp-result-url{ font-size:.74rem; color:var(--gray); margin-bottom:6px; }
.serp-result-snippet{ font-size:.8rem; color:var(--gray); line-height:1.5; margin:0; }

/* ---------- Disclaimer bar (legal/compliance notices) ---------- */
.disclaimer-bar{ background:var(--cream-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:20px 0; }
.disclaimer-bar .container{ display:flex; align-items:flex-start; justify-content:center; gap:12px; max-width:820px; }
.disclaimer-bar svg{ width:18px; height:18px; color:var(--gold-dark); flex-shrink:0; margin-top:2px; }
.disclaimer-bar p{ font-size:.85rem; color:var(--gray); margin:0; text-align:center; }

/* ==========================================================================
   GROW-pillar components: light hero wash, metrics card, growth chart
   ========================================================================== */
.hero-grow{ background:radial-gradient(ellipse at top right, rgba(195,160,92,.16), transparent 60%), var(--cream); }

/* Light "campaign performance" mock — the Grow-pillar counterpart to .dashboard-mock */
.metrics-card{
  position:relative; z-index:1; background:var(--white); border:1px solid var(--line);
  border-radius:20px; box-shadow:0 40px 90px rgba(14,14,14,.12); overflow:hidden;
  animation:floatMock 7s ease-in-out infinite;
}
.metrics-card-header{ display:flex; align-items:center; gap:9px; padding:18px 22px; border-bottom:1px solid var(--line); }
.metrics-dot{ width:10px; height:10px; border-radius:50%; background:var(--line); }
.metrics-card-title{ margin-left:8px; font-family:var(--font-head); font-weight:600; font-size:.85rem; color:var(--charcoal); }
.metrics-badge{
  margin-left:auto; display:inline-flex; align-items:center; gap:8px;
  background:rgba(195,160,92,.12); border:1px solid rgba(195,160,92,.3);
  padding:6px 13px; border-radius:999px; font-size:.7rem; font-weight:600;
  color:var(--gold-dark); text-transform:uppercase; letter-spacing:.06em;
}
.metrics-card-body{ padding:26px 22px 28px; display:flex; flex-direction:column; gap:22px; }
.metric-row{ margin-bottom:16px; }
.metric-row:last-child{ margin-bottom:0; }
.metric-row-top{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:9px; }
.metric-row-label{ font-size:.83rem; color:var(--gray); }
.metric-row-value{ font-family:var(--font-head); font-weight:700; font-size:1.1rem; color:var(--ink); }
.metric-row-value .delta{ color:var(--gold-dark); font-size:.78rem; font-weight:600; margin-left:6px; }
.metric-row-bar{ height:6px; background:var(--cream-2); border-radius:999px; overflow:hidden; }
.metric-row-fill{ height:100%; border-radius:999px; background:linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }

/* Pure-CSS growth chart */
.growth-chart{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow); padding:40px clamp(20px,4vw,40px); max-width:920px; margin:0 auto;
}
.growth-chart-head{ display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-end; gap:16px; margin-bottom:36px; }
.growth-chart-figure{ font-family:var(--font-head); font-weight:700; font-size:2rem; color:var(--gold-dark); line-height:1; }
.growth-chart-caption{ font-size:.85rem; color:var(--gray); margin-top:6px; }
.growth-chart-bars{ display:flex; align-items:flex-end; gap:clamp(10px,2vw,20px); height:220px; }
.growth-chart-bar{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; }
.growth-chart-bar-tag{
  background:var(--ink); color:var(--gold); font-family:var(--font-head); font-weight:700;
  font-size:.66rem; padding:4px 9px; border-radius:6px; margin-bottom:9px; white-space:nowrap;
}
.growth-chart-bar-fill{ width:100%; max-width:52px; border-radius:8px 8px 3px 3px; background:linear-gradient(180deg, var(--gold-light), var(--gold-dark)); }
.growth-chart-bar-label{ margin-top:14px; font-size:.75rem; color:var(--gray); font-weight:500; }

/* ==========================================================================
   BUILD-pillar components: device mock, portfolio grid
   ========================================================================== */
.device-mock{ position:relative; padding:0 30px 30px 0; }
.device-browser{
  background:var(--white); border:1px solid var(--line); border-radius:16px;
  box-shadow:0 40px 90px rgba(14,14,14,.14); overflow:hidden;
  animation:floatMock 7s ease-in-out infinite; position:relative; z-index:1;
}
.device-browser-bar{ display:flex; align-items:center; gap:8px; padding:14px 16px; border-bottom:1px solid var(--line); background:var(--cream-2); }
.device-dot{ width:9px; height:9px; border-radius:50%; background:var(--line); }
.device-browser-url{ margin-left:10px; flex:1; background:var(--white); border:1px solid var(--line); border-radius:999px; padding:6px 14px; font-size:.72rem; color:var(--gray); }
.device-browser-screen{
  padding:26px; display:flex; flex-direction:column; gap:12px; min-height:200px;
  background:linear-gradient(135deg, var(--cream-2), rgba(195,160,92,.22));
}
.skeleton-bar{ height:10px; border-radius:4px; background:rgba(14,14,14,.09); }
.skeleton-bar.w-70{ width:70%; }
.skeleton-bar.w-45{ width:45%; }
.skeleton-card-row{ display:flex; gap:10px; margin-top:10px; }
.skeleton-card{ flex:1; height:52px; border-radius:8px; background:rgba(255,255,255,.7); border:1px solid rgba(14,14,14,.06); }
.device-phone{
  position:absolute; bottom:0; right:0; width:120px; height:230px; z-index:2;
  background:var(--ink); border-radius:22px; padding:7px; box-shadow:0 30px 60px rgba(14,14,14,.3);
}
.device-phone-screen{ width:100%; height:100%; border-radius:16px; background:linear-gradient(165deg, var(--gold-light), var(--gold-dark)); }
@media (max-width:960px){ .device-mock{ padding-right:20px; padding-bottom:20px; max-width:420px; margin:0 auto; } }

/* ---------- Portfolio grid ---------- */
.portfolio-card{
  border-radius:var(--radius); overflow:hidden; border:1px solid var(--line);
  background:var(--white); box-shadow:var(--shadow);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.portfolio-card:hover{ transform:translateY(-8px); border-color:var(--gold); box-shadow:0 30px 60px rgba(195,160,92,.2); }
.portfolio-thumb{ height:190px; position:relative; }
.portfolio-thumb::after{ content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(255,255,255,.15), rgba(14,14,14,.08)); }
.portfolio-body{ padding:24px 26px 28px; }
.portfolio-tag{ display:block; font-family:var(--font-head); font-size:.7rem; text-transform:uppercase; letter-spacing:.07em; color:var(--gold-dark); font-weight:600; margin-bottom:8px; }
.portfolio-title{ font-family:var(--font-head); font-weight:600; font-size:1.05rem; color:var(--ink); margin:0; }

/* ==========================================================================
   How-it-works components: vertical timeline, annotated platform tour
   ========================================================================== */
.vtimeline{ position:relative; max-width:820px; margin:0 auto; }
.vtimeline::before{ content:''; position:absolute; left:27px; top:6px; bottom:6px; width:2px; background:var(--line); }
.vtimeline-step{ position:relative; display:flex; gap:32px; padding-bottom:52px; }
.vtimeline-step:last-child{ padding-bottom:0; }
.vtimeline-marker{ flex-shrink:0; }
.vtimeline-num{
  width:56px; height:56px; border-radius:50%; background:var(--cream); border:2px solid var(--gold);
  color:var(--gold-dark); font-family:var(--font-head); font-weight:700; font-size:1.2rem;
  display:flex; align-items:center; justify-content:center; position:relative; z-index:1;
}
.vtimeline-content{ flex:1; background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow); }
.vtimeline-content .card-icon{ margin-bottom:18px; }
.vtimeline-content h3{ margin-bottom:10px; }
@media (max-width:600px){
  .vtimeline::before{ left:21px; }
  .vtimeline-step{ gap:18px; padding-bottom:40px; }
  .vtimeline-num{ width:44px; height:44px; font-size:1rem; }
  .vtimeline-content{ padding:22px; }
}

/* ---------- Annotated platform tour ---------- */
.tour-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.tour-panel{ position:relative; background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.1); border-radius:14px; padding:22px; min-height:150px; }
.tour-badge{
  position:absolute; top:-10px; right:-10px; width:30px; height:30px; border-radius:50%;
  background:var(--gold); color:var(--ink); font-family:var(--font-head); font-weight:700; font-size:.85rem;
  display:flex; align-items:center; justify-content:center; box-shadow:0 6px 16px rgba(195,160,92,.4);
}
.tour-panel-title{ font-family:var(--font-head); font-weight:600; font-size:.75rem; color:rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; }

.coverage-dots{ display:grid; grid-template-columns:repeat(10,1fr); gap:5px; }
.coverage-dots span{ width:100%; aspect-ratio:1; border-radius:2px; background:rgba(255,255,255,.08); }
.coverage-dots span.is-active{ background:var(--gold); }

.link-journey{ display:flex; align-items:flex-start; justify-content:space-between; gap:4px; }
.link-journey-step{ display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; }
.link-journey-icon{ width:34px; height:34px; border-radius:50%; background:rgba(195,160,92,.15); color:var(--gold-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.link-journey-icon svg{ width:16px; height:16px; }
.link-journey-label{ font-size:.64rem; color:rgba(255,255,255,.55); text-align:center; line-height:1.3; }
.link-journey-arrow{ color:rgba(255,255,255,.25); flex-shrink:0; margin-top:9px; }
.link-journey-arrow svg{ width:14px; height:14px; }

.report-mini-bars{ display:flex; align-items:flex-end; gap:6px; height:46px; margin-bottom:14px; }
.report-mini-bars span{ flex:1; border-radius:3px 3px 0 0; background:linear-gradient(180deg, var(--gold-light), var(--gold-dark)); }

.tour-legend-num{
  width:30px; height:30px; border-radius:50%; background:var(--gold); color:var(--ink);
  font-family:var(--font-head); font-weight:700; font-size:.85rem;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}

@media (max-width:700px){ .tour-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   Featured case study card
   ========================================================================== */
.featured-case{
  position:relative; background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow); padding:clamp(28px,5vw,52px); border-top:4px solid var(--gold);
}
.featured-case-header{ margin-bottom:40px; max-width:680px; }
.featured-case-number{ font-family:var(--font-head); font-weight:700; font-size:clamp(2.8rem,5vw,4rem); color:var(--gold-dark); line-height:1; margin:16px 0 12px; }
.featured-case-tagline{ font-size:1.1rem; color:var(--charcoal); margin:0; }
.featured-case-body{ margin-bottom:40px; padding-bottom:40px; border-bottom:1px solid var(--line); }
.featured-case-body h4{ margin-bottom:12px; }
.metric-mini{ margin-bottom:16px; }
.metric-mini:last-child{ margin-bottom:0; }
.metric-mini-value{ font-family:var(--font-head); font-weight:700; color:var(--gold-dark); font-size:1.3rem; line-height:1.2; }
.metric-mini-label{ font-size:.8rem; color:var(--gray); }
.featured-case-quote{ border-left:3px solid var(--gold); padding-left:24px; font-style:italic; color:var(--charcoal); font-size:1.05rem; margin:0; }
.featured-case-quote cite{ display:block; margin-top:14px; font-style:normal; font-family:var(--font-head); font-weight:600; font-size:.85rem; color:var(--ink); }
.featured-case-quote cite span{ display:block; font-weight:500; color:var(--gray); font-size:.8rem; margin-top:2px; }

/* ==========================================================================
   Pricing table
   ========================================================================== */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; align-items:start; }
.pricing-card{
  position:relative; background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:36px 32px; box-shadow:var(--shadow);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pricing-card:hover{ transform:translateY(-6px); border-color:var(--gold); box-shadow:0 30px 60px rgba(195,160,92,.16); }
.pricing-card--featured{
  background:var(--ink); border-color:var(--ink); color:rgba(255,255,255,.78);
  transform:scale(1.04); box-shadow:0 30px 70px rgba(14,14,14,.28); z-index:2;
}
.pricing-card--featured:hover{ transform:scale(1.04) translateY(-6px); border-color:var(--gold); }
.pricing-badge{
  position:absolute; top:-15px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:var(--ink); font-family:var(--font-head); font-weight:700;
  font-size:.68rem; text-transform:uppercase; letter-spacing:.07em; padding:7px 18px;
  border-radius:999px; white-space:nowrap; box-shadow:0 8px 20px rgba(195,160,92,.4);
}
.pricing-tier-name{ font-family:var(--font-head); font-weight:600; font-size:.85rem; color:var(--gold-dark); text-transform:uppercase; letter-spacing:.07em; margin-bottom:14px; }
.pricing-card--featured .pricing-tier-name{ color:var(--gold-light); }
.pricing-amount{ font-family:var(--font-head); font-weight:700; font-size:2.5rem; color:var(--ink); line-height:1; }
.pricing-card--featured .pricing-amount{ color:var(--white); }
.pricing-amount .currency{ font-size:1.3rem; vertical-align:top; margin-right:2px; }
.pricing-period{ font-size:.83rem; color:var(--gray); margin-top:8px; }
.pricing-card--featured .pricing-period{ color:rgba(255,255,255,.5); }
.pricing-desc{ font-size:.88rem; color:var(--gray); margin:20px 0 26px; padding-bottom:26px; border-bottom:1px solid var(--line); }
.pricing-card--featured .pricing-desc{ color:rgba(255,255,255,.58); border-bottom-color:rgba(255,255,255,.12); }
.pricing-features{ margin:0 0 30px; }
.pricing-features li{ display:flex; align-items:flex-start; gap:10px; font-size:.87rem; color:var(--charcoal); margin-bottom:14px; }
.pricing-card--featured .pricing-features li{ color:rgba(255,255,255,.85); }
.pricing-features li svg{ width:16px; height:16px; color:var(--gold-dark); flex-shrink:0; margin-top:2px; }
.pricing-card--featured .pricing-features li svg{ color:var(--gold-light); }
.pricing-features li.is-muted{ color:var(--gray); opacity:.55; }
.pricing-card--featured .pricing-features li.is-muted{ color:rgba(255,255,255,.35); }
.pricing-features li.is-muted svg{ color:var(--gray); }
.pricing-card--featured .pricing-features li.is-muted svg{ color:rgba(255,255,255,.35); }
@media (max-width:960px){
  .pricing-grid{ grid-template-columns:1fr; max-width:460px; margin:0 auto; }
  .pricing-card--featured{ transform:none; }
  .pricing-card--featured:hover{ transform:translateY(-6px); }
}

/* ==========================================================================
   Contact form + contact-info panel + coverage banner
   ========================================================================== */
.form-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(28px,4vw,48px); box-shadow:var(--shadow); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group{ margin-bottom:22px; }
.form-group label{ display:block; font-family:var(--font-head); font-weight:600; font-size:.85rem; color:var(--ink); margin-bottom:8px; }
.form-group label .req{ color:var(--gold-dark); }
.form-input, .form-select, .form-textarea{
  width:100%; padding:14px 18px; border:1.5px solid var(--line); border-radius:12px;
  background:var(--cream); font-family:var(--font-body); font-size:.95rem; color:var(--ink);
  transition:border-color .25s ease, box-shadow .25s ease, background .25s ease; appearance:none;
}
.form-textarea{ resize:vertical; min-height:140px; }
.form-input:focus, .form-select:focus, .form-textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 4px rgba(195,160,92,.18); background:var(--white);
}
.form-select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center; background-size:16px; padding-right:44px; cursor:pointer;
}
.form-honeypot{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; opacity:0; overflow:hidden; }
.form-checkbox-row{ display:flex; align-items:flex-start; gap:12px; margin-bottom:28px; }
.form-checkbox-row input[type="checkbox"]{ width:19px; height:19px; flex-shrink:0; margin-top:2px; accent-color:var(--gold); cursor:pointer; }
.form-checkbox-row label{ font-size:.85rem; color:var(--gray); line-height:1.5; }
.form-checkbox-row a{ color:var(--gold-dark); text-decoration:underline; }
.form-note{ font-size:.82rem; color:var(--gray); text-align:center; margin-top:18px; }

/* ---------- Contact info panel ---------- */
.contact-info-item{ display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.contact-info-icon{
  width:44px; height:44px; border-radius:50%; background:var(--cream-2); color:var(--gold-dark);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-info-icon svg{ width:20px; height:20px; }
.contact-info-label{ font-size:.76rem; text-transform:uppercase; letter-spacing:.06em; color:var(--gray); margin-bottom:4px; }
.contact-info-value{ font-family:var(--font-head); font-weight:600; color:var(--ink); font-size:.98rem; line-height:1.5; }

.social-row{ display:flex; gap:12px; }
.social-row a{
  width:44px; height:44px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; color:var(--charcoal);
  transition:background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.social-row a:hover{ background:var(--gold); border-color:var(--gold); color:var(--ink); transform:translateY(-3px); }
.social-row svg{ width:16px; height:16px; }

/* ---------- Coverage banner (world-map substitute) ---------- */
.coverage-banner{ position:relative; background:var(--ink); border-radius:var(--radius); padding:clamp(50px,7vw,88px) clamp(24px,5vw,56px); overflow:hidden; }
.coverage-banner .coverage-dots{ grid-template-columns:repeat(20,1fr); opacity:.55; }
.coverage-banner-stat{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); text-align:center;
  background:rgba(14,14,14,.88); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  padding:clamp(22px,4vw,32px) clamp(30px,6vw,54px); border-radius:20px;
  border:1px solid rgba(195,160,92,.35); box-shadow:0 30px 70px rgba(0,0,0,.4);
}
.coverage-banner-stat .stat-number{ color:var(--gold); }
.coverage-banner-stat .stat-label{ color:rgba(255,255,255,.6); }

@media (max-width:700px){
  .form-row{ grid-template-columns:1fr; gap:0; }
}

/* ==========================================================================
   Success / confirmation badge (thank-you page)
   ========================================================================== */
.success-badge{
  width:112px; height:112px; border-radius:50%; background:var(--cream-2);
  display:flex; align-items:center; justify-content:center; margin:0 auto 36px; position:relative;
  animation:successPop .5s cubic-bezier(.34,1.56,.64,1);
}
.success-badge::after{
  content:''; position:absolute; inset:-8px; border-radius:50%; border:1px solid rgba(195,160,92,.4);
  animation:successRing 2.2s ease-out .4s infinite;
}
@keyframes successPop{ from{ transform:scale(.6); opacity:0; } to{ transform:scale(1); opacity:1; } }
@keyframes successRing{ 0%{ transform:scale(.92); opacity:.8; } 100%{ transform:scale(1.35); opacity:0; } }
.success-check-circle{ stroke:var(--gold); stroke-width:2; fill:none; stroke-dasharray:145; stroke-dashoffset:145; animation:successCircle .7s .15s ease-out forwards; }
.success-check-mark{ stroke:var(--gold); stroke-width:3; fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:34; stroke-dashoffset:34; animation:successMark .45s .65s ease-out forwards; }
@keyframes successCircle{ to{ stroke-dashoffset:0; } }
@keyframes successMark{ to{ stroke-dashoffset:0; } }
@media (prefers-reduced-motion:reduce){
  .success-badge, .success-badge::after, .success-check-circle, .success-check-mark{ animation:none; stroke-dashoffset:0; opacity:1; transform:none; }
}

/* ---------- While-you-wait link row ---------- */
.whilewait-row{ display:flex; justify-content:center; gap:40px; flex-wrap:wrap; margin-top:52px; padding-top:40px; border-top:1px solid var(--line); }
.whilewait-link{ display:flex; flex-direction:column; align-items:center; gap:10px; font-size:.85rem; font-weight:600; color:var(--charcoal); transition:color .2s ease; }
.whilewait-link:hover{ color:var(--gold-dark); }
.whilewait-link .card-icon{ margin-bottom:0; }

/* ---------- 404 page ---------- */
.error-404-number{
  font-family:var(--font-head); font-weight:700; font-size:clamp(6rem,18vw,11rem);
  color:var(--gold); line-height:1; letter-spacing:-.02em; margin-bottom:8px;
  text-shadow:0 0 70px rgba(195,160,92,.45);
}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .section{ padding:88px 0; }
  .footer-top{ grid-template-columns:1fr 1fr; row-gap:44px; }
}
@media (max-width:960px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .hero{ padding:140px 0 72px; }
}
@media (max-width:680px){
  .section{ padding:68px 0; }
  .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; gap:40px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn-primary,.hero-cta .btn-ghost,.hero-cta .btn-dark{ text-align:center; }
}
@media (max-width:480px){
  .container{ padding:0 20px; }
  .card,.card-dark{ padding:28px; }
}
