/* ============================================================
   44i Digital — Shared Styles
   Used by all pages. Brand palette + components live here.
   ============================================================ */

:root {
  --blue:       #629ad0;
  --navy:       #2c4863;
  --accent-blue:#b1cce7;
  --ink:        #2c4863;
  --ink-soft:   #51708d;
  --ink-quiet:  #8499ab;
  --paper:      #ffffff;
  --paper-warm: #f6f6f8;
  --cream:      #f6f6f8;
  --teal:       #629ad0;
  --teal-deep:  #2c4863;
  --coral:      #629ad0;
  --coral-soft: #b1cce7;
  --gold:       #629ad0;
  --accent-green: #a2d29c;
  --rule:       #e6e8ec;
  --shadow:     0 1px 0 rgba(44,72,99,.04), 0 12px 32px -8px rgba(44,72,99,.14);
  --shadow-lg:  0 2px 0 rgba(44,72,99,.04), 0 32px 64px -16px rgba(44,72,99,.20);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.display { font-family: 'Manrope', system-ui, sans-serif; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }
.display b, .display strong { font-weight: 800; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ───── NAV ───── */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
nav.top .wrap { display:flex; align-items:center; justify-content:space-between; padding: 18px 32px; max-width: 1320px; margin: 0 auto; }
.logo { display:flex; align-items:center; gap:10px; text-decoration: none; }
.logo img { display: block; height: 40px; width: auto; }
.footer-logo { display: inline-block; }
.footer-logo img { display: block; height: 44px; width: auto; }
nav.top ul { display:flex; gap: 32px; list-style:none; align-items:center; }
nav.top ul a { color: var(--ink-soft); text-decoration:none; font-weight:500; font-size: 15px; transition: color .2s; }
nav.top ul a:hover { color: var(--teal); }
nav.top ul a.active { color: var(--ink); font-weight: 800; }
.nav-right { display:flex; align-items:center; gap: 20px; }
.nav-phone { color: var(--ink-soft); text-decoration:none; font-weight:600; font-size: 15px; display:flex; align-items:center; gap:6px; }

/* Dropdown nav */
nav.top ul li.has-menu { position: relative; }
nav.top ul li.has-menu > a::after {
  content: ''; display: inline-block; margin-left: 6px; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s;
}
nav.top ul li.has-menu:hover > a::after,
nav.top ul li.has-menu:focus-within > a::after { transform: translateY(0) rotate(225deg); }
.dropdown {
  position: absolute; top: 100%; left: -16px; padding-top: 14px;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .2s, transform .2s;
}
nav.top ul li.has-menu:hover .dropdown,
nav.top ul li.has-menu:focus-within .dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown-inner {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 16px;
  padding: 12px; min-width: 240px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 2px;
}
.dropdown-inner a {
  display: block; padding: 10px 14px; border-radius: 10px;
  color: var(--ink) !important; font-weight: 500 !important; font-size: 14px !important;
  text-decoration: none; transition: background .15s;
}
.dropdown-inner a:hover { background: var(--paper-warm); color: var(--ink) !important; }
.dropdown-inner a .desc { display: block; font-size: 12px; color: var(--ink-quiet); font-weight: 400; margin-top: 2px; }

/* ───── BUTTONS ───── */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding: 13px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all .25s cubic-bezier(.2,.8,.2,1); border: none; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--coral); color: #ffffff; box-shadow: 0 2px 0 rgba(44,72,99,.18); }
.btn-primary:hover { background: #2c4863; transform: translateY(-1px); box-shadow: 0 6px 16px -4px rgba(44,72,99,.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--teal-deep); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ───── Sections / headers ───── */
.section { padding: 100px 0; }
.section-header { max-width: 720px; margin-bottom: 56px; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: block; }
.section-h2 { font-size: clamp(36px, 4.5vw, 54px); line-height: 1.05; margin-bottom: 18px; }
.section-h2 .highlight { position: relative; display: inline-block; isolation: isolate; font-weight: 800; }
.display .highlight { position: relative; display: inline-block; isolation: isolate; font-weight: 800; }
.display .highlight::after,
.section-h2 .highlight::after {
  content:''; position:absolute; bottom: 6px; left: -4px; right: -4px; height: 22%;
  background: var(--accent-green); z-index: -1; transform: skewX(-8deg);
  opacity: .55;
}
.section-sub { font-size: 19px; color: var(--ink-soft); line-height: 1.5; }

/* ───── PAGE HERO (sub-pages) ───── */
.page-hero {
  padding: 80px 0 90px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.page-hero .photo-bg {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; height: 100%;
  background: url('assets/44-desk-hero.jpg') center center / cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 1;
  pointer-events: none; z-index: 0;
}
.page-hero::before, .page-hero::after { content: none; }
.page-hero .container { position: relative; z-index: 1; }
/* Eyebrow: remove the dot site-wide on sub-page heroes */
.eyebrow .dot { display: none !important; }
.crumbs {
  display: none;
}
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--teal); }
.crumbs .sep { opacity: .5; }
.eyebrow { display:inline-flex; align-items:center; gap:8px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin-bottom: 24px; }
.eyebrow .dot { width:6px; height:6px; background: var(--coral); border-radius: 50%; }
h1.page-h1 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 500; letter-spacing: -0.02em;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 1.0;
  margin-bottom: 24px; max-width: 18ch;
}
h1.page-h1 .highlight { position: relative; display: inline-block; isolation: isolate; font-weight: 800; }
h1.page-h1 .highlight::after {
  content:''; position:absolute; bottom: 6px; left: -4px; right: -4px; height: 22%;
  background: var(--accent-green); z-index: -1; transform: skewX(-8deg);
  opacity: .55;
}
.page-hero-sub { font-size: 20px; line-height: 1.5; color: var(--ink-soft); max-width: 620px; margin-bottom: 32px; }
.page-hero-sub b { color: var(--ink); font-weight: 600; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.page-hero-grid.single { grid-template-columns: 1fr; }

/* Hero illustration: video placeholder */
.video-frame {
  background: var(--ink) center/cover no-repeat; color: var(--paper); border-radius: 24px; aspect-ratio: 16/9;
  background-image: url('assets/video-thumbnail-placeholder.jpg');
  display: grid; place-items: center; position: relative; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(44,72,99,.35);
}
.video-frame::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,32,46,.18) 0%, rgba(20,32,46,.05) 38%, rgba(20,32,46,.55) 100%);
}
.video-frame .play {
  position: relative; z-index: 1;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--paper); display: grid; place-items: center;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.4);
  cursor: pointer;
  transition: transform .25s;
}
.video-frame .play:hover { transform: scale(1.07); }
.video-frame .play svg { width: 26px; height: 26px; color: var(--ink); margin-left: 4px; }
.video-frame .meta {
  position: absolute; bottom: 18px; left: 22px; right: 22px; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.video-frame .meta .cc { display:inline-flex; align-items:center; gap:6px; padding: 4px 10px; border-radius: 4px; border: 1px solid rgba(255,255,255,.3); }

/* ───── TRUST STRIP ───── */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 24px 36px; align-items: center;
  font-size: 14px; color: var(--ink-soft); font-weight: 600;
}
.trust-row .ti { display: inline-flex; align-items: center; gap: 10px; }
.trust-row .ti svg { width: 20px; height: 20px; color: var(--ink-soft); }

/* ───── FAQ ───── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--cream); border: 1px solid var(--rule); border-radius: 18px;
  padding: 0;
  transition: border-color .2s, box-shadow .2s;
}
.faq[open] { border-color: var(--teal); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: 'Manrope', system-ui, sans-serif; font-weight: 700; font-size: 19px;
  color: var(--ink); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--ink); display: grid; place-items: center;
  position: relative; transition: all .2s;
}
.faq .plus::before, .faq .plus::after {
  content: ''; position: absolute; background: var(--ink);
}
.faq .plus::before { width: 12px; height: 2px; }
.faq .plus::after { width: 2px; height: 12px; transition: transform .25s; }
.faq[open] .plus { background: var(--ink); }
.faq[open] .plus::before, .faq[open] .plus::after { background: var(--paper); }
.faq[open] .plus::after { transform: rotate(90deg); }
.faq-body { padding: 0 28px 28px; font-size: 17px; color: var(--ink-soft); line-height: 1.6; }
.faq-body p + p { margin-top: 12px; }
.faq-body b, .faq-body strong { color: var(--ink); }

/* ───── LEAD CAPTURE (global, before footer) ───── */
.cta-final { background: var(--ink); color: var(--paper); padding: 120px 0; }
.cta-final-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-final h2 { font-family: 'Manrope', system-ui, sans-serif; font-size: clamp(40px, 5vw, 64px); line-height: 1.02; margin-bottom: 24px; font-weight: 500; letter-spacing: -.02em; }
.cta-final h2 .em { color: var(--gold); font-weight: 800; }
.cta-final h2 .highlight { position: relative; display: inline-block; isolation: isolate; font-weight: 800; color: var(--paper); }
.cta-final h2 .highlight::after {
  content:''; position:absolute; bottom: 6px; left: -4px; right: -4px; height: 26%;
  background: var(--blue); z-index: -1; transform: skewX(-8deg); opacity: .9;
}
.cta-final p { font-size: 19px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-final .checklist { list-style:none; padding:0; margin: 32px 0; }
.cta-final .checklist li { display:flex; align-items:flex-start; gap:12px; padding: 10px 0; font-size: 16px; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.12); }
.cta-final .checklist li:last-child { border-bottom: none; }
.cta-final .checklist svg { width: 22px; height: 22px; color: var(--accent-green); flex-shrink:0; margin-top: 2px; }
.cta-final .checklist img.check { width: 24px; height: 24px; flex-shrink:0; margin-top: 1px; }
.cta-final .phone-cta {
  display:flex; align-items:center; gap:14px; padding: 24px;
  background: rgba(255,255,255,.06); border-radius: 16px; border: 1px solid rgba(255,255,255,.1);
  margin-top: 28px;
}
.cta-final .phone-cta .icon { width: 48px; height: 48px; background: var(--coral); border-radius: 12px; display:grid; place-items:center; flex-shrink:0; }
.cta-final .phone-cta .icon svg { width: 22px; height: 22px; color: var(--paper); }
.cta-final .phone-cta a { color: var(--paper); text-decoration: none; }
.cta-final .phone-cta .num { font-family: 'Manrope', system-ui, sans-serif; font-size: 28px; font-weight: 700; display:block; }
.cta-final .phone-cta .sub { font-size: 13px; color: rgba(255,255,255,.6); }

.form-card { background: var(--paper); color: var(--ink); border-radius: 28px; padding: 40px; }
.form-card h3 { font-family: 'Manrope', system-ui, sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.form-card .sub { font-size: 14px; color: var(--ink-quiet); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display:block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--rule); border-radius: 10px; font-size: 15px; font-family: inherit; background: var(--cream); color: var(--ink); transition: all .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--ink); background: var(--paper); }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-row { margin-top: 20px; }
.submit-row .btn { width: 100%; padding: 16px; font-size: 16px; }
.disclaimer { font-size: 11px; color: var(--ink-quiet); line-height: 1.5; margin-top: 14px; }

/* ───── FOOTER ───── */
footer { background: var(--ink); color: var(--paper); padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,.1); }
.foot-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.foot-col h5 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-col ul { list-style:none; padding:0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 15px; transition: color .2s; }
.foot-col a:hover { color: var(--paper); }
.foot-tagline { font-family: 'Manrope', system-ui, sans-serif; font-size: 22px; line-height: 1.3; color: var(--paper); margin: 16px 0 24px; max-width: 320px; font-weight: 600; letter-spacing: -.01em; }
.foot-contact { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; }
.foot-contact a { color: var(--paper); text-decoration: none; font-weight: 600; }
.foot-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; align-items:center; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 16px; }
.foot-bottom a { color: rgba(255,255,255,.7); margin-left: 24px; text-decoration: none; }

/* Reusable: numbered steps */
.steps { display:grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.steps.four { grid-template-columns: repeat(4, 1fr); }
.steps.five { grid-template-columns: repeat(5, 1fr); }
.step { position: relative; padding-top: 60px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: 'Manrope', system-ui, sans-serif; font-size: 56px; font-weight: 700; color: var(--coral);
  line-height: 1;
}
.steps.five .step::before, .steps.four .step::before { font-size: 44px; }
.step h3 { font-family: 'Manrope', system-ui, sans-serif; font-size: 26px; font-weight: 700; line-height: 1.1; margin-bottom: 14px; }
.step p { font-size: 16px; color: var(--ink-soft); line-height: 1.55; }

/* Reusable: pills */
.pill { display:inline-flex; align-items:center; padding: 6px 14px; background: var(--paper); border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--ink-soft); border: 1px solid var(--rule); }
.pill.persona { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pill.teal { background: var(--teal); color: var(--paper); border-color: var(--teal); }
.pill.green { background: #e3f4e6; color: #0e7a2a; border-color: #c2e5c8; }

/* Chips (service/product lists) */
.chip-row { display:flex; flex-wrap:wrap; gap: 12px; }
.chip { display:inline-flex; align-items:center; padding: 11px 18px; background: var(--cream); border:1px solid var(--rule); border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--ink); }

/* Reusable: cards */
.card { background: var(--cream); border-radius: 20px; padding: 32px; border: 1px solid var(--rule); transition: all .25s; }
.card.hover:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-lg); }
.card h3 { font-family: 'Manrope', system-ui, sans-serif; font-size: 22px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; color: var(--ink); letter-spacing: -.01em; }
.card .body { font-size: 16px; color: var(--ink-soft); line-height: 1.55; }
.card .body p + p { margin-top: 10px; }
.card .one-liner { font-size: 14px; color: var(--teal); font-weight: 600; margin-bottom: 10px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Big stat blocks */
.big-stat { padding: 28px 0; border-top: 2px solid var(--ink); }
.big-stat .n { font-family: 'Manrope', system-ui, sans-serif; font-weight: 800; font-size: clamp(43px, 4.5vw, 65px); line-height: 1; color: var(--ink); margin-bottom: 14px; letter-spacing: -.02em; }
.big-stat .n sup { font-size: .55em; vertical-align: super; font-weight: 700; }
.big-stat .l { font-size: 15px; color: var(--ink-soft); line-height: 1.4; max-width: 220px; }

/* Long-form body */
.longform p { font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 16px; max-width: 70ch; }
.longform p b { color: var(--ink); font-weight: 600; }
.longform h2 { font-family: 'Manrope', system-ui, sans-serif; font-size: clamp(32px, 4vw, 44px); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin: 56px 0 20px; color: var(--ink); }
.longform h2:first-child { margin-top: 0; }
.longform h2 .em { color: var(--coral); }

/* Pull quote callout */
.callout {
  background: var(--ink); color: var(--paper); padding: 36px 40px; border-radius: 20px;
  margin: 32px 0; font-family: 'Manrope', system-ui, sans-serif;
  font-size: 22px; line-height: 1.35; font-weight: 600; letter-spacing: -.01em;
  max-width: 70ch;
}
.callout .who { display: block; margin-top: 18px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ───── Persona page: sticky illustration + narrative ───── */
.legacy-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px;
  align-items: start; max-width: 1180px; margin: 0 auto; padding: 0 32px;
}
.legacy-art-col { position: relative; align-self: stretch; }
.legacy-art {
  position: sticky; top: 120px;
  width: 100%; max-width: 440px; height: auto; display: block; margin: 0 auto;
}
.legacy-content > :first-child { margin-top: 0; }
.legacy-art.scroll-art {
  opacity: 0; transform: translateY(28px) scale(.94);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.legacy-art.scroll-art.in-view { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .legacy-art.scroll-art { opacity: 1; transform: none; transition: none; }
}

/* Numbered steps in blue circles (no leading zeros) */
.steps.five .step { padding-top: 72px; }
.steps.five .step::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 24px; font-weight: 800; line-height: 1;
}

/* Swoop background section (mirrors homepage coverage) */
.whitelabel-section { position: relative; overflow: hidden; }
.whitelabel-section .swoop-bg {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%) scaleX(-1);
  width: 100%; height: 100%;
  background: url('assets/44-swoop.jpg') center center / cover no-repeat;
  mix-blend-mode: multiply; opacity: .49;
  pointer-events: none; z-index: 0;
}
.whitelabel-section .container { position: relative; z-index: 1; }
@media (max-width: 1024px) {
  .legacy-grid { grid-template-columns: 1fr; gap: 28px; }
  .legacy-art-col { align-self: auto; }
  .legacy-art { position: static; max-width: 300px; }
}

/* Tier divider band */
.tier-band {
  display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start;
  padding-top: 64px; border-top: 2px solid var(--rule);
  margin-bottom: 24px;
}
.tier-band .tier-num {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal);
}
.tier-band .tier-num .big {
  display: block; font-size: 58px; line-height: 1; color: var(--ink);
  font-weight: 800; letter-spacing: -.04em; margin-top: 10px;
}
.tier-band h2 { font-family: 'Manrope', system-ui, sans-serif; font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); margin-bottom: 16px; }
.tier-band .lede { font-size: 19px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 32px; max-width: 70ch; }

/* Filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filter-btn {
  font-family: inherit; cursor: pointer;
  padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: transparent; color: var(--ink-soft); border: 1.5px solid var(--rule);
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Success story card */
.success-card {
  background: var(--cream); border: 1px solid var(--rule); border-radius: 24px;
  padding: 40px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start;
}
.success-card .meta-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.success-card .result {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 800;
  line-height: .98; letter-spacing: -.02em; color: var(--ink); margin-bottom: 20px;
}
.success-card .result .accent { color: var(--coral); }
.success-card .situation { font-size: 17px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.success-card .situation b { color: var(--ink); font-weight: 600; }
.success-card h4 { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin: 18px 0 8px; }
.success-card ul.results { list-style: none; padding: 0; margin-bottom: 20px; }
.success-card ul.results li {
  position: relative; padding-left: 24px; margin-bottom: 8px;
  font-size: 16px; color: var(--ink); line-height: 1.45;
}
.success-card ul.results li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 12px; height: 8px; border-left: 2.5px solid var(--accent-green); border-bottom: 2.5px solid var(--accent-green);
  transform: rotate(-45deg);
}
.success-card .quote {
  font-style: italic; font-size: 16px; color: var(--ink-soft); line-height: 1.55;
  border-left: 3px solid var(--teal); padding-left: 16px; margin: 20px 0;
}
.success-card .role { font-size: 13px; color: var(--ink-quiet); font-weight: 600; margin-top: 8px; }
.success-card .chart-side {
  background: var(--ink); color: var(--paper); border-radius: 18px; padding: 32px;
  align-self: start; display: flex; flex-direction: column; gap: 24px;
}
.success-card .chart-side .label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.success-card .chart-side .title { font-family: 'Manrope', system-ui, sans-serif; font-size: 24px; font-weight: 700; line-height: 1.1; margin-bottom: 24px; }
.success-card .chart-side .big-num { font-family: 'Manrope', system-ui, sans-serif; font-size: clamp(65px, 7.2vw, 94px); font-weight: 800; line-height: .9; letter-spacing: -.03em; margin-top: 16px; }
.success-card .chart-side .big-num .accent { color: #a2d29c; }
.success-card .chart-side .micro { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 8px; }

.success-card.flipped { grid-template-columns: 1.2fr 1fr; }
.success-card.flipped .chart-side { order: 2; }

/* Service card with icon */
.svc-card { background: var(--cream); border: 1px solid var(--rule); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: all .2s; }
.svc-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-card .svc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--paper-warm); display: grid; place-items: center; color: var(--teal); }
.svc-card .svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 { font-family: 'Manrope', system-ui, sans-serif; font-size: 18px; font-weight: 700; line-height: 1.2; color: var(--ink); letter-spacing: -.005em; }
.svc-card .lede { font-size: 14px; font-weight: 600; color: var(--teal); }
.svc-card .body { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* Marquee (homepage) */
.statement {
  background: var(--ink); color: var(--paper); padding: 32px 0;
  overflow: hidden; position: relative;
}
.marquee { display:flex; gap: 56px; white-space: nowrap; animation: scroll 60s linear infinite; align-items:center; }
.marquee .item { display:flex; align-items:center; gap:20px; font-family: 'Manrope', system-ui, sans-serif; font-size: 32px; font-weight: 500; flex-shrink:0; }
.marquee .face { width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0; object-fit: cover; display:block; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Inline list with icons */
.icon-list { display: flex; flex-direction: column; gap: 14px; }
.icon-list li {
  display: flex; align-items: flex-start; gap: 14px;
  list-style: none;
  font-size: 17px; line-height: 1.5; color: var(--ink);
}
.icon-list li svg {
  flex-shrink: 0; width: 22px; height: 22px; color: var(--accent-green);
  margin-top: 2px;
}
.icon-list li b { font-weight: 600; }
.icon-list li .gray { color: var(--ink-soft); font-weight: 400; display: block; margin-top: 2px; font-size: 15px; }

/* Section title splits */
.split-h { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 64px; }

/* Guarantee band */
.guarantee {
  background: var(--teal); padding: 96px 0;
  border-top: none; border-bottom: none;
  color: var(--paper);
}
.guarantee .inner {
  max-width: 880px; margin: 0 auto; padding: 0 32px;
  text-align: center;
}
.guarantee p {
  font-family: 'Manrope', system-ui, sans-serif; font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600; line-height: 1.25; color: var(--paper); letter-spacing: -.015em;
  max-width: 34ch; margin: 0 auto;
}
.guarantee p b { color: var(--paper); font-weight: 800; }
.guarantee .fine { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 24px; font-weight: 400; max-width: 60ch; margin-left: auto; margin-right: auto; }

/* Mini header (Book a Demo page) */
.mini-header {
  position: sticky; top: 0; z-index: 50; background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.mini-header .wrap { max-width: 1320px; margin: 0 auto; padding: 18px 32px; display: flex; justify-content: space-between; align-items: center; }

/* ───── NAV BURGER (tablet/mobile) ───── */
.nav-burger {
  display: none;
  background: transparent; border: none; cursor: pointer; padding: 0;
  width: 44px; height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  position: relative;
  font-family: inherit;
}
.nav-burger:hover { background: rgba(44,72,99,.06); }
.nav-burger .bar {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px;
  position: relative;
  transition: background .15s;
}
.nav-burger .bar::before,
.nav-burger .bar::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--ink); border-radius: 1px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.nav-burger .bar::before { top: -7px; }
.nav-burger .bar::after  { top:  7px; }
nav.top.nav-open .nav-burger .bar { background: transparent; }
nav.top.nav-open .nav-burger .bar::before { transform: translateY(7px) rotate(45deg); }
nav.top.nav-open .nav-burger .bar::after  { transform: translateY(-7px) rotate(-45deg); }

/* ───── BLOG ───── */
.post-meta { display:flex; flex-wrap:wrap; gap: 8px 16px; align-items:center; font-size: 14px; color: var(--ink-quiet); font-weight: 600; }
.post-meta .sep { opacity:.45; }
.ph-image {
  position: relative; border-radius: 20px; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(98,154,208,.10) 0 14px, rgba(98,154,208,.04) 14px 28px),
    var(--cream);
  border: 1px solid var(--rule);
  display: grid; place-items: center;
}
.ph-image span {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-quiet); background: var(--paper);
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--rule);
}
.blog-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display:flex; flex-direction:column; background: var(--cream); border:1px solid var(--rule); border-radius: 20px; overflow:hidden; transition: all .25s; text-decoration:none; color: inherit; }
.post-card.hover:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-lg); }
.post-card .thumb { aspect-ratio: 16/10; border-radius: 0; border: none; }
.post-card .pc-body { padding: 24px 26px 28px; display:flex; flex-direction:column; gap: 12px; }
.post-card .pc-tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.post-card h3 { font-family: 'Manrope', system-ui, sans-serif; font-size: 22px; font-weight: 700; line-height: 1.2; color: var(--ink); letter-spacing: -.01em; }
.post-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.post-card .pc-readmore { font-size: 14px; font-weight: 700; color: var(--ink); margin-top: auto; }
/* Featured horizontal post */
.post-feature { display:grid; grid-template-columns: 1.05fr .95fr; gap: 0; align-items:stretch; background: var(--cream); border:1px solid var(--rule); border-radius: 24px; overflow:hidden; text-decoration:none; color:inherit; transition: all .25s; }
.post-feature.hover:hover { border-color: var(--green); box-shadow: var(--shadow-lg); }
.post-feature .thumb { min-height: 320px; }
.post-feature .pf-body { padding: 48px; display:flex; flex-direction:column; gap: 16px; justify-content:center; }
.post-feature .pf-tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.post-feature h2 { font-family: 'Manrope', system-ui, sans-serif; font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
.post-feature p { font-size: 17px; color: var(--ink-soft); line-height: 1.55; }
/* Article body extras */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-figure { margin: 32px 0; }
.article-figure .ph-image { aspect-ratio: 16/9; }
.article-back { display:inline-flex; align-items:center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--ink-soft); text-decoration:none; margin-bottom: 28px; }
.article-back:hover { color: var(--teal); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .page-hero-grid, .cta-final-grid, .success-card, .success-card.flipped, .split-h { grid-template-columns: 1fr; gap: 40px; }
  .post-feature { grid-template-columns: 1fr; }
  .post-feature .thumb { min-height: 220px; }
  .post-feature .pf-body { padding: 36px 28px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4, .steps, .steps.four, .steps.five { grid-template-columns: 1fr 1fr; }
  nav.top .wrap { padding: 14px 24px; position: relative; }
  nav.top ul {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 12px 24px 20px;
    flex-direction: column; gap: 0;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
  }
  nav.top.nav-open ul { display: flex; }
  nav.top ul li { width: 100%; }
  nav.top ul a {
    display: block; padding: 14px 4px; font-size: 17px; font-weight: 600;
    border-bottom: 1px solid var(--rule);
    color: var(--ink);
  }
  nav.top ul li:last-child a { border-bottom: none; }
  nav.top ul li.has-menu > a::after { display: none; }
  /* Show all dropdown items in the drawer */
  .dropdown {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    padding-top: 0; margin: -8px 0 8px;
  }
  .dropdown-inner {
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 4px 12px; min-width: 0; gap: 0;
  }
  .dropdown-inner a {
    padding: 10px 8px !important; font-size: 14px !important;
    border-bottom: none !important;
    color: var(--ink-soft) !important;
  }
  .dropdown-inner a:hover { background: transparent !important; color: var(--ink) !important; }
  .dropdown-inner a .desc { display: none; }

  /* Phone: icon only on tablet+ */
  .nav-phone {
    width: 44px; height: 44px; padding: 0;
    justify-content: center; align-items: center;
    border-radius: 10px; gap: 0;
    color: var(--ink);
  }
  .nav-phone:hover { background: rgba(44,72,99,.06); }
  .nav-phone svg { width: 20px; height: 20px; }
  .nav-phone .phone-label { display: none; }

  .nav-right { gap: 10px; }
  .nav-burger { display: inline-flex; order: -1; }

  .tier-band { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section, .cta-final, .page-hero { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4, .steps, .steps.four, .steps.five { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; align-items:flex-start; }
  .foot-bottom > div:last-child a { margin-left: 0; margin-right: 20px; }
  .form-card { padding: 28px; }
  .success-card { padding: 28px; }
  .guarantee .inner { text-align: center; }
  .guarantee .badge { margin: 0 auto; }
  nav.top .wrap { padding: 12px 20px; }
  /* Hide the Book a Demo button on small screens — phone icon covers the call-to-call action */
  nav.top .nav-right .btn-primary { display: none; }
  /* Mini-header (book-a-demo.html): icon-only phone */
  .mini-header .nav-phone { width: 44px; height: 44px; padding: 0; gap: 0; }
  .mini-header .nav-phone .phone-label { display: none; }
}
