/* ============================================================
   COMPAS — Landing page styles
   Brand: blue #2563EB, deep navy, humanist sans (Hanken Grotesk)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

:root {
  /* Brand */
  --blue: #2563EB;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-500: #3B82F6;
  --blue-tint: #EFF4FF;
  --blue-tint-2: #DBEAFE;

  /* Ink / neutrals */
  --ink: #0B1220;
  --ink-soft: #1E293B;
  --slate: #475569;
  --slate-2: #64748B;
  --slate-3: #94A3B8;
  --line: #E6EAF0;
  --line-soft: #EEF1F6;
  --surface: #F7F9FC;
  --surface-2: #F1F5FB;
  --white: #FFFFFF;

  /* Semantic */
  --green: #10B981;
  --green-tint: #E7F8F1;
  --amber: #F59E0B;
  --red: #EF4444;
  --rose-tint: #FDEEEE;

  /* Navy (dark sections) */
  --navy: #0A1024;
  --navy-2: #0E1630;
  --navy-card: #131C3A;
  --navy-line: rgba(255,255,255,0.10);
  --navy-text: #C7D2E8;

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.05);
  --shadow: 0 8px 24px -8px rgba(15,23,42,0.12), 0 2px 8px -4px rgba(15,23,42,0.08);
  --shadow-lg: 0 30px 60px -20px rgba(15,23,42,0.22), 0 12px 28px -12px rgba(15,23,42,0.14);
  --shadow-blue: 0 16px 36px -12px rgba(37,99,235,0.42);

  --container: 1180px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: 110px; position: relative; }
.section--tight { padding-block: 84px; }
.section--surface { background: var(--surface); }
.section--navy { background: var(--navy); color: var(--navy-text); }

.center { text-align: center; }
.mw-720 { max-width: 720px; }
.mw-640 { max-width: 640px; }
.mx-auto { margin-inline: auto; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--blue); }
.section--navy .eyebrow { color: var(--blue-500); }
.section--navy .eyebrow::before { background: var(--blue-500); }

.h-display { font-size: clamp(40px, 5.4vw, 66px); font-weight: 800; letter-spacing: -0.03em; }
.h1 { font-size: clamp(34px, 4.2vw, 50px); font-weight: 800; letter-spacing: -0.028em; }
.h2 { font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; }
.lead { font-size: clamp(18px, 1.4vw, 21px); color: var(--slate); line-height: 1.55; }
.section--navy .lead { color: var(--navy-text); }
.muted { color: var(--slate-2); }
.eyebrow + .h1, .eyebrow + .h2 { margin-top: 18px; }
.h1 + .lead, .h2 + .lead { margin-top: 20px; }

.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  padding: 14px 24px; border-radius: 12px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 20px 40px -12px rgba(37,99,235,0.5); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--slate-3); transform: translateY(-1px); }
.btn--lg { padding: 17px 30px; font-size: 17px; border-radius: 14px; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn--block { width: 100%; }
.btn--soft { background: var(--blue-tint); color: var(--blue-700); }
.btn--soft:hover { background: var(--blue-tint-2); }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--blue); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px -16px rgba(15,23,42,0.3); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.nav__links { display: flex; align-items: center; gap: 30px; margin-left: 14px; }
.nav__links a { font-size: 15.5px; font-weight: 600; color: var(--slate); transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__spacer { margin-left: auto; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__login { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 78px; padding-bottom: 96px; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 8%, rgba(37,99,235,0.10), transparent 70%),
    radial-gradient(40% 40% at 10% 0%, rgba(59,130,246,0.08), transparent 70%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(100% 70% at 50% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(100% 70% at 50% 0%, #000 35%, transparent 78%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }
.hero__copy { max-width: 560px; }
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 22px; max-width: 500px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__assure { display: flex; flex-wrap: wrap; gap: 18px 22px; margin-top: 26px; }
.hero__assure span { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--slate); }
.hero__assure svg { width: 17px; height: 17px; color: var(--green); flex: none; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 8px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600; color: var(--ink-soft); white-space: nowrap;
  max-width: 100%;
}
.pill b { color: var(--blue-700); font-weight: 800; }
.pill__dot { width: 22px; height: 22px; border-radius: 999px; background: var(--green-tint); display: grid; place-items: center; }
.pill__dot i { width: 8px; height: 8px; border-radius: 999px; background: var(--green); display: block; box-shadow: 0 0 0 0 rgba(16,185,129,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(16,185,129,.45)} 70%{box-shadow:0 0 0 7px rgba(16,185,129,0)} 100%{box-shadow:0 0 0 0 rgba(16,185,129,0)} }

/* Hero visual: mock browser */
.hero__visual { position: relative; }
.browser {
  border-radius: var(--radius-lg); background: #fff; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.browser__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--surface); border-bottom: 1px solid var(--line); }
.browser__dots { display: flex; gap: 6px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 999px; background: #D7DEE8; display: block; }
.browser__url { margin-left: 10px; flex: 1; display: flex; align-items: center; gap: 8px; height: 28px; padding: 0 12px; border-radius: 8px; background: #fff; border: 1px solid var(--line); font-size: 12.5px; color: var(--slate-2); font-weight: 600; }
.browser__url svg { width: 12px; height: 12px; color: var(--green); }

/* Mini site inside hero browser */
.mini { background: #fff; }
.mini__top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line-soft); }
.mini__logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; color: var(--ink); }
.mini__logo i { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, #1E293B, #334155); display: block; }
.mini__nav { display: flex; gap: 14px; }
.mini__nav span { width: 38px; height: 7px; border-radius: 4px; background: var(--line); }
.mini__cta { width: 76px; height: 26px; border-radius: 7px; background: var(--ink); }
.mini__hero { padding: 26px 20px 22px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: center; background: linear-gradient(180deg, #fff, var(--surface)); }
.mini__h { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.12; }
.mini__sub { margin-top: 9px; height: 7px; width: 80%; border-radius: 4px; background: var(--line); }
.mini__sub + .mini__sub { width: 60%; margin-top: 7px; }
.mini__btns { display: flex; gap: 8px; margin-top: 15px; }
.mini__btns b { height: 30px; border-radius: 8px; }
.mini__btns b:first-child { width: 110px; background: var(--blue); }
.mini__btns b:last-child { width: 72px; background: #fff; border: 1px solid var(--line); }
.mini__form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px; box-shadow: var(--shadow-sm); }
.mini__form h6 { margin: 0 0 10px; font-size: 12px; font-weight: 800; color: var(--ink); }
.mini__field { height: 28px; border-radius: 7px; background: var(--surface); border: 1px solid var(--line); margin-bottom: 8px; }
.mini__send { height: 30px; border-radius: 8px; background: var(--blue); display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 800; }

/* Floating lead cards */
.floaty { position: absolute; z-index: 2; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 12px 14px; display: flex; align-items: center; gap: 11px; }
.floaty--lead { top: 16px; left: -30px; animation: floaty 6s ease-in-out infinite; }
.floaty--call { bottom: 26px; right: -26px; animation: floaty 6s ease-in-out infinite .8s; }
.floaty__ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.floaty__ic svg { width: 19px; height: 19px; }
.floaty__ic--green { background: var(--green-tint); color: var(--green); }
.floaty__ic--blue { background: var(--blue-tint); color: var(--blue); }
.floaty__t { font-size: 13px; font-weight: 800; color: var(--ink); line-height: 1.25; white-space: nowrap; }
.floaty__s { font-size: 11.5px; font-weight: 600; color: var(--slate-2); margin-top: 1px; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

@media (prefers-reduced-motion: reduce) {
  .floaty--lead, .floaty--call, .pill__dot i { animation: none; }
}

/* ---------- Logos / proof strip ---------- */
.proof { padding-block: 0; }
.proof__inner { padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -12px; top: 12%; height: 76%; width: 1px; background: var(--line); }
.stat__num { font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.stat__num span { color: var(--blue); }
.stat__label { margin-top: 9px; font-size: 14.5px; font-weight: 600; color: var(--slate-2); }
.demo-note { margin-top: 22px; font-size: 13px; color: var(--slate-3); text-align: center; font-weight: 600; }
.demo-tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; color: var(--slate-2); background: var(--surface-2); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
}
.demo-tag::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--amber); }

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

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-soft); }

.feat-ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--blue-tint); color: var(--blue); margin-bottom: 18px; }
.feat-ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; font-weight: 800; }
.card p { margin-top: 9px; color: var(--slate); font-size: 15.5px; line-height: 1.55; }

/* Problem cards */
.problem .feat-ic { background: var(--rose-tint); color: var(--red); }
.problem-card { display: flex; gap: 16px; align-items: flex-start; }
.problem-card .feat-ic { margin-bottom: 0; flex: none; width: 44px; height: 44px; border-radius: 12px; }
.problem-card h3 { font-size: 17.5px; }
.problem-card p { font-size: 15px; margin-top: 6px; }

/* Solution pillars */
.pillar { text-align: left; }
.pillar .num { font-size: 13px; font-weight: 800; color: var(--blue); letter-spacing: .04em; }
.pillar h3 { margin-top: 8px; font-size: 20px; }
.pillar p { margin-top: 8px; }

/* ---------- Example websites ---------- */
.example { padding: 0; overflow: hidden; }
.example__preview { position: relative; }
.example__chrome { display: flex; align-items: center; gap: 7px; padding: 9px 13px; background: var(--surface); border-bottom: 1px solid var(--line); }
.example__chrome i { width: 9px; height: 9px; border-radius: 999px; background: #D7DEE8; display: block; }
.example__chrome span { margin-left: 8px; font-size: 11px; font-weight: 700; color: var(--slate-3); }
.thumb { height: 168px; position: relative; overflow: hidden; }
.thumb__bar { height: 30px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; }
.thumb__bar b { font-size: 11px; font-weight: 800; color: #fff; }
.thumb__bar i { width: 44px; height: 9px; border-radius: 4px; background: rgba(255,255,255,.35); }
.thumb__body { padding: 16px 14px; }
.thumb__h { width: 70%; height: 11px; border-radius: 4px; background: rgba(255,255,255,.9); }
.thumb__l { height: 7px; border-radius: 4px; background: rgba(255,255,255,.5); margin-top: 7px; }
.thumb__l.w60 { width: 60%; }
.thumb__l.w45 { width: 45%; }
.thumb__cta { margin-top: 13px; display: flex; gap: 7px; }
.thumb__cta b { height: 22px; border-radius: 6px; }
.thumb__cta b:first-child { width: 78px; background: #fff; }
.thumb__cta b:last-child { width: 54px; background: rgba(255,255,255,.3); }
.example__body { padding: 18px 20px 20px; }
.example__cat { font-size: 12px; font-weight: 700; color: var(--slate-3); text-transform: uppercase; letter-spacing: .05em; }
.example__name { font-size: 18px; font-weight: 800; margin-top: 4px; }
.example__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.metric { text-align: center; }
.metric b { display: block; font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.metric.is-good b { color: var(--green); }
.metric span { display: block; font-size: 11px; font-weight: 600; color: var(--slate-2); margin-top: 3px; }

/* ---------- Before / After ---------- */
.ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.ba__col { padding: 36px; }
.ba__before { background: var(--surface); }
.ba__after { background: linear-gradient(180deg, #fff, var(--blue-tint)); }
.ba__tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.ba__tag--b { background: #EAEEF4; color: var(--slate-2); }
.ba__tag--a { background: var(--green-tint); color: var(--green); }
.ba__col h3 { margin-top: 18px; font-size: 21px; }
.ba__list { margin-top: 18px; display: grid; gap: 11px; }
.ba__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; font-weight: 600; color: var(--slate); }
.ba__list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.ba__before .ba__list svg { color: var(--slate-3); }
.ba__after .ba__list svg { color: var(--green); }
.ba__big { margin-top: 24px; display: flex; align-items: baseline; gap: 10px; }
.ba__big b { font-size: 46px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.ba__before .ba__big b { color: var(--slate-2); }
.ba__after .ba__big b { color: var(--green); }
.ba__big span { font-size: 14px; font-weight: 600; color: var(--slate-2); }
.ba__mid { display: grid; place-items: center; background: #fff; padding: 0 8px; border-inline: 1px solid var(--line); }
.ba__arrow { width: 52px; height: 52px; border-radius: 999px; background: var(--blue); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-blue); }
.ba__arrow svg { width: 24px; height: 24px; }

/* ---------- Benefits ---------- */
.benefit { display: flex; gap: 14px; align-items: flex-start; padding: 22px; border-radius: var(--radius); transition: background .18s ease; }
.benefit:hover { background: var(--surface); }
.benefit__ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--blue-tint); color: var(--blue); flex: none; }
.benefit__ic svg { width: 21px; height: 21px; }
.benefit h3 { font-size: 16.5px; font-weight: 800; }
.benefit p { margin-top: 5px; font-size: 14.5px; color: var(--slate); line-height: 1.5; }

/* ---------- Pricing ---------- */
.toggle { display: inline-flex; align-items: center; gap: 0; padding: 5px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); margin-top: 26px; }
.toggle button { border: none; background: transparent; font-size: 14.5px; font-weight: 700; color: var(--slate-2); padding: 9px 20px; border-radius: 999px; transition: all .18s ease; position: relative; }
.toggle button.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.toggle .save { display: inline-block; margin-left: 6px; font-size: 11px; font-weight: 800; color: var(--green); }

.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.plan { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.plan--pop { border-color: var(--blue); box-shadow: var(--shadow); position: relative; }
.plan--pop::before { content: "Najpopularniejszy"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-blue); }
.plan__name { font-size: 16px; font-weight: 800; }
.plan__desc { margin-top: 6px; font-size: 13.5px; color: var(--slate-2); min-height: 38px; }
.plan__price { margin-top: 14px; display: flex; align-items: baseline; gap: 4px; }
.plan__price b { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; }
.plan__price span { font-size: 14px; font-weight: 600; color: var(--slate-2); }
.plan__price .pln-free { font-size: 40px; }
.plan .btn { margin-top: 18px; }
.plan__list { margin-top: 22px; display: grid; gap: 11px; }
.plan__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.plan__list svg { width: 17px; height: 17px; color: var(--blue); flex: none; margin-top: 2px; }
.plan__feat-head { margin-top: 22px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--slate-3); }

/* ---------- Growth Intelligence (navy) ---------- */
.gil-card {
  background: var(--navy-card); border: 1px solid var(--navy-line); border-radius: var(--radius);
  padding: 24px; transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.gil-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.5); background: #16204A; }
.gil-card__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(59,130,246,0.16); color: var(--blue-500); margin-bottom: 16px; }
.gil-card__ic svg { width: 23px; height: 23px; }
.gil-card h3 { color: #fff; font-size: 18px; }
.gil-card p { margin-top: 8px; color: var(--navy-text); font-size: 14.5px; line-height: 1.55; }
.gil-tag { display: inline-block; margin-top: 14px; font-size: 11.5px; font-weight: 700; color: var(--blue-500); background: rgba(59,130,246,0.12); padding: 4px 10px; border-radius: 999px; }
.section--navy .h1, .section--navy .h2 { color: #fff; }
.glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 40% at 80% 0%, rgba(37,99,235,0.22), transparent 70%), radial-gradient(40% 40% at 0% 100%, rgba(59,130,246,0.14), transparent 70%); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.step { position: relative; }
.step__num { width: 50px; height: 50px; border-radius: 14px; background: var(--blue); color: #fff; font-size: 20px; font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow-blue); }
.step h3 { margin-top: 20px; font-size: 19px; }
.step p { margin-top: 9px; color: var(--slate); font-size: 15px; }
.step__line { position: absolute; top: 25px; left: 64px; right: -10px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px); }
.step:last-child .step__line { display: none; }

/* ---------- Testimonials ---------- */
.tcard { display: flex; flex-direction: column; }
.tcard__stars { display: flex; gap: 3px; color: var(--amber); }
.tcard__stars svg { width: 17px; height: 17px; }
.tcard__quote { margin-top: 16px; font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); font-weight: 500; flex: 1; }
.tcard__who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; font-weight: 800; font-size: 16px; color: #fff; flex: none; }
.tcard__name { font-size: 15px; font-weight: 800; }
.tcard__role { font-size: 13px; color: var(--slate-2); font-weight: 600; margin-top: 1px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; background: transparent; border: none; padding: 22px 4px; font-size: 17.5px; font-weight: 700; color: var(--ink); }
.faq__q:hover { color: var(--blue); }
.faq__icon { width: 26px; height: 26px; flex: none; position: relative; border-radius: 999px; background: var(--surface-2); transition: background .2s ease; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--slate); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .25s ease, background .2s ease; }
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item.is-open .faq__icon { background: var(--blue-tint); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: var(--blue); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__a p { padding: 0 4px 24px; color: var(--slate); font-size: 15.5px; line-height: 1.6; max-width: 90%; }

/* ---------- Final CTA ---------- */
.cta-final { position: relative; overflow: hidden; background: var(--navy); border-radius: var(--radius-xl); padding: 72px 56px; text-align: center; color: #fff; box-shadow: var(--shadow-lg); }
.cta-final h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); }
.cta-final p { margin: 18px auto 0; max-width: 540px; color: var(--navy-text); font-size: 18px; }
.cta-final__btns { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final__assure { margin-top: 22px; font-size: 14px; color: var(--slate-3); font-weight: 600; }

/* ---------- Directory callout ---------- */
.directory { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; }
.directory .eyebrow { color: var(--blue); }
.directory h3 { font-size: 28px; margin-top: 14px; }
.directory p { margin-top: 14px; color: var(--slate); }
.dir-vis { display: grid; gap: 10px; }
.dir-row { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow-sm); }
.dir-row__ic { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 15px; flex: none; }
.dir-row__t b { font-size: 14.5px; font-weight: 800; display: block; }
.dir-row__t span { font-size: 12.5px; color: var(--slate-2); font-weight: 600; }
.dir-row__badge { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--green); background: var(--green-tint); padding: 4px 9px; border-radius: 999px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: var(--navy-text); padding-block: 72px 36px; }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; }
.footer__brand .brand { color: #fff; }
.footer__brand p { margin-top: 16px; font-size: 14.5px; color: var(--slate-3); max-width: 280px; line-height: 1.6; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid var(--navy-line); display: grid; place-items: center; color: var(--navy-text); transition: background .18s ease, color .18s ease; }
.footer__social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h5 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin: 0 0 16px; }
.footer__col a { display: block; font-size: 14.5px; color: var(--slate-3); padding: 6px 0; transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--navy-line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--slate-3); }
.footer__bottom a { color: var(--slate-3); }
.footer__bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__copy { max-width: 620px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step__line { display: none; }
  .directory { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .section { padding-block: 76px; }
  .nav__links, .nav__login { display: none; }
  .grid-2, .grid-3, .grid-4, .pricing, .stats, .steps { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stats { gap: 30px; }
  .ba { grid-template-columns: 1fr; }
  .ba__mid { padding: 8px 0; border-inline: none; border-block: 1px solid var(--line); }
  .ba__arrow { transform: rotate(90deg); }
  .example__metrics { grid-template-columns: repeat(3, 1fr); }
  .cta-final { padding: 52px 26px; }
  .directory { padding: 30px; }
  .floaty--lead { left: 4px; } .floaty--call { right: 4px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__inner { gap: 36px; }
}
