/* =====================================================================
   ASINLYTICS — Design System
   Insights | Strategy | Growth
   Palette: Navy #0F2E5D · Orange #F6891F · Charcoal #4A4A4A · Grey #F4F6F8
   Type: Montserrat (headings) · Inter (body)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy: #0F2E5D;
  --navy-800: #0c264c;
  --navy-900: #081b38;
  --navy-tint: #17407a;
  --orange: #F6891F;
  --orange-600: #e0770f;
  --orange-tint: #fdf0e2;
  --charcoal: #4A4A4A;
  --ink: #24303f;
  --grey: #F4F6F8;
  --grey-200: #e7ecf2;
  --line: #e2e8f1;
  --white: #FFFFFF;
  --muted: #6b7787;

  --maxw: 1180px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(15,46,93,.06), 0 1px 3px rgba(15,46,93,.05);
  --shadow: 0 10px 30px -12px rgba(15,46,93,.18);
  --shadow-lg: 0 24px 60px -24px rgba(15,46,93,.30);
  --ease: cubic-bezier(.2,.7,.2,1);
  --ff-head: 'Montserrat', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--ff-head); color: var(--navy); line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--grey { background: var(--grey); }
.section--navy { background: var(--navy); color: #d7e0ee; }
.section--navy h1,.section--navy h2,.section--navy h3,.section--navy h4 { color: #fff; }
.center { text-align: center; }
.mx-narrow { max-width: 760px; margin-inline: auto; }
.grid { display: grid; gap: 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
.section--navy .eyebrow { color: var(--orange); }

h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); font-weight: 800; }
h2.section-title { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; }
.lead { font-size: 1.12rem; color: var(--charcoal); }
.section--navy .lead { color: #c4d0e4; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 600; font-size: .96rem;
  padding: 14px 26px; border-radius: 10px; border: 2px solid transparent;
  transition: transform .18s var(--ease), background .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px -8px rgba(246,137,31,.6); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--white { background:#fff; color: var(--navy); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-head); font-weight: 600; font-size: .92rem; color: var(--orange);
}
.link-cta svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-cta:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text b { font-family: var(--ff-head); font-weight: 800; font-size: 1.25rem; letter-spacing: .02em; color: var(--navy); }
.brand__text small { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; font-weight: 600; }
.mk-primary { fill: var(--navy); }
.mk-accent { fill: var(--orange); }
.mk-stroke { stroke: var(--navy); }
.footer .mk-primary, .brand--light .mk-primary { fill: #fff; }
.footer .mk-stroke, .brand--light .mk-stroke { stroke: #fff; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--ink);
  padding: 9px 13px; border-radius: 8px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--navy); background: var(--grey); }
.nav a.active { color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--navy); }

/* dropdown */
.has-drop { position: relative; }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 244px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.has-drop:hover .drop-menu, .has-drop:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a { display: block; padding: 9px 12px; font-size: .86rem; }
.drop-menu a:hover { background: var(--grey); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: #d7e0ee; overflow: hidden; }
.hero::before {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 500px at 82% -10%, rgba(246,137,31,.16), transparent 60%),
    radial-gradient(900px 600px at 0% 110%, rgba(23,64,122,.55), transparent 55%);
}
.hero__grid-bg {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 85%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 85%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 92px 0 100px; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--orange); }
.hero__sub { font-size: 1.14rem; color: #c4d0e4; margin-top: 20px; max-width: 560px; }
.hero .btn-row { margin-top: 32px; }
.hero__trust { margin-top: 26px; display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #9fb1cc; }
.hero__trust svg { width: 18px; height: 18px; flex: none; }
.hero__badges { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 30px; }
.hero__badges span {
  font-family: var(--ff-head); font-weight: 600; font-size: .74rem; letter-spacing:.04em;
  color:#cdd9ec; border:1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04);
  padding: 6px 12px; border-radius: 100px;
}

/* dashboard visual card */
.dashcard {
  position: relative; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px; color: var(--charcoal);
  border: 1px solid rgba(255,255,255,.6);
}
.dashcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dashcard__title { font-family: var(--ff-head); font-weight: 700; color: var(--navy); font-size: .95rem; }
.dashcard__dot { width: 9px; height: 9px; border-radius: 50%; }
.dashcard__legend { display: flex; gap: 12px; }
.dashcard__legend i { display:flex; align-items:center; gap:6px; font-size:.72rem; color: var(--muted); font-style: normal; }
.dashcard__legend b { width: 9px; height: 9px; border-radius: 3px; display:inline-block; }
.kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.kpi { background: var(--grey); border-radius: 10px; padding: 12px 12px; }
.kpi small { font-size: .68rem; text-transform: uppercase; letter-spacing:.05em; color: var(--muted); font-weight: 600; }
.kpi b { display:block; font-family: var(--ff-head); font-size: 1.35rem; color: var(--navy); font-weight: 800; margin-top: 2px; }
.kpi .up { color: #1c9d63; font-size: .72rem; font-weight: 600; }
.kpi .down { color: #d1495b; font-size: .72rem; font-weight: 600; }
.dashcard__chart { background: var(--grey); border-radius: 10px; padding: 14px; }
.floating-chip {
  position: absolute; background: #fff; border-radius: 12px; box-shadow: var(--shadow);
  padding: 10px 14px; display:flex; align-items:center; gap: 10px; font-size: .82rem;
  font-weight: 600; color: var(--navy); font-family: var(--ff-head); border: 1px solid var(--line);
}
.floating-chip svg { width: 20px; height: 20px; }
.floating-chip--tl { top: -18px; left: -22px; }
.floating-chip--br { bottom: -20px; right: -18px; }
.floating-chip .ic { width: 30px; height: 30px; border-radius: 8px; display:grid; place-items:center; }
.chip-green { background: #e6f6ee; color: #1c9d63; }
.chip-orange { background: var(--orange-tint); color: var(--orange); }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 22px; }
.cards-2 { grid-template-columns: repeat(2,1fr); }
.cards-3 { grid-template-columns: repeat(3,1fr); }
.cards-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.card p { font-size: .95rem; color: var(--charcoal); }
.card__icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; }
.card .link-cta { margin-top: 16px; }

/* problem card (compact) */
.pcard { background: var(--grey); border: 1px solid var(--line); border-radius: 12px; padding: 20px; display:flex; gap:14px; align-items:flex-start; transition: transform .2s var(--ease), box-shadow .2s; }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pcard__ic { width: 42px; height: 42px; border-radius: 10px; background:#fff; border:1px solid var(--line); display:grid; place-items:center; flex:none; position: relative; }
.pcard__ic::after { content:""; position:absolute; left: 10px; right: 10px; bottom: -1px; height: 3px; background: var(--orange); border-radius: 3px; }
.pcard__ic svg { width: 22px; height: 22px; stroke: var(--navy); fill:none; }
.pcard h4 { font-size: 1rem; margin-bottom: 3px; }
.pcard p { font-size: .82rem; color: var(--muted); }

/* ---------- Who we help chips ---------- */
.helps { display:flex; flex-wrap:wrap; gap: 12px; }
.help-chip {
  display:inline-flex; align-items:center; gap: 10px; font-family: var(--ff-head);
  font-weight: 600; font-size: .92rem; color:#e7eefb;
  border:1px solid rgba(255,255,255,.15); border-radius: 100px; padding: 11px 18px;
  background: rgba(255,255,255,.04);
}
.help-chip::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* ---------- Process timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; position: relative; }
.step { position: relative; }
.step__num {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy); color:#fff;
  font-family: var(--ff-head); font-weight: 800; font-size: 1.3rem; display:grid; place-items:center;
  margin-bottom: 18px; position: relative; z-index: 2;
}
.step:nth-child(2) .step__num,.step:nth-child(4) .step__num { }
.step__num span { color: var(--orange); }
.steps::before {
  content:""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--grey-200) 0 10px, transparent 10px 18px);
  z-index: 1;
}
.step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--charcoal); }

/* ---------- Proof icon blocks ---------- */
.proof-grid { display:grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.proof-block {
  background: var(--grey); border:1px solid var(--line); border-radius: 12px; padding: 20px 16px;
  text-align: center; transition: transform .2s var(--ease);
}
.proof-block:hover { transform: translateY(-3px); }
.proof-block__ic { width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 12px; background:#fff; border:1px solid var(--line); display:grid; place-items:center; }
.proof-block__ic svg { width: 24px; height: 24px; stroke: var(--navy); fill:none; }
.proof-block span { font-family: var(--ff-head); font-weight: 600; font-size: .85rem; color: var(--navy); }

/* ---------- Packages ---------- */
.pkgs { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: stretch; }
.pkg {
  display:flex; flex-direction: column; background:#fff; border:1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px; transition: transform .2s var(--ease), box-shadow .2s;
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg--feature { border: 2px solid var(--orange); box-shadow: var(--shadow); position: relative; }
.pkg--feature::before {
  content:"Most Requested"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color:#fff; font-family: var(--ff-head); font-weight: 700; font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; white-space: nowrap;
}
.pkg__name { font-family: var(--ff-head); font-weight: 800; font-size: 1.14rem; color: var(--navy); }
.pkg__best { font-size: .82rem; color: var(--muted); margin: 8px 0 18px; }
.pkg__best b { color: var(--charcoal); font-weight: 600; }
.pkg ul.ticks { display:grid; gap: 10px; margin-bottom: 22px; }
.pkg ul.ticks li { display:flex; gap: 10px; font-size: .9rem; align-items:flex-start; }
.pkg ul.ticks li svg { width: 18px; height: 18px; flex:none; margin-top: 2px; stroke: var(--orange); fill:none; }
.pkg .btn { margin-top: auto; width: 100%; }

/* ---------- Case studies ---------- */
.case-card { display:flex; flex-direction: column; background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s; }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-card__banner { height: 8px; background: linear-gradient(90deg, var(--navy), var(--navy-tint)); }
.case-card__banner.b2 { background: linear-gradient(90deg, var(--orange), var(--orange-600)); }
.case-card__body { padding: 24px; display:flex; flex-direction: column; flex: 1; }
.case-tag { font-family: var(--ff-head); font-weight: 700; font-size: .7rem; letter-spacing:.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.case-card h3 { font-size: 1.12rem; margin-bottom: 12px; }
.case-mini { display:grid; gap: 8px; margin-bottom: 18px; }
.case-mini div { font-size: .86rem; }
.case-mini b { color: var(--navy); font-family: var(--ff-head); font-weight: 600; }
.case-card .link-cta { margin-top: auto; }

/* ---------- Lead magnet ---------- */
.leadmag { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.checklist-mock {
  background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 28px; border:1px solid var(--line);
}
.checklist-mock__head { display:flex; align-items:center; gap: 12px; padding-bottom: 16px; border-bottom: 2px solid var(--grey); margin-bottom: 18px; }
.checklist-mock__head .cm-badge { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); display:grid; place-items:center; }
.checklist-mock__head .cm-badge svg { width: 22px; height: 22px; stroke: var(--orange); fill:none; }
.checklist-mock__head b { font-family: var(--ff-head); color: var(--navy); font-size: 1rem; }
.checklist-mock__head small { display:block; color: var(--muted); font-size: .75rem; }
.checklist-mock ul { display:grid; gap: 12px; }
.checklist-mock li { display:flex; align-items:center; gap: 12px; font-size: .9rem; color: var(--charcoal); }
.checklist-mock li .box { width: 20px; height: 20px; border-radius: 6px; background: var(--orange-tint); display:grid; place-items:center; flex:none; }
.checklist-mock li .box svg { width: 13px; height: 13px; stroke: var(--orange); fill:none; }
.checklist-mock li.dim { color: var(--muted); }
.checklist-mock li.dim .box { background: var(--grey); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display:grid; gap: 12px; }
.faq__item { border:1px solid var(--line); border-radius: 12px; background:#fff; overflow:hidden; }
.faq__q {
  width: 100%; text-align: left; background:none; border:none; padding: 20px 22px;
  font-family: var(--ff-head); font-weight: 600; font-size: 1.02rem; color: var(--navy);
  display:flex; justify-content: space-between; align-items:center; gap: 16px;
}
.faq__q .ficon { width: 24px; height: 24px; flex:none; position: relative; transition: transform .25s var(--ease); }
.faq__q .ficon::before,.faq__q .ficon::after { content:""; position:absolute; background: var(--orange); border-radius: 2px; }
.faq__q .ficon::before { top: 11px; left: 3px; right: 3px; height: 2.5px; }
.faq__q .ficon::after { left: 11px; top: 3px; bottom: 3px; width: 2.5px; transition: transform .25s var(--ease); }
.faq__item.open .faq__q .ficon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { padding: 0 22px 20px; font-size: .95rem; color: var(--charcoal); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--navy); overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 300px at 85% 20%, rgba(246,137,31,.18), transparent 60%); }
.cta-band__inner { position: relative; text-align: center; padding: 72px 0; }
.cta-band h2 { color:#fff; margin-bottom: 14px; }
.cta-band p { color:#c4d0e4; max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Disclaimer note ---------- */
.disclaimer {
  border-left: 4px solid var(--orange); background: var(--orange-tint);
  padding: 16px 20px; border-radius: 0 10px 10px 0; font-size: .9rem; color: var(--charcoal);
}
.disclaimer b { color: var(--navy); font-family: var(--ff-head); }

/* ---------- Consent checkbox (forms) ---------- */
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 8px; }
.consent input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--navy); }
.consent label { font-size: .82rem; color: var(--muted); font-family: var(--ff-body); font-weight: 400; line-height: 1.5; }
.consent label .req { color: var(--orange); }
.consent a { color: var(--orange); font-weight: 600; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  background: var(--navy); color: #d7e0ee; border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: 18px 20px;
  display: flex; gap: 18px 24px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; max-width: 1040px; margin: 0 auto;
  animation: cb-in .3s var(--ease);
}
@keyframes cb-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.cookie-banner p { font-size: .84rem; color: #c4d0e4; margin: 0; flex: 1; min-width: 240px; line-height: 1.55; }
.cookie-banner a { color: var(--orange); font-weight: 600; }
.cookie-banner .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner.hide { display: none; }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; left: 10px; right: 10px; bottom: 10px; }
  .cookie-banner .cb-actions .btn { flex: 1; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--navy); color:#cbd6e8; position: relative; overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 380px at 88% -20%, rgba(246,137,31,.16), transparent 60%); }
.page-hero__grid { position:absolute; inset:0; opacity:.4; background-image: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(100% 100% at 70% 0%,#000 30%,transparent 80%); mask-image: radial-gradient(100% 100% at 70% 0%,#000 30%,transparent 80%); }
.page-hero__inner { position: relative; padding: 66px 0 60px; max-width: 780px; }
.page-hero h1 { color:#fff; }
.page-hero p { color:#c4d0e4; font-size: 1.1rem; margin-top: 16px; max-width: 620px; }
.page-hero .btn-row { margin-top: 28px; }
.breadcrumb { display:flex; gap: 8px; align-items:center; font-size: .82rem; color:#94a6c4; margin-bottom: 18px; font-family: var(--ff-head); }
.breadcrumb a { color:#cbd6e8; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color:#5f7297; }

/* ---------- Feature list (service pages) ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--wide-left { grid-template-columns: 1.1fr .9fr; }
.flist { display:grid; gap: 14px; }
.flist li { display:flex; gap: 14px; align-items:flex-start; }
.flist li .fi { width: 34px; height: 34px; border-radius: 9px; background: var(--navy); display:grid; place-items:center; flex:none; }
.flist li .fi svg { width: 18px; height: 18px; stroke: var(--orange); fill:none; }
.flist li b { display:block; font-family: var(--ff-head); color: var(--navy); font-size: .98rem; margin-bottom: 2px; }
.flist li p { font-size: .9rem; color: var(--charcoal); margin: 0; }

.panel { background: var(--grey); border:1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.panel--navy { background: var(--navy); color:#cdd9ec; border:none; }
.panel--navy h3 { color:#fff; }

.tag-list { display:flex; flex-wrap:wrap; gap: 10px; }
.tag-list span { font-family: var(--ff-head); font-weight: 600; font-size: .82rem; color: var(--navy); background:#fff; border:1px solid var(--line); border-radius: 100px; padding: 8px 15px; }
.section--grey .tag-list span { background:#fff; }

/* stat strip */
.stat-strip { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align:center; }
.stat b { display:block; font-family: var(--ff-head); font-weight: 800; font-size: 2.1rem; color: var(--orange); }
.stat span { font-size: .88rem; color: #c4d0e4; }
.section:not(.section--navy) .stat span { color: var(--muted); }
.section:not(.section--navy) .stat b { color: var(--navy); }

/* ---------- Forms ---------- */
.form-wrap { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px; }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display:flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-head); font-weight: 600; font-size: .84rem; color: var(--navy); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fdfdfe; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,46,93,.08); }
.field input[type=file] { padding: 9px; background:#fff; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.form-success { display:none; background:#e6f6ee; border:1px solid #b8e3cc; color:#12704a; border-radius: 12px; padding: 18px 20px; font-weight: 500; }
.form-success.show { display:block; }

/* contact info list */
.contact-list { display:grid; gap: 18px; }
.contact-item { display:flex; gap: 16px; align-items:flex-start; }
.contact-item .ci-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); display:grid; place-items:center; flex:none; }
.contact-item .ci-ic svg { width: 22px; height: 22px; stroke: var(--orange); fill:none; }
.contact-item b { font-family: var(--ff-head); color: var(--navy); display:block; font-size: .95rem; }
.contact-item span, .contact-item a { color: var(--charcoal); font-size: .92rem; }
.contact-item a:hover { color: var(--orange); }

/* resources / blog */
.post-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; transition: transform .2s var(--ease), box-shadow .2s; display:flex; flex-direction:column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__top { height: 130px; background: var(--navy); position:relative; overflow:hidden; display:grid; place-items:center; }
.post-card__top.alt { background: linear-gradient(135deg, var(--navy), var(--navy-tint)); }
.post-card__top svg { width: 54px; height: 54px; stroke: var(--orange); fill:none; opacity:.9; }
.post-card__body { padding: 22px; display:flex; flex-direction:column; flex:1; }
.post-card__cat { font-family: var(--ff-head); font-weight:700; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color: var(--orange); margin-bottom: 8px; }
.post-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.post-card p { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.post-card .link-cta { margin-top:auto; }

/* value/about */
.value-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value { padding: 24px; border:1px solid var(--line); border-radius: 12px; background:#fff; }
.value__ic { width: 46px; height:46px; border-radius: 12px; background: var(--orange-tint); display:grid; place-items:center; margin-bottom: 14px; }
.value__ic svg { width: 24px; height: 24px; stroke: var(--orange); fill:none; }
.value h4 { font-size: 1.05rem; margin-bottom: 8px; }
.value p { font-size: .9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #9fb0cb; padding: 64px 0 26px; }
.footer .brand__text b { color:#fff; }
.footer .brand__text small { color: #7f92b3; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-about p { font-size: .9rem; margin-top: 18px; max-width: 280px; color:#8a9cba; }
.footer-social { display:flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 9px; border:1px solid rgba(255,255,255,.14); display:grid; place-items:center; transition: background .15s, border-color .15s; }
.footer-social a:hover { background: var(--orange); border-color: var(--orange); }
.footer-social svg { width: 18px; height: 18px; fill: #cdd9ec; }
.footer-social a:hover svg { fill:#fff; }
.footer-col h5 { font-family: var(--ff-head); color:#fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display:block; color:#9fb0cb; font-size: .88rem; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display:flex; justify-content: space-between; align-items:center; gap: 16px; padding-top: 24px; flex-wrap: wrap; }
.footer-bottom p { font-size: .82rem; color:#7f92b3; }
.footer-disclaimer { font-size: .8rem; color:#7f92b3; max-width: 640px; margin-top: 18px; }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-40{margin-top:40px}
.mb-0{margin-bottom:0}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 72px; }
  .hero__visual { max-width: 520px; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display:none; }
  .proof-grid { grid-template-columns: repeat(3,1fr); }
  .pkgs { grid-template-columns: repeat(2,1fr); }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav, .header-cta .btn--ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0; background:#fff;
    border-bottom: 1px solid var(--line); padding: 12px 20px 20px; box-shadow: var(--shadow);
  }
  .nav.open a { padding: 12px 10px; border-radius: 8px; }
  .nav.open .has-drop .drop-menu { position: static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; padding: 0 0 0 14px; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .leadmag, .split, .split--wide-left { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .section { padding: 60px 0; }
}
@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .pkgs, .proof-grid, .cards-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .brand__text small { display:none; }
  .floating-chip--tl { left: -6px; }
  .floating-chip--br { right: -6px; }
  .hero__badges { display:none; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity:1; transform:none; transition:none; }
}
