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

:root {
  --bg:        #F2F2F0;
  --white:     #FFFFFF;
  --dark:      #1C1C1C;
  --ink:       #1C1C1C;
  --mid:       #3E3E3E;
  --muted:     #767676;
  --border:    #E0E0DC;
  --accent:    #F26522;
  --accent-dk: #D4551A;
  --f-display: 'Wix Madefor Display', sans-serif;
  --f-text:    'Wix Madefor Text', 'Wix Madefor Display', sans-serif;
  --max: 1160px;
  --px:  clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 8vw, 7rem);
  --nav-h: 96px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

body {
  font-family: var(--f-text);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── LAYOUT ── */
.wrap  { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.sec   { padding: var(--section-y) 0; }

/* ── TYPE ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--f-display); line-height: 1.08; }
h1 { font-size: clamp(42px, 6.5vw, 76px); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.8vw, 30px); font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 17px; font-weight: 600; }
p  { font-family: var(--f-text); font-size: 16px; line-height: 1.75; color: var(--mid); }
p.lead { font-size: clamp(16px, 2vw, 18px); }
.eyebrow {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.9rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-size: 14px; font-weight: 600;
  padding: 13px 28px; border-radius: 100px; border: none;
  cursor: pointer; text-decoration: none; transition: all .18s ease;
  white-space: nowrap;
}
.btn { position: relative; }
.btn-accent {
  background: var(--accent); color: #fff;
  overflow: hidden; isolation: isolate;
  box-shadow: 0 4px 14px rgba(242,101,34,.22);
}
.btn-accent::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -75%; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn-accent:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(242,101,34,.35);
}
.btn-accent:hover::after { left: 130%; transition: left .55s ease; }
.btn-accent:active { transform: translateY(0); box-shadow: 0 5px 14px rgba(242,101,34,.28); }
.btn-accent.magnetic:hover { transform: none; }
.btn svg { transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn-ghost-w  { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-w:hover { background: rgba(255,255,255,.1); transform: translateY(-1px); }
.btn-ghost-dk { background: transparent; color: var(--ink); border: 1.5px solid rgba(28,28,28,.25); }
.btn-ghost-dk:hover { background: rgba(28,28,28,.06); transform: translateY(-1px); }


/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--dark);
  height: var(--nav-h);
  transition: height .35s var(--ease-out), background .35s ease, box-shadow .35s ease;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  cursor: pointer; text-decoration: none; flex-shrink: 0;
  color: #FFFFFF;
}
.nav-logo .ag-logo { height: 38px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
  display: block; padding: 8px 15px;
  font-family: var(--f-display); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.65); text-decoration: none;
  cursor: pointer; position: relative;
  transition: color .2s ease;
}
.nav-links a:not(.nav-cta-link)::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .32s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta-link {
  background: var(--accent) !important; color: #fff !important;
  font-weight: 600 !important; border-radius: 100px !important;
  padding: 9px 20px !important; margin-left: 8px;
}
.nav-cta-link:hover { background: var(--accent-dk) !important; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 8px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.75); border-radius: 2px;
  transition: all .25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 400;
  background: var(--dark);
  flex-direction: column;
  padding: 2rem var(--px);
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block; padding: 14px 0;
  font-family: var(--f-display); font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,.65); text-decoration: none; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .15s;
}
.mobile-drawer a:hover { color: #fff; }
.mobile-drawer .drawer-cta {
  margin-top: 1.5rem;
  background: var(--accent); color: #fff;
  border-radius: 100px; text-align: center;
  padding: 14px; font-size: 16px;
  border-bottom: none;
}
.mobile-drawer .drawer-cta:hover { background: var(--accent-dk); color: #fff; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  background: var(--dark);
  min-height: calc(100vh - 96px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; position: relative; overflow: hidden;
}
.hero-left {
  padding: clamp(1.5rem,3vw,2.5rem) var(--px) clamp(3rem,7vw,6rem) var(--px);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 600px; position: relative; z-index: 2;
}
.hero .eyebrow { color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.hero h1 { color: #fff; margin-bottom: 1.5rem; font-size: clamp(36px, 4.5vw, 54px); }
.hero p.lead { color: rgba(255,255,255,.6); font-size: 17px; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #161616;
}
/* Atmospheric topo-map SVG graphic */
.hero-right svg { width: 100%; height: 100%; position: absolute; inset: 0; }

/* ── HERO CREDIBILITY STAT ── */
.hero-cred {
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hero-cred-item { display: flex; flex-direction: column; gap: 4px; }
.hero-cred-num {
  font-family: var(--f-display); font-size: 34px; font-weight: 800;
  color: #fff; line-height: 1; letter-spacing: -0.03em;
}
.hero-cred-num em { color: var(--accent); font-style: normal; }
.hero-cred-label { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.4; }

/* ── INLINE SVG SIZING ── */
.cert-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.svc-card-icon svg { width: 24px; height: 24px; }
.svc-icon-sq svg { width: 26px; height: 26px; }
.cfeat-icon svg { width: 20px; height: 20px; }
.istat-icon svg { width: 20px; height: 20px; }
.faq-toggle svg { width: 16px; height: 16px; }
.pillar-num svg { width: 16px; height: 16px; }
.form-success-icon svg { width: 32px; height: 32px; }
.qcard-av svg { width: 16px; height: 16px; }
/* arrow SVGs in buttons/links */
.btn svg, .svc-card a svg { width: 16px; height: 16px; flex-shrink: 0; }
.svc-bullets li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

/* ── CERT STRIP ── */
.cert-strip {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem var(--px);
}
.cert-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.cert-label {
  font-family: var(--f-display); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.5); letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
.cert-badges { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.cert-badge {
  font-family: var(--f-display); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.6); letter-spacing: 0.04em;
  padding: 5px 14px; border-radius: 100px;
  border: none;
  display: flex; align-items: center; gap: 6px;
}

/* ══════════════════════════════════════════════
   INTRO (white bg)
══════════════════════════════════════════════ */
.intro { background: var(--white); border-bottom: 1px solid var(--border); }
.intro-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem); align-items: center;
}
.intro-left h2 { margin-bottom: 1.25rem; }
.intro-left p  { margin-bottom: 1.5rem; }
.intro-stat-box {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.istat { display: flex; align-items: flex-start; gap: 12px; }
.istat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(242,101,34,.09);
  border: 1.5px solid rgba(242,101,34,.4);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.istat-body { display: flex; flex-direction: column; gap: 2px; }
.istat-n {
  font-family: var(--f-display); font-size: 38px; font-weight: 800;
  color: var(--ink); line-height: 1; letter-spacing: -0.03em;
}
.istat-n span { color: var(--accent); }
.istat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }
.istat-divider { height: 1px; background: var(--border); }
.vs-table { width: 100%; border-collapse: collapse; }
.vs-table thead tr { border-bottom: 1px solid var(--border); }
.vs-table thead th { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: 0 0 12px; text-align: right; }
.vs-table thead th:first-child { text-align: left; }
.vs-table tbody tr { border-bottom: 1px solid var(--border); }
.vs-table tbody tr:last-child { border-bottom: none; }
.vs-table tbody td { padding: 16px 0; vertical-align: middle; }
.vs-metric { font-size: 13px; color: var(--muted); line-height: 1.4; max-width: 140px; }
.vs-val { text-align: right; font-family: var(--f-display); font-size: 28px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.vs-val span { color: var(--accent); }
.vs-val.us { color: var(--ink); }
.vs-val.them { color: var(--muted); font-size: 22px; font-weight: 600; }
.vs-table-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 1.25rem; }

/* ══════════════════════════════════════════════
   HOME SERVICES (dark)
══════════════════════════════════════════════ */
.home-svcs { background: var(--dark); position: relative; }
.home-svcs-head {
  text-align: center;
  padding: var(--section-y) var(--px) 3rem;
  max-width: 900px; margin: 0 auto;
}
.home-svcs-head h2 { color: #fff; margin-bottom: 1rem; }
.home-svcs-head p { color: rgba(255,255,255,.55); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.svc-card {
  background: var(--dark); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  transition: background .2s;
}
.svc-card:hover { background: #222; }
.svc-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-card h3 { color: #fff; font-size: 20px; }
.svc-card p  { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.7; }
.svc-card a  {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-size: 13px; font-weight: 600;
  color: var(--accent); text-decoration: none; margin-top: auto;
  transition: color .2s ease;
}
.svc-card a:hover { color: var(--accent-dk); }
.svc-card a svg { transition: transform .25s var(--ease-out); }
.svc-card a:hover svg { transform: translateX(4px); }
.home-svcs-cta { text-align: center; padding: 3rem var(--px) var(--section-y); }

/* ══════════════════════════════════════════════
   PROOF SPLIT
══════════════════════════════════════════════ */
.proof-split { background: var(--bg); }
.proof-split-inner {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: clamp(3rem,6vw,6rem); align-items: start;
}
.proof-left .big-stat {
  font-family: var(--f-display);
  font-size: clamp(52px, 8vw, 88px); font-weight: 800;
  line-height: 1; letter-spacing: -0.04em; color: var(--ink);
}
.proof-left .big-stat span { color: var(--accent); }
.proof-left p.stat-sub { font-size: 14px; color: var(--muted); margin-top: 8px; margin-bottom: 2rem; }
.proof-left h2 { margin-bottom: 1.25rem; }
.proof-left p  { margin-bottom: 1.5rem; }
.quote-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.qcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem;
}
.qcard-stars { color: var(--accent); font-size: 15px; letter-spacing: 3px; margin-bottom: 0.75rem; }
.qcard-text {
  font-family: var(--f-text); font-size: 15px; line-height: 1.75;
  color: var(--mid); font-style: italic; margin-bottom: 1rem;
}
.qcard-author { display: flex; align-items: center; gap: 10px; }
.qcard-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 13px; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.qcard-byline { font-family: var(--f-display); font-size: 13px; font-weight: 700; color: var(--ink); }
.qcard-co { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-banner {
  background: var(--dark); text-align: center;
  padding: clamp(4rem,8vw,7rem) var(--px);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(242,101,34,.1) 0%, transparent 70%);
  pointer-events: none;
  will-change: transform, opacity;
}
html.ag-armed .cta-banner::before { animation: glowBreathe 9s ease-in-out infinite; }
@keyframes glowBreathe {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.18); }
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-banner p  {
  color: rgba(255,255,255,.5); position: relative;
  max-width: 520px; margin: 0 auto 2.5rem;
}
.cta-banner .btn { position: relative; }

/* ══════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════ */
.svcs-hero {
  background: var(--dark);
  padding: clamp(4rem,8vw,7rem) var(--px) clamp(3rem,6vw,5rem);
  text-align: center;
}
.svcs-hero .eyebrow { color: rgba(255,255,255,.4); }
.svcs-hero h1 { color: #fff; margin-bottom: 1.25rem; }
.svcs-hero p.lead { color: rgba(255,255,255,.55); max-width: 640px; margin: 0 auto; }
.svc-section { border-bottom: 1px solid var(--border); }
.svc-section:nth-child(odd)  { background: var(--white); }
.svc-section:nth-child(even) { background: var(--bg); }
.svc-section-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem); align-items: center;
  padding: clamp(4rem,7vw,6rem) var(--px);
  max-width: var(--max); margin: 0 auto;
}
.svc-section:nth-child(even) .svc-section-inner { direction: rtl; }
.svc-section:nth-child(even) .svc-section-inner > * { direction: ltr; }
.svc-info .svc-tag {
  display: flex; align-items: center; gap: 14px; margin-bottom: 1.5rem;
}
.svc-icon-sq {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(242,101,34,.09);
  border: 1.5px solid rgba(242,101,34,.4);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-tag-label { font-family: var(--f-display); font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.35; }
.svc-info h2 { margin-bottom: 1.25rem; }
.svc-info p  { margin-bottom: 1.25rem; }
.svc-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 2rem; }
.svc-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--f-text); font-size: 15px; color: var(--mid); line-height: 1.5;
}
.svc-bullets li i { color: var(--accent); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.svc-stat-box {
  background: var(--dark); border-radius: 18px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.svc-stat-num {
  font-family: var(--f-display); font-size: 56px; font-weight: 800;
  color: #fff; line-height: 1; letter-spacing: -0.035em;
}
.svc-stat-num sup { font-size: 28px; color: var(--accent); vertical-align: super; }
.svc-stat-label { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.5; max-width: 220px; }
.svc-stat-box-light {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.svc-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.svc-bar-label { font-family: var(--f-display); font-size: 12px; color: var(--muted); width: 100px; flex-shrink: 0; }
.svc-bar-track { flex: 1; height: 7px; background: var(--border); border-radius: 99px; overflow: hidden; }
.svc-bar-fill  { height: 100%; border-radius: 99px; background: var(--accent); }
.svc-bar-val   { font-family: var(--f-display); font-size: 12px; font-weight: 700; color: var(--ink); min-width: 36px; text-align: right; }
.vis-list-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-family: var(--f-text); font-size: 13px; color: var(--mid);
}
.vis-list-item:last-child { border-bottom: none; }
.vis-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.vis-badge {
  margin-left: auto; font-family: var(--f-display);
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 99px;
  white-space: nowrap; flex-shrink: 0;
}
.vis-badge.hi   { background: #FFF3E0; color: #B45309; }
.vis-badge.easy { background: #E8F5E9; color: #1B5E20; }

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.about-hero {
  background: var(--dark);
  padding: clamp(4rem,8vw,7rem) var(--px) clamp(3rem,5vw,5rem);
}
.about-hero .eyebrow { color: rgba(255,255,255,.4); }
.about-hero h1 { color: #fff; margin-bottom: 1.5rem; }
.about-hero p.lead { color: rgba(255,255,255,.55); max-width: 580px; }
.about-story { background: var(--white); border-bottom: 1px solid var(--border); }
.about-story-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem); align-items: start;
}
.about-story h2 { margin-bottom: 1.25rem; }
.about-story p  { margin-bottom: 1rem; }
.pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.pillar { background: var(--bg); padding: 1.75rem; }
.pillar-num {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.75rem; display: flex; align-items: center; gap: 6px;
}
.pillar h4 { font-size: 15px; margin-bottom: 0.4rem; }
.pillar p  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.values-section { background: var(--white); border-bottom: 1px solid var(--border); }
.values-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.values-head h2 { margin-bottom: 1rem; }
.values-head p  { font-size: 15px; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem;
}
.value-card h4 { font-size: 15px; margin-bottom: 0.4rem; }
.value-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.faq-section { background: var(--bg); }
.faq-inner { display: grid; grid-template-columns: 300px 1fr; gap: clamp(3rem,6vw,6rem); }
.faq-left h2 { margin-bottom: 1rem; }
.faq-left p  { font-size: 15px; color: var(--muted); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 1.5rem 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q-row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q {
  font-family: var(--f-display); font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .25s;
}
.faq-item.open .faq-toggle { background: var(--accent); transform: rotate(45deg); }
.faq-item.open .faq-toggle i { color: #fff; }
.faq-a {
  font-family: var(--f-text); font-size: 14px; color: var(--muted);
  line-height: 1.75; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin-top .2s ease;
}
.faq-item.open .faq-a { max-height: 300px; margin-top: 0.75rem; }

/* ══════════════════════════════════════════════
   THE PROOF PAGE
══════════════════════════════════════════════ */
.proof-hero {
  background: var(--dark);
  padding: clamp(4rem,8vw,7rem) var(--px) clamp(3rem,5vw,5rem);
}
.proof-hero .eyebrow { color: rgba(255,255,255,.4); }
.proof-hero h1 { color: #fff; margin-bottom: 1.25rem; }
.proof-hero p.lead { color: rgba(255,255,255,.55); max-width: 580px; }
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--white); border-bottom: 1px solid var(--border);
}
.stat-cell {
  padding: 2.5rem 2rem; border-right: 1px solid var(--border); text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-cell-n {
  font-family: var(--f-display); font-size: 46px; font-weight: 800;
  color: var(--ink); line-height: 1; letter-spacing: -0.035em; margin-bottom: 6px;
}
.stat-cell-n span { color: var(--accent); }
.stat-cell-l { font-size: 13px; color: var(--muted); line-height: 1.4; }
.testimonials-sec { background: var(--bg); }
.tgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.tcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.tcard.featured {
  background: var(--dark); border-color: transparent; grid-column: span 2;
}
.tcard-stars { color: var(--accent); font-size: 14px; letter-spacing: 3px; }
.tcard.featured .tcard-stars { color: rgba(255,255,255,.5); }
.tcard-text {
  font-family: var(--f-text); font-size: 15px; line-height: 1.8;
  color: var(--mid); font-style: italic; flex: 1;
}
.tcard.featured .tcard-text { color: rgba(255,255,255,.7); font-size: 16px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 14px; font-weight: 700;
  color: #fff; flex-shrink: 0; letter-spacing: 0.03em;
}
.tcard.featured .tcard-av { background: rgba(255,255,255,.15); }
.tcard-name { font-family: var(--f-display); font-size: 14px; font-weight: 700; color: var(--ink); }
.tcard.featured .tcard-name { color: #fff; }
.tcard-role { font-size: 12px; color: var(--muted); margin-top: 1px; }
.tcard.featured .tcard-role { color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-hero {
  background: var(--dark);
  padding: clamp(4rem,8vw,7rem) var(--px) clamp(3rem,5vw,5rem);
}
.contact-hero .eyebrow { color: rgba(255,255,255,.4); }
.contact-hero h1 { color: #fff; margin-bottom: 1rem; }
.contact-hero p.lead { color: rgba(255,255,255,.55); max-width: 540px; }
.contact-body { background: var(--bg); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem); align-items: start;
}
.contact-left h2 { margin-bottom: 1rem; font-size: clamp(22px,3vw,30px); }
.contact-left > p { margin-bottom: 2.5rem; }
.contact-feats { display: flex; flex-direction: column; gap: 1.5rem; }
.cfeat { display: flex; gap: 14px; align-items: flex-start; }
.cfeat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(242,101,34,.09);
  border: 1.5px solid rgba(242,101,34,.4);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cfeat-title { font-family: var(--f-display); font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.cfeat-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* form */
.cform { background: var(--dark); border-radius: 20px; padding: 2.5rem; }
.cform-title {
  font-family: var(--f-display); font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 1.75rem;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.fg label {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.85); letter-spacing: 0.1em; text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--f-text); font-size: 14px;
  color: #fff; outline: none; transition: border-color .15s;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.22); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(242,101,34,.15); }
.fg select { color: rgba(255,255,255,.6); }
.fg select option { background: #2a2a2a; color: #fff; }
.fg textarea { resize: vertical; min-height: 144px; }
.form-note { font-size: 12px; color: rgba(255,255,255,.5); text-align: center; margin-top: 10px; }

/* Form success state */
.form-success {
  display: none; text-align: center; padding: 2.5rem 0;
  flex-direction: column; align-items: center;
}
.form-success.show { display: flex; animation: fadeUp .5s var(--ease-out) both; }
.form-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 8px rgba(242,101,34,.14);
}
.form-success-icon svg { width: 26px; height: 26px; display: block; }
.form-success h3 {
  color: #fff; font-size: clamp(20px,2.2vw,24px); font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: .75rem;
}
.form-success-lead {
  color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.65;
  max-width: 360px; margin: 0 auto;
}
.form-success-lead strong { color: #fff; font-weight: 600; }

/* hide the form's title once submitted — it no longer describes what's on screen */
.cform.submitted .cform-title { display: none; }

/* ══════════════════════════════════════════════
   FOOTER (improved)
══════════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-top {
  padding: clamp(3rem,5vw,4rem) var(--px);
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; background: var(--dark); isolation: isolate; }
.footer-logo { color: #FFFFFF; display: block; text-decoration: none; }
.footer-logo .ag-logo { height: 44px; width: auto; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 240px; }
.footer-col-title {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.4); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-links a {
  font-size: 14px; color: rgba(255,255,255,.45); text-decoration: none;
  cursor: pointer; transition: color .15s;
}
.footer-col-links a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem var(--px);
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.45); }
.footer-tagline {
  font-family: var(--f-display); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.45); letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo .ag-logo { height: 32px !important; }
  :root { --nav-h: 80px; }
  html.scrolled { --nav-h: 68px; }
  .footer-logo .ag-logo { height: 36px !important; }
  .mobile-drawer { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: block; min-height: 300px; }
  .hero-right::after { background: linear-gradient(0deg, #161616 0%, rgba(22,22,22,.3) 22%, transparent 55%); }
  .hero-left { padding-bottom: clamp(2rem,5vw,3rem); }
  .hero-cred { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .intro-inner { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .proof-split-inner { grid-template-columns: 1fr; }
  .svc-section-inner { grid-template-columns: 1fr; direction: ltr !important; }
  .about-story-inner { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .tcard.featured { grid-column: span 1; }
  .contact-inner { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-cred { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}



/* ══════════════════════════════════════════════
   MOTION SYSTEM
   (JS-armed via html.ag-armed; fully visible with
   no JS or prefers-reduced-motion)
══════════════════════════════════════════════ */

/* ── Scroll reveals with per-element stagger delay ── */
html.ag-armed .ag-hidden {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--agd, 0ms);
}
html.ag-armed .ag-hidden.ag-visible { opacity: 1; transform: none; }

/* ── Shrinking glass nav ── */
html.scrolled { --nav-h: 72px; }
@media (max-width: 900px) { html.scrolled { --nav-h: 68px; } }
html.scrolled nav {
  background: rgba(28,28,28,.86);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.nav-logo { transition: transform .35s var(--ease-out); transform-origin: left center; }
html.scrolled .nav-logo { transform: scale(.88); }

/* ── Hero entrance choreography ── */
.hl { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hl-in { display: block; }
html.ag-armed:not(.hero-done) .hl-in {
  transform: translateY(112%);
  animation: heroRise .9s var(--ease-out) forwards;
}
html.ag-armed:not(.hero-done) .hl:nth-of-type(2) .hl-in { animation-delay: .14s; }
html.ag-armed:not(.hero-done) .hero p.lead  { opacity: 0; animation: fadeUp .8s var(--ease-out) .38s forwards; }
html.ag-armed:not(.hero-done) .hero-actions { opacity: 0; animation: fadeUp .8s var(--ease-out) .52s forwards; }
html.ag-armed:not(.hero-done) .hero-cred    { opacity: 0; animation: fadeUp .9s var(--ease-out) .68s forwards; }
html.ag-armed:not(.hero-done) .hero-media   { opacity: 0; animation: mediaIn 1.2s ease .15s forwards; }
@keyframes heroRise { to { transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes mediaIn  { from { opacity: 0; } to { opacity: 1; } }

/* ── Hero media: parallax wrapper + slow Ken Burns + edge scrim ── */
.hero-media { position: absolute; inset: -7% 0; will-change: transform; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
html.ag-armed .hero-media img { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-right::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, #161616 0%, rgba(22,22,22,.35) 16%, transparent 40%),
    linear-gradient(0deg, rgba(22,22,22,.5) 0%, transparent 26%);
}

/* ── Platform logo marquee ── */
.logo-marquee {
  flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track { display: flex; width: max-content; }
html.ag-armed .logo-track.looping { animation: marquee 30s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 3rem; padding-right: 3rem; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Cursor spotlight on dark service cards ── */
.svc-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(242,101,34,.13), transparent 65%);
  opacity: 0; transition: opacity .4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .svc-card:hover::before { opacity: 1; }
}

/* ── Film grain on dark sections ── */
.grain { position: relative; }
.grain::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 170px 170px;
  opacity: .05;
}

/* ── Bars grow in when revealed (JS restores stored widths) ── */
.svc-bar-fill { transition: width 1.1s var(--ease-out); }

/* ── Magnetic CTAs ── */
.magnetic {
  transition: transform .3s var(--ease-out), background .18s ease, box-shadow .18s ease;
  will-change: transform;
}

/* ── Detail polish ── */
::selection { background: var(--accent); color: #fff; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
/* ══ END MOTION SYSTEM ══ */

/* ═══ CHILL RV CASE STUDY (cs- prefix) ═══ */
/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.cs-hero {
  background: var(--dark);
  padding: clamp(4rem,8vw,6.5rem) 0 clamp(3rem,5vw,4.5rem);
}
.cs-hero .eyebrow { color: rgba(255,255,255,.4); }
.cs-hero .eyebrow b { color: var(--accent); font-weight: 700; }
.cs-hero h1 { color: #fff; max-width: 820px; margin-bottom: 1.5rem; }
.cs-hero h1 sup { font-size: 0.42em; color: var(--accent); }
.cs-hero p.lead { color: rgba(255,255,255,.55); max-width: 640px; }

.cs-meta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2.5rem;
}
.cs-meta-item {
  border: 1px solid rgba(255,255,255,.14); border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--f-display); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.6);
}
.cs-meta-item strong { color: #fff; font-weight: 600; }

/* ══════════════════════════════════════════════
   HEADLINE STATS BAR
══════════════════════════════════════════════ */
.cs-stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--white); border-bottom: 1px solid var(--border);
}
.cs-stat-cell {
  padding: 2.5rem 1.5rem; border-right: 1px solid var(--border); text-align: center;
}
.cs-stat-cell:last-child { border-right: none; }
.cs-stat-n {
  font-family: var(--f-display); font-size: clamp(34px, 3.6vw, 44px); font-weight: 800;
  color: var(--ink); line-height: 1; letter-spacing: -0.035em; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.cs-stat-n span { color: var(--accent); }
.cs-stat-l { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ══════════════════════════════════════════════
   CHALLENGE
══════════════════════════════════════════════ */
.cs-challenge { background: var(--white); border-bottom: 1px solid var(--border); }
.cs-challenge-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem,6vw,5.5rem); align-items: start;
}
.cs-challenge h2 { margin-bottom: 1.25rem; }
.cs-challenge p { margin-bottom: 1rem; }
.cs-challenge p:last-child { margin-bottom: 0; }

.cs-brief {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  position: sticky; top: calc(var(--nav-h) + 16px);
}
.cs-brief-title {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 8px;
}
.cs-brief-title::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.cs-brief-row { margin-bottom: 1.1rem; }
.cs-brief-row:last-child { margin-bottom: 0; }
.cs-brief-k {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 3px;
}
.cs-brief-v { font-size: 14.5px; color: var(--ink); line-height: 1.5; }

/* ══════════════════════════════════════════════
   APPROACH
══════════════════════════════════════════════ */
.cs-approach { background: var(--bg); }
.cs-approach-head { max-width: 680px; margin-bottom: 3rem; }
.cs-approach-head h2 { margin-bottom: 1rem; }
.cs-pillars {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.cs-pillar { background: var(--white); padding: 2rem 1.75rem; }
.cs-pillar-num {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.cs-pillar h4 { font-size: 16px; margin-bottom: 0.5rem; }
.cs-pillar p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════
   FUNNEL (signature graphic, dark band)
══════════════════════════════════════════════ */
.cs-funnel-sec { background: var(--dark); }
.cs-funnel-sec .eyebrow { color: rgba(255,255,255,.4); }
.cs-funnel-sec h2 { color: #fff; }
.cs-funnel-head { text-align: center; max-width: 640px; margin: 0 auto 1rem; }
.cs-funnel-head p { color: rgba(255,255,255,.5); margin-top: 1rem; }

.cs-funnel { max-width: 760px; margin: 3rem auto 0; position: relative; }
.cs-funnel::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: rgba(255,255,255,.12); transform: translateX(-.5px);
}
.cs-fstage {
  position: relative; margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 1.35rem 1.75rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
}
.cs-fstage-label {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 4px;
}
.cs-fstage-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.5; }
.cs-fstage-n {
  font-family: var(--f-display); font-size: clamp(30px, 3.4vw, 42px); font-weight: 800;
  color: #fff; letter-spacing: -0.03em; line-height: 1; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.cs-fstage.cs-f1 { width: 100%; }
.cs-fstage.cs-f2 { width: 78%; }
.cs-fstage.cs-f3 { width: 56%; }
.cs-fstage.cs-f4 {
  width: 36%;
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 12px 44px rgba(242,101,34,.35);
}
.cs-fstage.cs-f4 .cs-fstage-label { color: rgba(255,255,255,.8); }
.cs-fstage.cs-f4 .cs-fstage-desc { color: rgba(255,255,255,.75); }

.cs-fdrop {
  position: relative; z-index: 1;
  display: flex; justify-content: center; padding: 0.9rem 0;
}
.cs-fdrop-chip {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--dark); color: var(--accent);
  border: 1px solid rgba(242,101,34,.5); border-radius: 100px;
  padding: 6px 16px; display: inline-flex; align-items: center; gap: 7px;
}
.cs-fdrop-chip svg { width: 11px; height: 11px; flex-shrink: 0; }
.cs-fdrop-chip small {
  font-weight: 500; color: rgba(255,255,255,.45); letter-spacing: 0.02em;
}

.cs-funnel-foot {
  text-align: center; margin-top: 2.5rem;
  font-size: 13.5px; color: rgba(255,255,255,.4);
}
.cs-funnel-foot strong { color: rgba(255,255,255,.75); font-weight: 600; }

/* ══════════════════════════════════════════════
   QUALITY / SIGNED RVS
══════════════════════════════════════════════ */
.cs-quality { background: var(--bg); }
.cs-quality-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,5.5rem); align-items: center;
}
.cs-quality h2 { margin-bottom: 1.25rem; }
.cs-quality p { margin-bottom: 1rem; }
.cs-quality p:last-child { margin-bottom: 0; }

.cs-unit-card {
  background: var(--dark); border-radius: 18px; padding: 2.5rem;
  color: #fff;
}
.cs-unit-big {
  font-family: var(--f-display); font-size: clamp(52px, 6vw, 76px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums;
}
.cs-unit-big sup { font-size: 0.42em; color: var(--accent); vertical-align: super; }
.cs-unit-sub {
  font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6;
  margin-top: 0.75rem; max-width: 320px;
}
.cs-unit-divider { height: 1px; background: rgba(255,255,255,.1); margin: 1.75rem 0; }
.cs-unit-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.cs-unit-row:last-child { margin-bottom: 0; }
.cs-unit-row-k { font-size: 13.5px; color: rgba(255,255,255,.55); }
.cs-unit-row-v {
  font-family: var(--f-display); font-weight: 700; font-size: 18px; color: #fff;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.cs-unit-row-v.cs-orange { color: var(--accent); }

/* ══════════════════════════════════════════════
   REVENUE CHART
══════════════════════════════════════════════ */
.cs-revenue { background: var(--white); border-bottom: 1px solid var(--border); }
.cs-revenue-head { max-width: 720px; margin-bottom: 1rem; }
.cs-revenue-head h2 { margin-bottom: 1rem; }
.cs-revenue-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem,6vw,5rem); align-items: end; margin-top: 2.5rem;
}
.cs-revenue-copy p { margin-bottom: 1rem; }
.cs-roi-callout {
  background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 1.25rem 1.5rem; margin-top: 1.5rem;
}
.cs-roi-callout p { font-size: 14.5px; color: var(--ink); margin: 0; line-height: 1.65; }
.cs-roi-callout strong { font-family: var(--f-display); font-weight: 700; }

.cs-chart { display: flex; align-items: flex-end; gap: clamp(1rem, 3vw, 2rem); }
.cs-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; }
.cs-bar-val {
  font-family: var(--f-display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(16px, 1.9vw, 22px); color: var(--ink); margin-bottom: 8px;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.cs-bar {
  width: 100%; border-radius: 10px 10px 0 0;
  background: #DEDEDA; border: 1px solid var(--border); border-bottom: none;
  transition: height 1s cubic-bezier(.22,.8,.28,1);
}
.cs-bar.cs-bar-accent {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dk) 100%);
  border-color: var(--accent-dk);
  box-shadow: 0 10px 34px rgba(242,101,34,.28);
}
.cs-bar-1 { height: 28px; }
.cs-bar-2 { height: 85px; }
.cs-bar-3 { height: 340px; }
.cs-chart-base { border-top: 1.5px solid var(--ink); padding-top: 12px; margin-top: 0; }
.cs-bar-label {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  text-align: center; line-height: 1.45;
}
.cs-bar-label small {
  display: block; font-family: var(--f-text); font-size: 12px; font-weight: 400;
  letter-spacing: 0; text-transform: none; color: var(--muted); margin-top: 2px;
}
.cs-disclaimer {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
  font-size: 12.5px; color: var(--muted); line-height: 1.7; max-width: 760px;
}

/* ══════════════════════════════════════════════
   CLIENT QUOTE
══════════════════════════════════════════════ */
.cs-quote { background: var(--bg); }
.cs-quote-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cs-quote-mark {
  font-family: var(--f-display); font-size: 64px; font-weight: 800;
  color: var(--accent); line-height: 0.5; display: block; margin-bottom: 1.5rem;
}
.cs-quote-text {
  font-family: var(--f-display); font-size: clamp(20px, 2.6vw, 28px); font-weight: 500;
  line-height: 1.45; color: var(--ink); letter-spacing: -0.01em;
}
.cs-quote-author { margin-top: 1.75rem; display: flex; align-items: center; justify-content: center; gap: 12px; }
.cs-quote-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: #fff;
  font-family: var(--f-display); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cs-quote-name { font-family: var(--f-display); font-size: 14.5px; font-weight: 700; color: var(--ink); text-align: left; }
.cs-quote-role { font-size: 13px; color: var(--muted); text-align: left; }

/* ══════════════════════════════════════════════
   TAKEAWAYS
══════════════════════════════════════════════ */
.cs-takeaways { background: var(--white); border-bottom: 1px solid var(--border); }
.cs-takeaways-head { max-width: 680px; margin-bottom: 3rem; }
.cs-takeaways-head h2 { margin-bottom: 1rem; }
.cs-tgrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.cs-tk { background: var(--bg); padding: 2rem; }
.cs-tk-num {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.cs-tk h4 { font-size: 16px; margin-bottom: 0.5rem; }
.cs-tk p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.cs-cta { background: var(--dark); text-align: center; }
.cs-cta .eyebrow { color: rgba(255,255,255,.4); }
.cs-cta h2 { color: #fff; max-width: 700px; margin: 0 auto 1.25rem; }
.cs-cta p { color: rgba(255,255,255,.55); max-width: 560px; margin: 0 auto 2.25rem; }
.cs-cta-btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }


/* (Case study reveals now handled by the unified motion system above) */

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .cs-challenge-inner, .cs-quality-inner, .cs-revenue-grid { grid-template-columns: 1fr; }
  .cs-brief { position: static; }
  .cs-pillars { grid-template-columns: 1fr; }
  .cs-stats-bar { grid-template-columns: 1fr 1fr; }
  .cs-stat-cell:nth-child(2) { border-right: none; }
  .cs-stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .cs-fstage.cs-f2 { width: 88%; }
  .cs-fstage.cs-f3 { width: 74%; }
  .cs-fstage.cs-f4 { width: 60%; }
  .cs-bar-3 { height: 280px; }
  .cs-bar-2 { height: 70px; }
  .cs-bar-1 { height: 23px; }
}
@media (max-width: 560px) {
  .cs-stats-bar { grid-template-columns: 1fr; }
  .cs-stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .cs-stat-cell:last-child { border-bottom: none; }
  .cs-fstage { flex-direction: column; align-items: flex-start; gap: 0.35rem; padding: 1.1rem 1.25rem; }
  .cs-fstage.cs-f2 { width: 92%; }
  .cs-fstage.cs-f3 { width: 84%; }
  .cs-fstage.cs-f4 { width: 76%; }
  .cs-bar-3 { height: 220px; }
  .cs-bar-2 { height: 55px; }
  .cs-bar-1 { height: 18px; }
  .cs-bar-val { font-size: 13px; }
}

/* ── CS HERO EXTRAS (integration) ── */
.cs-hero h1 { font-size: clamp(38px, 5.6vw, 66px); }
.cs-back {
  font-family: var(--f-display); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.45); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 1.5rem; transition: color .15s ease;
}
.cs-back:hover { color: #fff; }
.cs-meta-logo { background: #fff; border-radius: 100px; padding: 9px 20px; display: inline-flex; align-items: center; }
.cs-meta-logo img { height: 26px; width: auto; display: block; }

/* ── CASE STUDIES INDEX (Proof page) ── */
.cs-index { background: var(--white); border-bottom: 1px solid var(--border); }
.cs-index-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.cs-index-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 2.5rem; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cs-index-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(28,28,28,.08); border-color: rgba(242,101,34,.45); }
.cs-index-logo { height: 44px; width: auto; display: block; margin-bottom: 1.5rem; }
.cs-index-card h3 { margin-bottom: 0.6rem; }
.cs-index-card > p { font-size: 15px; color: var(--muted); max-width: 560px; }
.cs-index-stats { display: flex; flex-wrap: wrap; gap: 2.25rem; margin: 1.5rem 0 1.75rem; }
.cs-index-stats span { font-family: var(--f-display); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); display: block; font-variant-numeric: tabular-nums; }
.cs-index-stats small { font-size: 12px; color: var(--muted); }
.cs-index-stats span.cs-index-hl { color: var(--accent); }
.cs-index-link { font-family: var(--f-display); font-size: 14px; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.cs-index-card:hover .cs-index-link { color: var(--accent-dk); }
/* ═══ END CASE STUDY CSS ═══ */

/* ══════════════════════════════════════════════
   V2 ADDITIONS: checks, stars, route motif,
   marketplace math, misc polish
══════════════════════════════════════════════ */

/* ── Bullet checkmarks ── */
.svc-bullets li .li-check {
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px;
  color: var(--accent);
}

/* ── SVG star ratings ── */
.stars-svg { display: inline-flex; gap: 3px; }
.stars-svg svg { width: 15px; height: 15px; fill: currentColor; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── Route motif primitives ── */
.route-pin {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--accent); background: var(--bg);
  position: relative; flex-shrink: 0; z-index: 1;
}
.route-pin.filled { background: var(--accent); }
.route-steps {
  position: relative; display: grid; grid-template-columns: repeat(3,1fr);
  justify-items: center; margin-bottom: 1.1rem; height: 12px;
}
.route-steps::before {
  content: ''; position: absolute; top: 5px; left: 16.66%; right: 16.66%;
  border-top: 2px dashed rgba(242,101,34,.45);
}
@media (max-width: 900px) { .route-steps { display: none; } }

/* ── Footer privacy link ── */
.footer-privacy-link {
  font-size: 12px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s;
}
.footer-privacy-link:hover { color: rgba(255,255,255,.8); }

/* ── Privacy page shell ── */
.privacy-page-body { background: var(--bg); }

