/* Inter, zelf gehost. Voorheen bij Google opgehaald, wat het renderen ophield
   en het IP-adres van elke bezoeker naar Google stuurde voordat de cookiebanner
   iets had kunnen vragen. Dit is de variabele versie: één bestand dekt alle
   gewichten van 400 tot 900. */
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(/fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(/fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter is loaded via <link> in each page's <head> for reliable, non-blocking delivery */

:root {
  --navy: #0B2545;
  --blue: #4A9EF5;
  --body: #111827;
  --secondary: #374151;
  --muted: #9CA3AF;
  --light: #F9FAFB;
  --border: #E5E7EB;
  --white: #FFFFFF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'Inter', sans-serif; color: var(--body); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: clip; max-width: 100vw; position: relative; }
a, button, [role="button"] { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: #fff; border-bottom: 1px solid #E5E7EB;
  height: 72px; padding: 0 clamp(20px,5vw,60px);
  display: flex; align-items: center;
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(11,37,69,0.08); }
.nav-inner {
  max-width: 1140px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap; gap: 40px;
}
.nav-logo { font-size: 21px; font-weight: 800; color: #0B2545; text-decoration: none; letter-spacing: -0.5px; flex-shrink: 0; }
.nav-logo span { color: #4A9EF5; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; flex-wrap: nowrap; }
.nav-links a { font-size: 15px; font-weight: 500; color: #374151; text-decoration: none; white-space: nowrap; transition: color 0.15s; }
.nav-links a:hover { color: #0B2545; }
.nav-cta {
  background: #4A9EF5 !important; color: #fff !important;
  padding: 9px 20px; border-radius: 7px; font-weight: 700 !important;
  transition: background 0.15s !important; white-space: nowrap;
}
.nav-cta:hover { background: #3a8de0 !important; }

/* ── HERO ── */
.hero {
  background-color: #0B2545;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  padding: clamp(52px,7vw,88px) clamp(20px,5vw,60px) 0;
  display: flex; align-items: flex-start;
}
.hero-inner { max-width: 1140px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 28px;
}
.hero-eyebrow::before { content:''; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }
.hero h1 {
  font-size: clamp(40px,6.5vw,72px); font-weight: 900; color: var(--white);
  line-height: 1.05; letter-spacing: -1.5px; max-width: 860px; margin-bottom: 24px;
  text-wrap: pretty;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: clamp(16px,2vw,19px); color: rgba(255,255,255,0.6);
  max-width: 540px; line-height: 1.75; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  padding: 15px 28px; border-radius: 8px; font-size: 16px; font-weight: 700;
  text-decoration: none; transition: background 0.15s, transform 0.15s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #3a8de0; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  padding: 15px 28px; border-radius: 8px; font-size: 16px; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: all 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
  font-size: clamp(28px,4vw,38px); font-weight: 900; color: var(--white);
  letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px;
}
.hero-stat-value b { color: var(--blue); font-weight: 900; }
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 500; }

/* ── GENERIC SECTION ── */
.section { padding: clamp(60px,8vw,110px) clamp(20px,5vw,60px); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light); }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.section-headline {
  font-size: clamp(28px,4vw,46px); font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 16px; color: var(--navy);
  text-wrap: pretty;
}
.section-dark .section-headline { color: var(--white); }
.section-sub { font-size: 18px; line-height: 1.75; color: var(--secondary); max-width: 580px; }
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ── BOOKING PAGE ── */
.mini-nav { background: #fff; border-bottom: 1px solid var(--border); padding: 0 clamp(20px,5vw,60px); }
.mini-nav-inner { max-width: 1140px; margin: 0 auto; height: 72px; display: flex; align-items: center; }
.book-hero { background: var(--navy); }
.book-hero .section-headline { color: #fff; }
.book-head { max-width: 680px; margin: 0 auto; text-align: center; }
.book-intro { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.book-embed { max-width: 700px; margin: 0 auto; }
.book-meta { text-align: center; font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.book-alt { text-align: center; font-size: 15px; color: var(--secondary); margin-top: 32px; }
.book-alt a { color: inherit; text-decoration: underline; }
.footer.mini-footer { padding-top: 0; padding-bottom: 0; height: 64px; display: flex; align-items: center; }
.footer.mini-footer .footer-inner { width: 100%; }
.footer.mini-footer .footer-bottom { display: flex; align-items: center; margin-top: 0; padding-top: 0; border-top: none; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.team-card { position: relative; aspect-ratio: 3/4; border-radius: 14px; overflow: hidden; }
.team-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; display: block; }
.team-card::after { content: ''; position: absolute; inset: 0; background: rgba(11,37,69,0.2); pointer-events: none; }
.team-overlay { position: absolute; inset: auto 0 0 0; padding: 26px 26px 24px; z-index: 1; background: linear-gradient(to bottom, rgba(11,37,69,0) 0%, rgba(11,37,69,0.6) 55%, rgba(11,37,69,0.95) 100%); }
.team-name { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.4px; margin-bottom: 6px; }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--blue); }

@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; max-width: 320px; } }

/* ── AI ENHANCED EXPLAINED ── */
.aix-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center; }
.aix-headline { font-size: clamp(26px,3vw,36px); font-weight: 900; line-height: 1.15; letter-spacing: -1px; color: #fff; margin-bottom: 22px; text-wrap: pretty; }
.aix-text p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.aix-text p:last-child { margin-bottom: 0; }
.aix-text strong { color: #fff; font-weight: 700; }
.aix-flow { background: rgba(255,255,255,0.04); border: 1px solid var(--blue); border-radius: 16px; padding: 32px; box-shadow: 0 8px 32px rgba(74,158,245,0.18); }
.aix-flow-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 26px; }
.aix-steps { list-style: none; position: relative; }
.aix-steps::before { content: ''; position: absolute; left: 15px; top: 16px; bottom: 16px; width: 1px; background: rgba(255,255,255,0.14); }
.aix-step { display: flex; align-items: flex-start; gap: 16px; position: relative; padding-bottom: 22px; }
.aix-step:last-child { padding-bottom: 0; }
.aix-num { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; background: #1E3A5F; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.16); position: relative; z-index: 1; }
.aix-step-body { padding-top: 4px; }
.aix-step-name { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.4; }
.aix-step-who { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 3px; }
.aix-step-who b { color: inherit; font-weight: inherit; }
@media (max-width: 900px) {
  .aix-grid { grid-template-columns: 1fr; gap: 40px; }
  .aix-flow { padding: 26px; }
}

/* ── HERO DASHBOARD ── */
.hero-team { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 28px auto 0; }
.hero-team-avatars { display: flex; align-items: center; }
.hero-team-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; border: 2px solid var(--navy); display: block; }
.hero-team-avatar + .hero-team-avatar { margin-left: -14px; }
.hero-team-avatar-ph { background: #6B7280; }
.hero-team-text { font-size: 14px; color: rgba(255,255,255,0.55); }
.hero-centered { padding-bottom: 0 !important; }
.hero-dash-outer {
  position: relative; width: 100%; max-width: 960px; margin: 56px auto 0;
  padding: 0 64px; /* room for floating cards */
}
.hero-dash-main {
  background: #fff; border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 80px rgba(0,0,0,0.3);
  overflow: hidden; text-align: left;
}
/* Floating overlay cards */
.dash-float {
  position: absolute; background: #fff;
  border-radius: 14px; padding: 18px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  z-index: 10; min-width: 160px;
}
.dash-float-left { left: -12px; bottom: 60px; }
.dash-float-right { right: -12px; bottom: 140px; }
.dash-float-label { font-size: 11px; font-weight: 600; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.dash-float-value { font-size: 28px; font-weight: 900; color: #0B2545; letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; display: flex; align-items: baseline; gap: 8px; }
.dash-float-delta { font-size: 12px; font-weight: 700; color: #059669; background: #ECFDF5; padding: 2px 7px; border-radius: 100px; letter-spacing: 0; }
/* Mini sparkline */
.dash-sparkline { margin-top: 12px; }
.dash-sparkline svg { width: 120px; height: 36px; display: block; }

/* Main panel header */
.dash-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid #E5E7EB; background: #fff;
}
.dash-panel-tabs { display: flex; gap: 0; }
.dash-tab {
  font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 6px;
  color: #9CA3AF; cursor: default; border: none; background: none;
}
.dash-tab.active { background: #EFF6FF; color: #4A9EF5; }
.dash-panel-actions { display: flex; gap: 8px; align-items: center; }
.dash-badge {
  font-size: 11px; font-weight: 600; color: #374151;
  background: #F9FAFB; border: 1px solid #E5E7EB;
  padding: 4px 10px; border-radius: 5px;
}
.dash-badge-blue { background: #4A9EF5; color: #fff; border-color: #4A9EF5; }

/* Keywords table */
.dash-kw-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.dash-kw-table th {
  font-size: 11px; font-weight: 600; color: #9CA3AF; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 10px 16px; text-align: left;
  background: #FAFAFA; border-bottom: 1px solid #E5E7EB;
}
.dash-kw-table th:not(:first-child) { text-align: right; }
.dash-kw-table td {
  padding: 9px 16px; color: #374151; border-bottom: 1px solid #F3F4F6;
  vertical-align: middle;
}
.dash-kw-table td:not(:first-child) { text-align: right; }
.dash-kw-table tr:last-child td { border-bottom: none; }
.kw-name { color: #0B2545; font-weight: 500; }
.kw-pos { font-weight: 800; color: #4A9EF5; }
.kw-up { color: #059669; font-weight: 700; font-size: 11px; }
.kw-down { color: #dc2626; font-weight: 700; font-size: 11px; }
.kw-neutral { color: #9CA3AF; font-size: 11px; }

@media (max-width: 900px) {
  .hero-dash-outer { padding: 0; }
  .dash-float { display: none; }
}
@media (max-width: 900px) {
  .dash-body { grid-template-columns: 1fr; }
  .dash-chart-wrap { border-right: none; border-bottom: 1px solid #E5E7EB; }
}

/* ── WHY ── */
.why-center {
  max-width: 680px; margin: 0 auto 56px; text-align: center;
}
.why-center p {
  font-size: 17px; color: var(--secondary); line-height: 1.85; margin-bottom: 18px;
}
.why-center strong { color: var(--navy); }
.why-pull {
  font-size: 19px; font-style: italic; color: var(--navy); font-weight: 500;
  border-left: none; padding: 0; margin: 32px 0;
  line-height: 1.6; position: relative;
}
.why-pull::before { content: '"'; font-size: 64px; color: var(--blue); opacity: 0.2; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); line-height: 1; font-style: normal; }

.why-card {
  background: var(--navy); border-radius: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: clamp(32px,4vw,52px);
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}
.why-card-left .section-label { margin-bottom: 24px; }
.why-checks { gap: 18px; }
.why-checks .check-list li, .why-checks li {
  color: rgba(255,255,255,0.75) !important;
}
.why-checks li strong { color: var(--white) !important; }
.why-checks .check-icon { background: rgba(74,158,245,0.15) !important; }

.why-dual-metrics { display: flex; align-items: center; gap: 16px; justify-content: center; }
.why-dual-metric { text-align: center; }
.why-dual-val { font-size: 28px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.why-dual-lbl { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); margin-top: 4px; }
.why-dual-from { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.why-dual-arrow { font-size: 20px; color: rgba(255,255,255,0.2); flex-shrink: 0; }
.why-legend { display: flex; gap: 20px; margin-top: 12px; justify-content: center; }
.why-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.4); }
.why-legend-item span { width: 20px; height: 3px; border-radius: 2px; display: inline-block; flex-shrink: 0; }
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 24px;
}
.why-mockup-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.why-mockup-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat-val { font-size: 26px; font-weight: 900; color: var(--blue); letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.why-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4; }

@media (max-width: 900px) {
  .why-card { grid-template-columns: 1fr; gap: 32px; }
}

/* ── COMPARISON: TWO CARDS ── */
.cmp {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.cmp-card {
  border-radius: 20px;
  padding: clamp(28px, 3.4vw, 40px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cmp-card--trad {
  background: #fff;
  border: 1px solid var(--border);
}
.cmp-card--noly {
  background: var(--navy);
  background-image:
    radial-gradient(circle at 100% 0%, rgba(74,158,245,0.22), transparent 55%),
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, 40px 40px;
  box-shadow:
    0 28px 80px -20px rgba(11,37,69,0.45),
    0 12px 32px -12px rgba(74,158,245,0.28);
}
.cmp-card--noly::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(74,158,245,0.2));
}

.cmp-head {
  display: flex; align-items: center;
  margin-bottom: 24px;
  position: relative;
}
.cmp-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0;
}
.cmp-card--trad .cmp-title { color: var(--secondary); }
.cmp-card--noly .cmp-title {
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.cmp-rows { display: flex; flex-direction: column; }
.cmp-row {
  display: flex; flex-direction: column; gap: 4px;
  padding: 13px 0;
}
.cmp-row + .cmp-row { border-top: 1px solid; }
.cmp-card--trad .cmp-row + .cmp-row { border-top-color: #F1F2F4; }
.cmp-card--noly .cmp-row + .cmp-row { border-top-color: rgba(255,255,255,0.08); }

.cmp-row-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
}
.cmp-card--trad .cmp-row-label { color: var(--muted); }
.cmp-card--noly .cmp-row-label { color: rgba(255,255,255,0.5); }

.cmp-row-val {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}
.cmp-card--trad .cmp-row-val { color: var(--secondary); }
.cmp-card--noly .cmp-row-val { color: var(--white); font-weight: 700; }

.cmp-check {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 5px;
  filter: drop-shadow(0 0 6px rgba(74,158,245,0.35));
}

.cmp-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 28px;
  background: var(--blue); color: var(--white);
  padding: 14px 22px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  align-self: stretch;
  box-shadow: 0 8px 24px rgba(74,158,245,0.28);
}
.cmp-cta svg { width: 16px; height: 16px; transition: transform 0.18s; }
.cmp-cta:hover {
  background: #3a8de0;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(74,158,245,0.36);
}
.cmp-cta:hover svg { transform: translateX(3px); }

@media (max-width: 820px) {
  .cmp { grid-template-columns: 1fr; gap: 16px; }
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: var(--secondary); line-height: 1.55;
}
.check-list li > span:last-child { flex: 1; min-width: 0; }
.check-icon {
  flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px;
  background: #EFF6FF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 11px; height: 11px; stroke: var(--blue); stroke-width: 2.8; fill: none; }

/* ── BLUEPRINT INTERACTIVE ── */
.bp-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px; flex-wrap: wrap;
  padding: 6px; background: rgba(11,37,69,0.04);
  border-radius: 14px; max-width: max-content;
  margin-left: auto; margin-right: auto;
}
.bp-tab {
  background: #fff; border: 1px solid var(--border); cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--secondary);
  padding: 11px 18px; border-radius: 9px;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all 0.18s ease; white-space: nowrap;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 1px 2px rgba(11,37,69,0.04);
}
.bp-tab-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--light); color: var(--muted);
  font-size: 12px; font-weight: 800; flex-shrink: 0;
  border: 1px solid var(--border);
  transition: all 0.18s ease;
}
.bp-tab:hover {
  color: var(--navy); border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74,158,245,0.18);
}
.bp-tab:hover .bp-tab-num {
  background: rgba(74,158,245,0.12); color: var(--blue);
  border-color: rgba(74,158,245,0.3);
}
.bp-tab.active {
  color: var(--white); background: var(--navy);
  border-color: var(--navy); font-weight: 700;
  box-shadow: 0 2px 8px rgba(11,37,69,0.18);
  transform: none;
}
.bp-tab.active .bp-tab-num {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
}
.bp-tab:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 2px;
}

/* one-time pulse to draw attention on first view */
.bp-tabs.attention .bp-tab:not(.active) {
  animation: bpTabPulse 1.4s ease-out 2;
}
.bp-tabs.attention .bp-tab:nth-child(2) { animation-delay: 0.15s; }
.bp-tabs.attention .bp-tab:nth-child(3) { animation-delay: 0.3s; }
.bp-tabs.attention .bp-tab:nth-child(4) { animation-delay: 0.45s; }
.bp-tabs.attention .bp-tab:nth-child(5) { animation-delay: 0.6s; }
@keyframes bpTabPulse {
  0%   { box-shadow: 0 1px 2px rgba(11,37,69,0.04); }
  40%  { box-shadow: 0 0 0 6px rgba(74,158,245,0.18), 0 6px 16px rgba(74,158,245,0.18); transform: translateY(-2px); }
  100% { box-shadow: 0 1px 2px rgba(11,37,69,0.04); transform: none; }
}

.bp-panels { position: relative; min-height: 340px; }
.bp-panel {
  display: none; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.bp-panel.active { display: grid; animation: bpFade 0.3s ease; }
@keyframes bpFade { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform: none; } }

.bp-visual { position: relative; }
.bp-visual-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.bp-mockup {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; box-shadow: 0 8px 40px rgba(11,37,69,0.1);
}
.bpm-header {
  background: #F9FAFB; border-bottom: 1px solid var(--border);
  padding: 10px 16px; display: flex; align-items: center; gap: 6px;
}
.bpm-dot { width: 10px; height: 10px; border-radius: 50%; }
.bpm-dot.r { background: #FF5F57; }
.bpm-dot.y { background: #FFBD2E; }
.bpm-dot.g { background: #28CA41; }
.bpm-body { padding: 16px; }
.bpm-row {
  display: flex; align-items: center; gap: 10px; padding: 7px 0;
  border-bottom: 1px solid #F3F4F6; font-size: 13px;
}
.bpm-row:last-of-type { border-bottom: none; }
.bpm-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.bpm-icon.ok { background: #F0FDF4; color: #16a34a; }
.bpm-icon.warn { background: #FFFBEB; color: #d97706; }
.bpm-key { flex: 1; color: var(--secondary); }
.bpm-val { font-weight: 700; font-size: 13px; }
.bpm-val.blue { color: var(--blue); }
.bpm-val.green { color: #16a34a; }
.bpm-val.orange { color: #d97706; }
.bpm-score { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 12px; color: var(--muted); }
.bpm-score-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.bpm-score-bar span { display: block; height: 100%; background: #d97706; border-radius: 3px; }
.bpm-score-num { font-weight: 700; color: #d97706; }

/* competitor table */
.bpm-comp-header, .bpm-comp-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 8px; padding: 7px 0; font-size: 12px; border-bottom: 1px solid #F3F4F6; }
.bpm-comp-header { font-weight: 700; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.bpm-comp-row.you { background: #EFF6FF; border-radius: 6px; padding: 7px 6px; font-weight: 700; color: var(--navy); }
.bpm-comp-row.you span:first-child::after { content: ' ← jij'; font-size: 10px; color: var(--blue); }
.bpm-gap-label { margin-top: 12px; font-size: 12px; color: #d97706; font-weight: 600; background: #FFFBEB; padding: 8px 10px; border-radius: 6px; }

/* keyword table */
.bpm-kw-header, .bpm-kw-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 8px; padding: 7px 0; font-size: 12px; border-bottom: 1px solid #F3F4F6; }
.bpm-kw-header { font-weight: 700; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.intent, .prio { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px; display: inline-flex; align-items: center; }
.intent.buy { background: #F0FDF4; color: #16a34a; }
.intent.info { background: #EFF6FF; color: var(--blue); }
.prio.hi { background: #EFF6FF; color: var(--blue); }
.prio.mid { background: #F9FAFB; color: var(--muted); }

/* calendar table */
.bpm-cal-header, .bpm-cal-row { display: grid; grid-template-columns: 1fr 2.5fr 1fr 1fr; gap: 8px; padding: 7px 0; font-size: 12px; border-bottom: 1px solid #F3F4F6; }
.bpm-cal-header { font-weight: 700; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.ptype { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px; display: inline-flex; }
.ptype.pillar { background: #EFF6FF; color: var(--blue); }
.ptype.local { background: #F0FDF4; color: #16a34a; }
.ptype.blog { background: #F9FAFB; color: var(--muted); }

/* metrics grid */
.bpm-metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bpm-metric-box { background: var(--light); border-radius: 8px; padding: 12px; }
.bpm-metric-val { font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.bpm-metric-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }
.bpm-metric-delta { font-size: 11px; font-weight: 700; margin-top: 4px; }
.bpm-metric-delta.up { color: #16a34a; }
.bpm-conv-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 12px; border-top: 1px solid #F3F4F6; margin-top: 4px; }
.bpm-conv-lbl { color: var(--secondary); }
.bpm-conv-val { font-weight: 700; color: var(--navy); }

/* copy side */
.bp-copy .bp-step-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.bp-copy h3 { font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 16px; }
.bp-copy p { font-size: 16px; color: var(--secondary); line-height: 1.8; margin-bottom: 14px; }

@media (max-width: 900px) {
  .bp-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .bp-tab { font-size: 13px; padding: 10px 14px; }
}

/* ── BLUEPRINT PRICING STRIP ── */
.bp-pricing-strip {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 28px; display: flex; align-items: center;
  gap: 24px; flex-wrap: wrap; justify-content: center;
}
.bp-strip-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--secondary);
}
.bp-strip-label svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.bp-strip-tiers { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.bp-strip-tier {
  display: flex; align-items: center; gap: 10px; padding: 0 24px;
}
.bp-strip-tier:first-child { padding-left: 0; }
.bp-strip-tier:last-child { padding-right: 0; }
.bp-tier-size { font-size: 13px; font-weight: 700; color: var(--navy); }
.bp-tier-pages { font-size: 12px; color: var(--muted); }
.bp-tier-price { font-size: 15px; font-weight: 800; color: var(--blue); }
.bp-strip-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }

@media (max-width: 900px) {
  .bp-pricing-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bp-strip-tiers { flex-direction: column; gap: 12px; }
  .bp-strip-divider { display: none; }
  .bp-strip-tier { padding: 0; }
}

/* ── AI PLATFORMS ── */
.ai-plat-inner { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 48px; }
.ai-plat-platforms { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.ai-platform { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ai-plat-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.ai-plat-icon svg { width: 32px; height: 32px; }
.ai-plat-name { font-size: 13px; font-weight: 600; color: var(--secondary); }
.ai-plat-footnote { text-align: center; font-size: 13px; color: var(--muted); margin-top: 36px; }

@media (max-width: 900px) {
  .bp-pricing-grid { grid-template-columns: 1fr; }
  .ai-plat-platforms { gap: 24px; }
}
.packages-header { display: grid; grid-template-columns: 1fr 360px; align-items: flex-end; margin-bottom: 48px; gap: 40px; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pkg {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 36px; display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.pkg:hover { border-color: rgba(255,255,255,0.2); }
.pkg.featured {
  background: var(--blue); border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(74,158,245,0.25);
}
.pkg-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12); border-radius: 100px;
  padding: 4px 10px; margin-bottom: 24px; width: fit-content;
}
.pkg.featured .pkg-badge { background: rgba(11,37,69,0.25); color: rgba(255,255,255,0.9); }
.pkg-name { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.pkg-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 28px; }
.pkg-price { font-size: 24px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; line-height: 1.2; }
.pkg-period { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; margin-top: 4px; }
.pkg-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.pkg-accent { border-color: var(--blue); box-shadow: 0 8px 32px rgba(74,158,245,0.18); }
.pkg-features-intro { font-size: 13px; font-weight: 600; color: #FFFFFF; margin-bottom: 14px; }
.pkg-accent .btn-pkg { background: var(--blue); color: var(--navy); border-color: var(--blue); }
.pkg-accent .btn-pkg:hover { background: #3a8de0; border-color: #3a8de0; color: var(--navy); }
.pkg-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pkg-features li { font-size: 14px; color: rgba(255,255,255,0.75); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pkg-features li::before { content:''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.pkg.featured .pkg-features li::before { background: rgba(255,255,255,0.7); }
.btn-pkg {
  display: block; text-align: center; border-radius: 8px; padding: 13px 20px;
  font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.15s;
  background: rgba(74,158,245,0.15); color: var(--blue); border: 1px solid rgba(74,158,245,0.3);
}
.btn-pkg:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.pkg.featured .btn-pkg { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pkg.featured .btn-pkg:hover { background: #0a1f3d; }
.packages-footnote { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.4); text-align: center; }
.pkg-guarantee {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 28px; padding: 28px 32px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
}
.pkg-guarantee-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(74,158,245,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #4A9EF5;
}
.pkg-guarantee-icon svg { width: 26px; height: 26px; }
.pkg-guarantee-title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -0.3px; }
.pkg-guarantee-sub { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 680px; }

/* ── GUARANTEE ── */
.guarantee-box {
  background: var(--light); border: 1px solid var(--border); border-radius: 20px;
  padding: clamp(40px,5vw,64px); display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.guarantee-icon-wrap {
  width: 80px; height: 80px; flex-shrink: 0;
  background: #EFF6FF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.guarantee-icon-wrap svg { width: 36px; height: 36px; stroke: var(--blue); stroke-width: 2; fill: none; }
.guarantee-text h2 { font-size: clamp(22px,3vw,30px); font-weight: 900; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.5px; }
.guarantee-text p { font-size: 17px; color: var(--secondary); line-height: 1.75; max-width: 580px; }

/* ── CASES ── */
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.case-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; position: relative;
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column;
}
.case-card .btn-case::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.case-card:hover .btn-case { gap: 10px; }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(11,37,69,0.1); }
.case-card-top { background: #F3F4F6; padding: 22px 28px 0; }
/* Case card screenshot header */
.case-shot { display: block; width: 100%; height: 180px; overflow: hidden; border-radius: 14px 14px 0 0; background: #E9EBEF; position: relative; }
.case-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.case-shot-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: #9AA1AC; letter-spacing: 0.2px; }
.case-shot-frame { border-radius: 14px 14px 0 0; overflow: hidden; background: #E9EBEF; }
.case-shot-bar { height: 20px; background: #DDE0E6; display: flex; align-items: center; gap: 5px; padding: 0 10px; }
.case-shot-bar i { width: 6px; height: 6px; border-radius: 50%; background: #B9BEC7; display: block; }
.case-shot-frame .case-shot { height: 130px; border-radius: 0; }
.case-card-top.has-shot { padding-top: 22px; }
@media (max-width: 900px) {
  .case-shot { height: 150px; }
  .case-shot-frame .case-shot { height: 104px; }
}
.case-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.case-card-top h3 { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 16px; }
.case-title-link { color: inherit; text-decoration: none; transition: color 0.2s; }
.case-title-link:hover { color: var(--blue); }
.case-metric { font-size: 44px; font-weight: 900; color: var(--blue); letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.case-metric-label { font-size: 12px; color: var(--secondary); font-weight: 600; margin-bottom: 8px; }
.case-growth-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.case-growth-from { font-size: 11px; color: var(--muted); font-weight: 500; }
.case-growth-pct { font-size: 12px; font-weight: 800; color: #059669; background: #ECFDF5; padding: 2px 8px; border-radius: 100px; white-space: nowrap; }
.case-card-body { padding: 24px 28px 24px; flex: 1; display: flex; flex-direction: column; background: #F3F4F6; }
.case-desc { font-size: 14px; color: var(--secondary); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.case-footer { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 20px; }
.case-pill { font-size: 11px; font-weight: 600; color: var(--secondary); background: var(--light); border: 1px solid var(--border); padding: 3px 10px; border-radius: 100px; width: fit-content; }
.btn-case { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none; transition: gap 0.2s; white-space: nowrap; }
.btn-case:hover { gap: 10px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.testimonial {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 24px; display: flex; flex-direction: column;
}
.stars { color: #4A9EF5; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; font-style: italic; flex: 1; }
.testimonial-footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.15); }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── REVIEWS CAROUSEL ── */
.reviews-carousel {
  position: relative; margin: 56px auto 0;
}
.rc-viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
  padding: 8px 4px 24px;
  scroll-padding-left: 4px;
}
.rc-viewport::-webkit-scrollbar { display: none; }
.rc-viewport.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.rc-viewport.dragging .rc-card { pointer-events: none; }
.rc-track {
  display: flex; gap: 20px;
  width: max-content;
}
.rc-card {
  flex: 0 0 380px; box-sizing: border-box;
  scroll-snap-align: start; scroll-snap-stop: always;
  background: #fff; color: var(--navy);
  padding: 88px 36px 32px; position: relative;
  display: flex; flex-direction: column;
  border-radius: 18px; min-height: 340px;
  box-shadow: 0 24px 48px -28px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  user-select: none;
}
.rc-quote-mark {
  position: absolute; top: 18px; left: 28px;
  font-family: Georgia, serif; font-size: 100px; line-height: 1;
  color: var(--blue); opacity: 0.18; font-weight: 700;
  user-select: none; pointer-events: none;
}
.rc-stars { color: var(--blue); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; position: relative; }
.rc-text {
  font-size: 16px; line-height: 1.65; color: var(--body);
  margin: 0 0 28px; font-weight: 500;
  text-wrap: pretty;
}
.rc-meta {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid var(--border);
  margin-top: auto;
}
.rc-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.rc-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.rc-role { font-size: 13px; color: var(--secondary); margin-top: 2px; }

/* Arrows */
.rc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: none;
  color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s, opacity 0.2s;
  z-index: 2;
}
.rc-arrow svg { width: 20px; height: 20px; }
.rc-arrow:hover { background: var(--blue); color: var(--white); transform: translateY(-50%) scale(1.06); box-shadow: 0 8px 22px rgba(74,158,245,0.45); }
.rc-arrow:disabled { opacity: 0.5; cursor: default; pointer-events: none; }
.rc-prev { left: -24px; }
.rc-next { right: -24px; }

/* Avatar dots */
.rc-nav {
  display: flex; gap: 10px; justify-content: center; margin-top: 28px; flex-wrap: wrap;
}
.rc-dot {
  width: 44px; height: 44px; border-radius: 50%;
  padding: 0; background: transparent; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.18);
  overflow: hidden;
  opacity: 0.45; transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.rc-dot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rc-dot:hover { opacity: 0.8; transform: scale(1.06); }
.rc-dot.active { opacity: 1; border-color: var(--blue); transform: scale(1.08); }

@media (max-width: 700px) {
  .rc-arrow { width: 40px; height: 40px; }
  .rc-prev { left: 4px; }
  .rc-next { right: 4px; }
  .rc-card { flex: 0 0 calc(100vw - 60px); padding-left: 28px; padding-right: 28px; }
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.about-photo {
  aspect-ratio: 2/3; background: var(--border); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: monospace; font-size: 13px; color: var(--muted); text-align: center;
  line-height: 1.6; padding: 20px;
}
.about-copy h2 { font-size: clamp(26px,3.5vw,38px); font-weight: 900; color: var(--navy); margin-bottom: 20px; letter-spacing: -1px; line-height: 1.15; }
.about-copy p { font-size: 17px; color: var(--secondary); line-height: 1.85; margin-bottom: 18px; }
.about-copy strong { color: var(--navy); }

/* ── FINAL CTA ── */
.final-cta { background: var(--navy); padding: clamp(80px,10vw,130px) clamp(20px,5vw,60px); text-align: center; }
.final-cta h2 { font-size: clamp(32px,5vw,58px); font-weight: 900; color: var(--white); letter-spacing: -1px; max-width: 680px; margin: 0 auto 16px; line-height: 1.1; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.55); margin-bottom: 40px; }
.final-cta p a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.15s; }
.final-cta p a:hover { color: var(--white); }

/* ── FOOTER ── */
.footer { background: #071a30; border-top: 1px solid rgba(255,255,255,0.07); padding: 64px clamp(20px,5vw,60px) 40px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(32px,4vw,56px); }
.footer-logo { font-size: 20px; font-weight: 800; color: var(--white); text-decoration: none; display: inline-block; }
.footer-logo span { color: var(--blue); }
.footer-tagline { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.45); margin-top: 14px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: color 0.15s, border-color 0.15s; }
.footer-social-btn svg { width: 17px; height: 17px; }
.footer-social-btn:hover { color: var(--blue); border-color: var(--blue); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-list a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-list a:hover { color: var(--white); }
.footer-meta { font-size: 12.5px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-top: 16px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.28); }
@media (max-width: 900px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; gap: 36px; } }

/* ── FAQ ── */
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; text-align: left; font-family: 'Inter', sans-serif;
}
.faq-q span:first-child { font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--light);
  border: 1px solid var(--border); flex-shrink: 0; position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--navy);
  border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
  top: 50%; left: 50%;
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--navy); border-color: var(--navy); }
.faq-q[aria-expanded="true"] .faq-icon::before { background: #fff; }
.faq-q[aria-expanded="true"] .faq-icon::after { background: #fff; transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}
.faq-a.open { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; min-height: 0; }
.faq-a > div > p { font-size: 16px; color: var(--secondary); line-height: 1.8; padding-bottom: 22px; }
.case-hero { background: var(--navy); padding: 72px clamp(20px,5vw,60px) 64px; }
.case-hero-inner { max-width: 1140px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 36px; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.case-hero h1 { font-size: clamp(32px,4.2vw,50px); font-weight: 900; color: var(--white); letter-spacing: -1.5px; line-height: 1.1; max-width: 920px; margin-bottom: 16px; }
.case-hero-sub { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 640px; line-height: 1.7; }
.case-key-stats { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 52px; padding-top: 44px; border-top: 1px solid rgba(255,255,255,0.1); }
.case-stat-val { font-size: 44px; font-weight: 900; color: var(--blue); letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px; }
.case-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.45); }
.case-body-wrap { max-width: 1140px; margin: 0 auto; padding: 72px clamp(20px,5vw,60px); display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.case-body-wrap > aside { position: sticky; top: 88px; align-self: start; min-width: 0; }
.case-content { min-width: 0; max-width: 100%; }
.case-content-section { min-width: 0; max-width: 100%; }
.case-content-section { margin-bottom: 48px; }
.case-content-section h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.5px; }
.case-content-section p { font-size: 17px; color: var(--secondary); line-height: 1.85; margin-bottom: 14px; }
.case-content-section ul { font-size: 17px; color: var(--secondary); line-height: 1.85; margin: 0 0 18px 0; padding-left: 24px; }
.case-content-section ul li { margin-bottom: 8px; padding-left: 4px; }
.case-content-section ul li::marker { color: var(--blue); }
.case-sidebar-card { background: var(--light); border: 1px solid var(--border); border-radius: 14px; padding: 32px; }
.case-sidebar-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.sidebar-row { margin-bottom: 28px; }
.sidebar-row:last-child { margin-bottom: 0; }
.sidebar-val { font-size: 36px; font-weight: 900; color: var(--blue); letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.sidebar-lbl { font-size: 13px; color: var(--secondary); }

/* ── CASES OVERVIEW ── */
.cases-all-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }

/* ── CASE PAGE EXTRAS ── */
.case-results-visual {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; margin-bottom: 48px;
}
.crv-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.crv-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.crv-title { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.crv-pct { font-size: 15px; font-weight: 800; color: #059669; background: #ECFDF5; padding: 6px 12px; border-radius: 100px; white-space: nowrap; }
.crv-chart-wrap { display: flex; gap: 8px; }
.crv-yaxis { display: flex; flex-direction: column; justify-content: space-between; padding: 18px 0 24px; font-size: 10px; color: var(--muted); font-weight: 600; min-width: 36px; text-align: right; }
.crv-chart { background: #FAFBFC; border-radius: 12px; padding: 18px 18px 12px; flex: 1; }
.crv-axis { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: var(--muted); }
.crv-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 20px; }
.crv-stats > div { background: var(--light); border-radius: 10px; padding: 16px; text-align: center; }
.crv-stat-val { font-size: 24px; font-weight: 900; color: var(--blue); letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.crv-stat-lbl { font-size: 11px; color: var(--muted); font-weight: 600; }

.case-screenshots { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.case-shot { margin: 0; }
.case-shot-img {
  aspect-ratio: 4/3; background: var(--light); border: 1px dashed var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--muted); text-align: center; font-family: monospace; line-height: 1.5;
}
img.case-shot-img {
  display: block; width: 100%; height: auto; aspect-ratio: auto;
  background: transparent; border: 1px solid var(--border); border-style: solid; border-radius: 12px;
  cursor: zoom-in; transition: opacity 0.15s;
}
img.case-shot-img:hover { opacity: 0.92; }

/* Lightbox popup */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(11,37,69,0.85);
  display: none; align-items: center; justify-content: center;
  z-index: 9999; padding: 60px clamp(60px, 8vw, 100px);
  animation: lightbox-fade 0.18s ease;
}
.lightbox-overlay.open { display: flex; }
@keyframes lightbox-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content {
  position: relative; max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lightbox-overlay img {
  max-width: 100%; max-height: calc(100vh - 160px);
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border-radius: 8px;
  background: #fff;
}
.lightbox-caption {
  color: rgba(255,255,255,0.8); font-size: 14px;
  text-align: center; max-width: 600px;
}
.lightbox-close, .lightbox-arrow {
  position: fixed; width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--white); color: var(--navy);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10000; box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
}
img.case-shot-img { touch-action: manipulation; }
.lightbox-close { top: 24px; right: 24px; font-size: 22px; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); }
.lightbox-arrow svg { width: 20px; height: 20px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close:hover, .lightbox-arrow:hover {
  background: var(--blue); color: var(--white);
  box-shadow: 0 8px 22px rgba(74,158,245,0.45);
}
.lightbox-arrow:hover { transform: translateY(-50%) scale(1.06); }
body.lightbox-open { overflow: hidden; }
@media (max-width: 700px) {
  .lightbox-overlay { padding: 60px 20px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
.case-shot figcaption { font-size: 12px; color: var(--secondary); margin-top: 10px; line-height: 1.4; }

/* Start state visual */
.case-startstate { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.css-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.css-shots-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.css-shot { margin: 0; }
.css-shot .case-shot-img { aspect-ratio: 16/10; }
.css-shot figcaption { font-size: 12px; color: var(--secondary); margin-top: 10px; line-height: 1.4; }
@media (max-width: 700px) { .css-shots-grid { grid-template-columns: 1fr; } }

/* Carousel */
.case-carousel { position: relative; overflow: hidden; border-radius: 14px; background: #fff; border: 1px solid var(--border); width: 100%; max-width: 100%; }
.cc-track { display: flex; transition: transform 0.4s ease; width: 100%; }
.cc-slide { flex: 0 0 100%; min-width: 0; max-width: 100%; margin: 0; padding: 28px; box-sizing: border-box; }
.cc-slide .case-shot-img { aspect-ratio: 16/9; }
.cc-slide figcaption { font-size: 13px; color: var(--secondary); margin-top: 12px; text-align: center; }
.cc-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; cursor: pointer; font-size: 22px; color: var(--navy);
  display: flex; align-items: center; justify-content: center; line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: background 0.15s;
}
.cc-btn:hover { background: var(--light); }
.cc-prev { left: 12px; }
.cc-next { right: 12px; }
.cc-dots { display: flex; justify-content: center; gap: 8px; padding: 0 0 18px; }
.cc-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; padding: 0; }
.cc-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

.case-testimonial {
  background: var(--navy); color: #fff; border-radius: 16px;
  padding: 36px 36px 32px; margin-top: 48px; position: relative;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size: 32px 32px;
}
.case-test-quote-mark { font-size: 80px; line-height: 0.6; color: var(--blue); font-weight: 900; margin-bottom: 4px; height: 40px; }
.case-test-quote { font-size: 18px; line-height: 1.65; color: rgba(255,255,255,0.92); margin: 0 0 24px; font-weight: 500; }
.case-test-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.case-test-author .testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.case-test-name { font-size: 15px; font-weight: 700; color: #fff; }
.case-test-role { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }

@media (max-width: 700px) {
  .crv-header { flex-direction: column; }
  .crv-stats { grid-template-columns: 1fr; }
  .case-screenshots { grid-template-columns: 1fr; }
  .case-testimonial { padding: 28px 24px 24px; }
  .case-test-quote { font-size: 16px; }
}

/* ── FADE ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .blueprint-steps { grid-template-columns: repeat(3,1fr); }
  .about-grid { grid-template-columns: 1fr 2fr; }
}
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; height: 2px; width: 100%; background: var(--navy); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #0B2545; z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; overflow: hidden;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay ul { list-style: none; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 48px; padding: 0; }
.nav-overlay ul a {
  font-size: 32px; font-weight: 800; color: rgba(255,255,255,0.85);
  text-decoration: none; padding: 10px 32px; display: block;
  letter-spacing: -0.5px; transition: color 0.15s; font-family: 'Inter', sans-serif;
}
.nav-overlay ul a:hover { color: #fff; }
.nav-overlay .nav-overlay-cta {
  background: #4A9EF5; color: #fff;
  padding: 16px 40px; border-radius: 10px;
  font-size: 17px; font-weight: 700; text-decoration: none;
  display: inline-block; transition: background 0.15s; font-family: 'Inter', sans-serif;
}
.nav-overlay .nav-overlay-cta:hover { background: #3a8de0; }

/* Close button inside overlay */
.nav-overlay-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: #fff; font-size: 28px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.7; transition: opacity 0.15s;
}
.nav-overlay-close:hover { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  body.menu-open { overflow: hidden; position: fixed; width: 100%; }

  /* Case page: kill overflow sources */
  .case-content { min-width: 0; }
  .case-results-visual { overflow: hidden; }
  .case-carousel { overflow: hidden; }
  .crv-chart svg { width: 100%; height: auto; }
  .case-test-quote { word-wrap: break-word; overflow-wrap: break-word; }

  /* Grids → single column */
  .why-card { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .case-body-wrap { grid-template-columns: 1fr; gap: 40px; }
  .packages-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .cases-all-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .bp-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-chart-wrap { border-right: none; border-bottom: 1px solid #E5E7EB; }
  .dash-metrics { grid-template-columns: repeat(2,1fr); }
  .dash-metric:nth-child(2) { border-right: none; }
  .hero-dash-outer { padding: 0; }
  .dash-float { display: none; }

  /* Blueprint tabs → wrap */
  .bp-tab { font-size: 12px; padding: 10px 12px; }

  /* Blueprint panel: copy first, visual second */
  .bp-panel.active { display: flex; flex-direction: column; }
  .bp-visual { order: 2; }
  .bp-copy { order: 1; }

  /* Pricing strip → stacked */
  .bp-pricing-strip { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .bp-strip-tiers { flex-direction: column; align-items: center; gap: 12px; }
  .bp-strip-divider { width: 40px; height: 1px; }

  /* AI platforms */
  .ai-plat-platforms { gap: 24px; }

  /* Guarantee strip */
  .pkg-guarantee { flex-direction: column; align-items: center; text-align: center; }

  /* AI platforms smaller icons */
  .ai-plat-icon { width: 48px; height: 48px; border-radius: 12px; }
  .ai-plat-icon svg { width: 24px; height: 24px; }
  .ai-plat-platforms { gap: 20px; }
  .ai-plat-name { font-size: 11px; }

  /* Cases: button below grid */
  .cases-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* About: image below text, taller */
  .about-grid { display: flex; flex-direction: column; gap: 40px; }
  .about-copy { order: 1; }
  .about-photo { order: 2; width: 100%; max-width: 480px; height: 520px; aspect-ratio: unset; margin: 0 auto; }

  /* Blueprint mockups full width */
  .bp-visual { width: 100%; }
  .bp-mockup { width: 100%; }

  .footer-inner { text-align: left; }

  /* ── CASE PAGES ── */
  .case-hero { padding: 100px clamp(20px,5vw,60px) 56px; }
  .case-hero h1 { font-size: clamp(34px, 7vw, 52px); line-height: 1.05; }
  .case-hero h1 br { display: none; }
  .case-hero-sub { font-size: 16px; }
  .case-key-stats { grid-template-columns: 1fr; gap: 18px; padding-top: 28px; margin-top: 32px; }
  .case-stat-val { font-size: 36px; }

  .case-body-wrap { padding: 48px clamp(20px,5vw,60px); display: flex; flex-direction: column; }
  .case-body-wrap > aside { position: static; order: -1; width: 100%; }
  .case-body-wrap > .case-content { width: 100%; min-width: 0; max-width: 100%; }
  .case-body-wrap > .case-content > * { max-width: 100%; min-width: 0; }
  .case-sidebar-card { padding: 24px; }
  .case-content-section h2 { font-size: 22px; }
  .case-content-section p { font-size: 16px; line-height: 1.7; }
  .case-content-section ul { font-size: 16px; line-height: 1.7; }

  /* Results visual chart */
  .crv-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .crv-title { font-size: 18px; }
  .crv-pct { font-size: 13px; }
  .crv-yaxis { min-width: 32px; font-size: 9px; }

  /* Carousel */
  .cc-slide { padding: 18px; }
  .cc-btn { width: 36px; height: 36px; font-size: 20px; }
  .cc-prev { left: 8px; }
  .cc-next { right: 8px; }

  /* Testimonial */
  .case-testimonial { padding: 28px 24px; }
  .case-test-quote { font-size: 17px; }
  .case-test-quote-mark { font-size: 56px; }

  .breadcrumb { font-size: 12px; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .bp-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .bp-tab { white-space: nowrap; flex-shrink: 0; }
  .hero-stats { gap: 24px; }
  .packages-header { grid-template-columns: 1fr; gap: 16px; }

  /* Case page mobile */
  .case-hero { padding: 80px 20px 40px; }
  .case-hero h1 { font-size: 32px; }
  .case-hero-sub { font-size: 15px; }
  .case-body-wrap { padding: 36px 20px; gap: 32px; }
  .case-content-section { margin-bottom: 36px; }
  .case-content-section h2 { font-size: 20px; }
  .case-content-section p { font-size: 15px; }
  .case-content-section ul { font-size: 15px; }
  .case-sidebar-card { padding: 22px; }
  .sidebar-val { font-size: 30px; }
  .case-results-visual { padding: 20px; }
  .crv-title { font-size: 16px; }
  .crv-yaxis { min-width: 28px; font-size: 9px; }
  .crv-chart { padding: 12px 10px 8px; }
  .crv-axis { font-size: 9px; }
  .cc-slide { padding: 16px; }
  .cc-slide figcaption { font-size: 11px; }
  .case-shot-img { font-size: 11px; }
  .case-testimonial { padding: 24px 20px; }
  .case-test-quote { font-size: 16px; }
  .final-cta h2 { font-size: 30px; }
  .final-cta h2 br { display: none; }
  .final-cta p br { display: none; }
}
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 20px; }
.footer-cookie-link {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: inherit; font-size: 12.5px; color: rgba(255,255,255,0.45);
  text-decoration: underline; text-underline-offset: 3px;
}
.footer-cookie-link:hover { color: rgba(255,255,255,0.8); }

/* ── COOKIEBANNER ── */
html.ckb-locked, body.ckb-locked { overflow: hidden; }
html.ckb-locked { scrollbar-gutter: stable; }

.ckb-overlay{position:fixed;inset:0;z-index:9999;background:rgba(11,37,69,.62);display:flex;align-items:center;justify-content:center;padding:20px;overflow-y:auto}
.ckb-overlay[hidden]{display:none}

.ckb{background:#fff;border-radius:14px;width:100%;max-width:460px;max-height:calc(100vh - 40px);overflow-y:auto;box-shadow:0 20px 60px rgba(11,37,69,.28)}
.ckb-inner{padding:28px}
.ckb-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:12px}
.ckb-title{font-size:20px;font-weight:800;color:#0B2545;letter-spacing:-.4px;line-height:1.25}
.ckb-icon{flex-shrink:0;width:36px;height:36px;border-radius:50%;background:#EFF6FF;display:flex;align-items:center;justify-content:center}
.ckb-icon svg{width:19px;height:19px}
.ckb-intro{font-size:14px;line-height:1.65;color:#374151}
.ckb-intro a{color:#4A9EF5;text-decoration:underline;text-underline-offset:2px}
.ckb-intro a:hover{color:#3a8de0}

.ckb-groups{margin:22px 0 24px;border-top:1px solid #E5E7EB}
.ckb-group{border-bottom:1px solid #E5E7EB}
.ckb-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 0}
.ckb-toggle-btn{flex:1;min-width:0;display:flex;align-items:center;gap:9px;background:none;border:0;padding:0;cursor:pointer;font:600 14px Inter,sans-serif;color:#0B2545;text-align:left}
.ckb-toggle-btn:focus-visible{outline:2px solid #4A9EF5;outline-offset:3px;border-radius:4px}
.ckb-caret{flex-shrink:0;width:9px;height:9px;transition:transform .2s}
.ckb-caret path{stroke:#9CA3AF;stroke-width:2.4;fill:none;stroke-linecap:round;stroke-linejoin:round}
.ckb-toggle-btn[aria-expanded="true"] .ckb-caret{transform:rotate(90deg)}
.ckb-locked-label{flex-shrink:0;font-size:12px;font-weight:500;color:#9CA3AF}

.ckb-switch{flex-shrink:0;position:relative;display:inline-block;width:42px;height:24px}
.ckb-switch input{position:absolute;inset:0;width:100%;height:100%;margin:0;opacity:0;cursor:pointer}
.ckb-track{position:absolute;inset:0;background:#E5E7EB;border-radius:100px;transition:background .18s;pointer-events:none}
.ckb-track::after{content:'';position:absolute;top:3px;left:3px;width:18px;height:18px;background:#fff;border-radius:50%;transition:transform .18s;box-shadow:0 1px 3px rgba(11,37,69,.2)}
.ckb-switch input:checked+.ckb-track{background:#4A9EF5}
.ckb-switch input:checked+.ckb-track::after{transform:translateX(18px)}
.ckb-switch input:focus-visible+.ckb-track{outline:2px solid #4A9EF5;outline-offset:3px}

.ckb-body{display:grid;grid-template-rows:0fr;transition:grid-template-rows .25s ease}
.ckb-body.open{grid-template-rows:1fr}
.ckb-body>div{overflow:hidden;min-height:0}
.ckb-body p{font-size:13px;line-height:1.65;color:#9CA3AF;padding:0 0 16px}

.ckb-actions{display:flex;flex-direction:column;gap:10px}
.ckb-btn{flex:1;border:1px solid transparent;border-radius:8px;padding:13px 18px;font:600 14.5px Inter,sans-serif;cursor:pointer;transition:background .15s,border-color .15s}
.ckb-btn:focus-visible{outline:2px solid #4A9EF5;outline-offset:2px}
.ckb-btn--accept{background:#1F6FD0;border-color:#1F6FD0;color:#fff}
.ckb-btn--accept:hover{background:#1A5CB0;border-color:#1A5CB0}
.ckb-btn--reject{background:#fff;color:#0B2545;border-color:#E5E7EB}
.ckb-btn--reject:hover{background:#F9FAFB;border-color:#9CA3AF}
.ckb-link{align-self:center;background:none;border:0;padding:6px 4px;margin-top:2px;font:500 13.5px Inter,sans-serif;color:#374151;text-decoration:underline;text-underline-offset:2px;cursor:pointer}
.ckb-link:hover{color:#0B2545}
.ckb-link:focus-visible{outline:2px solid #4A9EF5;outline-offset:2px;border-radius:4px}

@media (min-width:480px){
  .ckb-actions{flex-direction:row;flex-wrap:wrap}
  .ckb-btn{min-width:0}
  .ckb-link{flex-basis:100%;margin-top:4px}
}

/* ── LEGAL ── */
.legal { max-width: 760px; margin: 0 auto; }
.legal-intro { font-size: 17px; line-height: 1.75; color: var(--body); }
.legal h2 { font-size: clamp(21px,2.6vw,27px); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin: 46px 0 14px; }
.legal h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 26px 0 8px; }
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--secondary); }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--navy); }
.legal-scroll { overflow-x: auto; margin: 10px 0 22px; }
.legal-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 14.5px; }
.legal-table th, .legal-table td { text-align: left; padding: 11px 13px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-table th { font-weight: 700; color: var(--navy); background: var(--light); }
.legal-table td { color: var(--secondary); line-height: 1.6; }
.legal-inline-btn { background: none; border: 0; padding: 0; font: inherit; color: var(--blue); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.legal-inline-btn:hover { color: var(--navy); }
.legal-updated { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 14px; color: var(--muted); }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; }
.footer-legal a.footer-cookie-link { text-decoration: underline; text-underline-offset: 3px; }
.ckb-bubble {
  position: fixed; left: 20px; bottom: 20px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; border: 0; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(11,37,69,0.28);
  transition: transform 0.15s, background 0.15s;
}
.ckb-bubble.is-visible { display: flex; }
.ckb-bubble:hover { background: #14345C; transform: scale(1.06); }
.ckb-bubble:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.ckb-bubble svg { width: 21px; height: 21px; }
@media (max-width: 560px) { .ckb-bubble { left: 14px; bottom: 14px; width: 40px; height: 40px; } }
