/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

:root {
  --navy: #0d1b35;
  --navy-mid: #122040;
  --navy-dark: #060e1d;
  --blue: #1a6bdc;
  --blue-hover: #1457c0;
  --blue-light: #dbeafe;
  --blue-glow: rgba(26,107,220,.25);
  --green: #16a34a;
  --green-hover: #14923f;
  --green-light: #dcfce7;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --red: #dc2626;
  --red-light: #fee2e2;
  --grey-50: #f8f9fc;
  --grey-100: #f1f3f8;
  --grey-200: #e4e7f0;
  --grey-300: #c8cdd9;
  --grey-500: #7e8a9f;
  --grey-700: #3a4558;
  --grey-900: #161d2e;
  --text: #161d2e;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 3px rgba(13,27,53,.06);
  --shadow-sm: 0 2px 8px rgba(13,27,53,.08);
  --shadow: 0 6px 20px rgba(13,27,53,.10);
  --shadow-lg: 0 16px 48px rgba(13,27,53,.14);
  --shadow-xl: 0 28px 72px rgba(13,27,53,.18);
  --max-w: 1120px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t: .22s var(--ease);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  line-height: 1.18;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -.02em; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
p { margin-bottom: 1rem; color: var(--grey-700); line-height: 1.72; }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); font-weight: 700; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--grey-50); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }

/* ===== NAV ===== */
.nav {
  background: rgba(6,14,29,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0 1.5rem;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: box-shadow var(--t), border-color var(--t);
}
.nav-scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
  border-bottom-color: rgba(255,255,255,.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  text-decoration: none; white-space: nowrap; letter-spacing: -.03em;
}
.nav-logo span { color: #60a5fa; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,.65); font-size: .9rem; font-weight: 500;
  text-decoration: none; transition: color var(--t);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  padding: .5rem 1.25rem !important; border-radius: var(--radius-sm) !important;
  font-weight: 600 !important; font-size: .875rem !important;
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
  box-shadow: 0 2px 8px var(--blue-glow) !important;
}
.nav-cta:hover {
  background: var(--blue-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px var(--blue-glow) !important;
  text-decoration: none !important;
}
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--t); border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 2rem; border-radius: var(--radius-sm);
  font-size: .975rem; font-weight: 600; cursor: pointer;
  transition: all var(--t); border: none; text-decoration: none;
  text-align: center; line-height: 1.3; gap: .5rem; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 16px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-hover); color: var(--white);
  box-shadow: 0 8px 28px var(--blue-glow); transform: translateY(-2px);
}
.btn-success {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 16px rgba(22,163,74,.28);
}
.btn-success:hover {
  background: var(--green-hover); color: var(--white);
  box-shadow: 0 8px 28px rgba(22,163,74,.36); transform: translateY(-2px);
}
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.16); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: var(--white); transform: translateY(-1px); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem 1rem; font-size: .875rem; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 1rem;
  background: var(--blue-light);
  padding: .28rem .85rem; border-radius: 999px;
}
.section-header { max-width: 640px; }
.section-header.center { margin: 0 auto; text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1.1rem; }

/* ===== HERO ===== */
.hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 7rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 0%, rgba(26,107,220,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,107,220,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 100%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .38rem 1rem;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.75);
  margin-bottom: 1.75rem; width: fit-content;
  backdrop-filter: blur(8px);
}
.hero-pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50% { box-shadow: 0 0 0 7px rgba(34,197,94,.08); }
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.35rem;
  line-height: 1.1;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  color: rgba(255,255,255,.68);
  font-size: 1.15rem; line-height: 1.72;
  margin-bottom: 2.25rem; max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-trust { display: flex; flex-direction: column; gap: .55rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .875rem; color: rgba(255,255,255,.55);
}
/* Video */
.hero-video-wrap { position: relative; }
.hero-video-card {
  border-radius: var(--radius-xl);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.07);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease);
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #111f3a 0%, #1a3060 100%);
  position: relative;
}
.hero-video-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.12); }
.hero-video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.1rem;
}
.hero-video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(26,107,220,.2) 0%, transparent 70%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3) 100%);
}
.video-play-btn {
  width: 76px; height: 76px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease-spring);
  position: relative; z-index: 1;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.hero-video-card:hover .video-play-btn {
  background: rgba(255,255,255,.22);
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(0,0,0,.4);
}
.video-label {
  color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 600;
  position: relative; z-index: 1; text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.video-duration {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 2;
  background: rgba(0,0,0,.55); color: white;
  font-size: .75rem; font-weight: 700;
  padding: .22rem .55rem; border-radius: 5px;
  backdrop-filter: blur(6px);
  letter-spacing: .04em;
}
.hero-video-badge {
  position: absolute; bottom: -1.1rem; left: -1.1rem;
  background: var(--white); border-radius: var(--radius);
  padding: .875rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .6rem;
  font-size: .875rem; font-weight: 700; color: var(--navy);
  white-space: nowrap;
}
.badge-pulse {
  width: 9px; height: 9px; background: var(--green); border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(22,163,74,.2);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 1.1rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .825rem; font-weight: 600; color: var(--grey-700);
  padding: .35rem 1.5rem;
}
.trust-divider { width: 1px; height: 18px; background: var(--grey-200); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t), transform var(--t);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-featured {
  border-color: rgba(26,107,220,.3);
  box-shadow: 0 0 0 2px rgba(26,107,220,.1), var(--shadow-sm);
  background: linear-gradient(160deg, #f8faff 0%, #fff 100%);
}
.testimonial-stars { color: #f59e0b; font-size: .95rem; letter-spacing: .1em; }
.testimonial-text {
  font-size: .9375rem; line-height: 1.72; color: var(--grey-700);
  font-style: italic; flex: 1; margin: 0;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #1a6bdc 0%, #60a5fa 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: white;
  flex-shrink: 0; letter-spacing: .05em;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-role { font-size: .78rem; color: var(--grey-500); margin-top: .1rem; }

/* ===== HOW IT WORKS ===== */
.how-steps {
  display: flex; align-items: stretch; gap: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.how-step {
  flex: 1; padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: background var(--t);
  position: relative;
}
.how-step:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--grey-200) 30%, var(--grey-200) 70%, transparent);
}
.how-step:hover { background: var(--grey-50); }
.how-step-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--blue) 0%, #4f8ef0 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.35rem;
  box-shadow: 0 8px 24px var(--blue-glow);
}
.how-step-num {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: .55rem; opacity: .65;
}
.how-step h3 { margin-bottom: .55rem; font-size: 1.1rem; }
.how-step p { font-size: .9rem; margin: 0; }
.how-step-arrow {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; opacity: .3;
  padding-bottom: 2rem;
  align-self: center;
}
.how-cta {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center; margin-top: 3rem;
}
.how-cta-note { font-size: .875rem; color: var(--grey-500); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy-dark);
  padding: 4.5rem 1.5rem 4rem;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(26,107,220,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 100%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero .breadcrumb { justify-content: center; margin-bottom: 1.25rem; }
.page-hero .breadcrumb a,
.page-hero .breadcrumb span { color: rgba(255,255,255,.45); }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,.25); }
.page-hero .section-label { margin-bottom: 1rem; }
.page-hero h1 { color: white; margin-bottom: .875rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ===== JOURNEY TEASER (homepage) ===== */
.journey-teaser {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.journey-teaser-steps { display: flex; flex-direction: column; }
.jt-step {
  display: flex; align-items: center; gap: 1rem;
  padding: .875rem .5rem;
  border-radius: var(--radius);
  transition: background var(--t);
}
.jt-step:hover { background: var(--grey-50); }
.jt-active .jt-num { background: var(--blue); box-shadow: 0 4px 12px var(--blue-glow); }
.jt-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--grey-200); color: var(--grey-700);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 800; color: var(--grey-700);
  transition: background var(--t);
}
.jt-active .jt-num { color: white; }
.jt-num-green { background: var(--green) !important; box-shadow: 0 4px 12px rgba(22,163,74,.3); }
.jt-content { flex: 1; }
.jt-title { font-size: .95rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.jt-sub { font-size: .8rem; color: var(--grey-500); margin-top: .15rem; }
.jt-badge {
  display: inline-flex; align-items: center;
  padding: .22rem .7rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; white-space: nowrap;
}
.jt-badge-blue { background: var(--blue-light); color: #1d4ed8; }
.jt-badge-amber { background: var(--amber-light); color: #92400e; }
.jt-connector {
  width: 2px; height: 24px; align-self: flex-start;
  background: var(--grey-200); margin: 0 17px;
}
.jt-connector-fork { display: none; }
.jt-fork-row {
  display: flex; align-items: stretch; gap: 0;
  margin: 0 .5rem;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.jt-fork-item {
  flex: 1; padding: .875rem 1rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.jt-fork-item + .jt-fork-item { border-left: 1px solid var(--grey-200); }
.jt-fork-red { border-top: 2px solid var(--red); }
.jt-fork-green { border-top: 2px solid var(--green); }
.jt-fork-or {
  display: flex; align-items: center; justify-content: center;
  padding: 0 .75rem;
  font-size: .75rem; font-weight: 700; color: var(--grey-400);
  background: var(--grey-50);
  border-left: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
}
.jt-fork-num { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-500); }
.jt-fork-title { font-size: .875rem; font-weight: 700; color: var(--navy); }
.jt-fork-sub { font-size: .75rem; color: var(--grey-500); }
.jt-step-final { border: 1px solid rgba(22,163,74,.2); background: rgba(22,163,74,.03); border-radius: var(--radius); }
.journey-teaser-cta {
  display: flex; flex-direction: column; gap: .875rem;
  position: sticky; top: 88px;
  padding: 1.75rem;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
}
.jt-cta-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--grey-500); margin-bottom: .25rem;
}
.jt-cta-note { font-size: .8rem; color: var(--grey-500); text-align: center; }

/* ===== DEBT COLLECTION JOURNEY ===== */
.journey-section {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  overflow: hidden;
}
.journey-section-header {
  padding: 5rem 0 3.5rem;
  text-align: center;
}
.journey-section-header .section-label { margin-bottom: 1rem; }
.journey-section-header h2 { margin-bottom: .75rem; }
.journey-section-header p { font-size: 1.05rem; color: var(--grey-700); max-width: 560px; margin: 0 auto; }

/* Linear phases (steps 1-3) */
.journey-phase { padding: 0 0 1.5rem; }
.journey-linear-track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}
.journey-linear-track::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(33.333% / 2 + 20px); right: calc(33.333% / 2 + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--blue), rgba(26,107,220,.3));
  z-index: 0;
}
.jl-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; position: relative; padding: 0 1rem;
}
.jl-node {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--grey-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  margin-bottom: 1.5rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.jl-active .jl-node {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(26,107,220,.15);
}
.jl-node-num {
  font-size: .95rem; font-weight: 800; color: var(--grey-500);
  line-height: 1;
}
.jl-active .jl-node-num { color: white; }
.jl-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 100%;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  text-align: left;
}
.jl-step:hover .jl-card { box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(26,107,220,.25); }
.jl-day {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--grey-500);
  margin-bottom: .5rem;
}
.jl-active .jl-day { color: var(--blue); }
.jl-card h4 { margin-bottom: .5rem; font-size: 1rem; }
.jl-card p { font-size: .875rem; margin-bottom: .875rem; }
.jl-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28rem .75rem; border-radius: 999px;
  font-size: .74rem; font-weight: 700;
}
.jl-badge-blue { background: var(--blue-light); color: #1d4ed8; }
.jl-badge-amber { background: var(--amber-light); color: #92400e; }
.jl-badge-green { background: var(--green-light); color: #15803d; }
.jl-badge-navy { background: var(--grey-200); color: var(--navy); }

/* Fork phase */
.journey-phase-fork { padding: 0 0 0; }
.journey-fork-header {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2rem;
}
.journey-fork-bridge {
  flex: 1; height: 2px;
  background: linear-gradient(to right, transparent, var(--grey-300));
}
.journey-fork-bridge:last-child {
  background: linear-gradient(to left, transparent, var(--grey-300));
}
.journey-fork-title {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--grey-500);
  white-space: nowrap;
  background: var(--grey-50); padding: .35rem 1rem;
  border: 1px solid var(--grey-200); border-radius: 999px;
}
.journey-fork-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
}
.jf-branch { }
.jf-branch-label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--grey-500);
  margin-bottom: 1rem; padding: 0 .25rem;
}
.jf-label-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.jf-dot-red { background: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,.2); }
.jf-dot-green { background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
.jf-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t), transform var(--t);
  height: 100%;
}
.jf-branch-no .jf-card { border-left: 3px solid var(--red); }
.jf-branch-yes .jf-card { border-left: 3px solid var(--green); }
.jf-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.jf-step-num {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--grey-500);
  margin-bottom: .5rem;
}
.jf-card h4 { margin-bottom: .5rem; }
.jf-card p { font-size: .875rem; margin-bottom: .875rem; }
.jf-or {
  display: flex; align-items: center; justify-content: center;
  padding-top: 2.5rem;
}
.jf-or span {
  width: 40px; height: 40px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--grey-500);
}

/* Resolution phase */
.journey-phase-resolution { padding: 1.5rem 0 4rem; }
.journey-resolution-bridge {
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, var(--grey-300), var(--green));
  margin: 0 auto 0;
}
.journey-resolution-card {
  background: linear-gradient(135deg, #0a1f3d 0%, #0d2847 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}
.jr-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green) 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(22,163,74,.4);
}
.jr-content { flex: 1; }
.jr-step {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: .4rem;
}
.journey-resolution-card h4 { color: white; font-size: 1.25rem; margin-bottom: .5rem; }
.journey-resolution-card p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }
.journey-stats-row {
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
}
.journey-stat { flex: 1; text-align: center; padding: 0 1.5rem; }
.journey-stat-num {
  font-size: 2.25rem; font-weight: 900; color: var(--blue);
  line-height: 1; margin-bottom: .4rem; letter-spacing: -.03em;
}
.journey-stat-label { font-size: .83rem; color: var(--grey-500); line-height: 1.4; }
.journey-stat-divider { width: 1px; height: 48px; background: var(--grey-200); flex-shrink: 0; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 820px; margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t), transform var(--t);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pricing-card-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,107,220,.1), var(--shadow);
  background: linear-gradient(160deg, #f6f9ff 0%, #fff 60%);
}
.pricing-badge {
  display: inline-flex;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .28rem .875rem;
  border-radius: 999px; margin-bottom: 1.35rem;
}
.pricing-badge-blue { background: var(--blue-light); color: #1d4ed8; }
.pricing-badge-green { background: var(--green-light); color: #15803d; }
.pricing-price {
  font-size: 3.25rem; font-weight: 900; color: var(--navy);
  line-height: 1; margin-bottom: .25rem; letter-spacing: -.04em;
}
.pricing-price-note { font-size: .84rem; color: var(--grey-500); margin-bottom: 1.35rem; }
.pricing-card h3 { margin-bottom: .6rem; }
.pricing-card > p { font-size: .925rem; margin-bottom: 1.75rem; }
.pricing-features { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2.25rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--grey-700); }
.pf-check { color: var(--green); font-size: .875rem; flex-shrink: 0; margin-top: .05rem; font-weight: 700; }
.pricing-guarantee { text-align: center; margin-top: 1rem; font-size: .8rem; color: var(--grey-500); font-weight: 600; }

/* ===== FAQ ===== */
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  border: 1px solid var(--grey-200); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow var(--t), border-color var(--t);
  background: var(--white);
}
.faq-item.open { border-color: rgba(26,107,220,.3); box-shadow: 0 0 0 3px rgba(26,107,220,.08); }
.faq-question {
  width: 100%; padding: 1.15rem 1.35rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--navy); background: transparent;
  user-select: none; border: none; text-align: left; font-size: 1rem;
  transition: background var(--t);
}
.faq-question:hover { background: var(--grey-50); }
.faq-icon {
  color: var(--blue); flex-shrink: 0; margin-left: 1.25rem;
  transition: transform .28s var(--ease-out);
  display: flex; align-items: center;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.35rem;
  max-height: 0; overflow: hidden;
  transition: max-height .38s var(--ease-out), padding .38s var(--ease-out);
  color: var(--grey-700); font-size: .95rem; line-height: 1.72;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.35rem 1.35rem; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy-dark);
  color: var(--white); padding: 6rem 1.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,107,220,.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-content { max-width: 580px; margin: 0 auto; }
.cta-band h2 { color: var(--white); margin-bottom: .875rem; }
.cta-band p { color: rgba(255,255,255,.65); font-size: 1.1rem; margin-bottom: 2.25rem; }
.cta-band-actions { display: flex; flex-direction: column; align-items: center; gap: .875rem; }
.cta-band-note {
  display: flex; align-items: center; gap: .4rem;
  font-size: .875rem; color: rgba(255,255,255,.4);
}

/* ===== CARDS (shared) ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs); padding: 1.875rem; border: 1px solid var(--grey-200);
}
.card-hover { transition: box-shadow var(--t), transform var(--t); }
.card-hover:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.4rem;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--navy); }
label .required { color: var(--red); margin-left: 2px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="date"], input[type="url"], select, textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm); font-size: 1rem; font-family: var(--font);
  color: var(--text); background: var(--white);
  transition: border var(--t), box-shadow var(--t); appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,107,220,.12);
}
input.error, select.error, textarea.error { border-color: var(--red); }
.field-error { font-size: .8rem; color: var(--red); margin-top: .25rem; }
textarea { resize: vertical; min-height: 90px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a94a8' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-hint { font-size: .8rem; color: var(--grey-500); margin-top: .3rem; }
.checkbox-group { display: flex; align-items: flex-start; gap: .6rem; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.checkbox-group label { font-weight: 400; margin-bottom: 0; cursor: pointer; font-size: .9rem; }
.file-upload { border: 2px dashed var(--grey-300); border-radius: var(--radius-sm); padding: 1.5rem; text-align: center; cursor: pointer; transition: border var(--t); }
.file-upload:hover { border-color: var(--blue); }
.file-upload input[type="file"] { display: none; }
.file-upload-label { cursor: pointer; color: var(--blue); font-weight: 600; }
.form-section { border-top: 1px solid var(--grey-200); padding-top: 1.5rem; margin-top: 1.5rem; }
.form-section-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }

/* ===== ALERTS ===== */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: .9rem; }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-danger { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ===== BADGES ===== */
.badge { display: inline-flex; align-items: center; padding: .2rem .65rem; border-radius: 999px; font-size: .78rem; font-weight: 600; }
.badge-blue { background: var(--blue-light); color: #1e40af; }
.badge-green { background: var(--green-light); color: #166534; }
.badge-amber { background: var(--amber-light); color: #92400e; }
.badge-red { background: var(--red-light); color: #991b1b; }
.badge-grey { background: var(--grey-200); color: var(--grey-700); }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { background: var(--grey-100); color: var(--navy); font-weight: 700; font-size: .85rem; padding: .75rem 1rem; text-align: left; border-bottom: 2px solid var(--grey-300); }
td { padding: .75rem 1rem; border-bottom: 1px solid var(--grey-200); font-size: .9rem; vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--grey-50); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: .45rem; top: 0; bottom: 0; width: 2px; background: var(--grey-200); }
.timeline-item { position: relative; margin-bottom: 1.5rem; }
.timeline-dot { position: absolute; left: -1.75rem; top: .3rem; width: 14px; height: 14px; border-radius: 50%; background: var(--blue); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--blue); }
.timeline-dot.done { background: var(--green); box-shadow: 0 0 0 2px var(--green); }
.timeline-dot.pending { background: var(--grey-300); box-shadow: 0 0 0 2px var(--grey-300); }
.timeline-label { font-size: .78rem; color: var(--grey-500); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.timeline-content { font-size: .9rem; color: var(--grey-700); margin-top: .2rem; }

/* ===== PROGRESS BAR ===== */
.progress-bar { background: var(--grey-200); border-radius: 999px; height: 8px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: var(--blue); transition: width .4s ease; }
.progress-fill.green { background: var(--green); }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--grey-500); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--grey-500); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--grey-300); }

/* ===== REVIEW ===== */
.review { padding: 1.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--grey-200); }
.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .6rem; }
.review-text { font-size: .9rem; color: var(--grey-700); margin-bottom: .75rem; font-style: italic; }
.review-author { font-size: .85rem; font-weight: 700; color: var(--navy); }

/* ===== STATS ===== */
.stat-block { text-align: center; }
.stat-block .stat-num { font-size: 2.5rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: .3rem; }
.stat-block .stat-label { font-size: .875rem; color: var(--grey-700); }

/* ===== TOOL OUTPUT ===== */
.tool-result { background: var(--grey-50); border: 1.5px solid var(--grey-200); border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem; }
.tool-result-value { font-size: 2.2rem; font-weight: 900; color: var(--navy); }
.tool-result-label { font-size: .9rem; color: var(--grey-500); margin-bottom: .5rem; }
.tool-result .cta-note { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--grey-300); }

/* ===== ARTICLES ===== */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.article-body { max-width: 720px; }
.article-body h2 { margin: 2rem 0 .75rem; }
.article-body h3 { margin: 1.5rem 0 .6rem; }
.article-body p { color: var(--grey-700); line-height: 1.75; margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin: .75rem 0 1.1rem 1.5rem; }
.article-body li { margin-bottom: .4rem; color: var(--grey-700); line-height: 1.65; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-byline { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--grey-700); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--grey-200); }
.article-byline .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grey-200); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.article-byline strong { color: var(--navy); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.6); padding: 4.5rem 1.5rem 2.5rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-logo { font-size: 1.2rem; font-weight: 800; color: var(--white); display: block; margin-bottom: .875rem; letter-spacing: -.03em; text-decoration: none; }
.footer-logo span { color: #60a5fa; }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.45); }
.footer-disclaimer { font-size: .76rem; color: rgba(255,255,255,.3); line-height: 1.65; margin-top: 1.35rem; }
.footer-col h4 { font-size: .85rem; font-weight: 700; color: var(--white); margin-bottom: 1.1rem; letter-spacing: -.01em; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a { color: rgba(255,255,255,.45); font-size: .875rem; transition: color var(--t); }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  font-size: .8rem; color: rgba(255,255,255,.3);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.3); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); text-decoration: none; }

/* ===== DASHBOARD ===== */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; min-height: calc(100vh - 64px); }
.sidebar { background: var(--grey-50); border-right: 1px solid var(--grey-200); padding: 1.5rem 0; }
.sidebar-link { display: flex; align-items: center; gap: .6rem; padding: .65rem 1.5rem; color: var(--grey-700); font-size: .9rem; font-weight: 500; text-decoration: none; border-left: 3px solid transparent; transition: var(--t); }
.sidebar-link:hover, .sidebar-link.active { background: var(--white); color: var(--blue); border-left-color: var(--blue); text-decoration: none; }
.dashboard-main { padding: 2rem 1.5rem 2rem 0; }
.lod-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 1.25rem; }
.lod-card:hover { border-color: var(--blue); }
.lod-info { flex: 1; min-width: 0; }
.lod-debtor { font-weight: 700; color: var(--navy); }
.lod-meta { font-size: .82rem; color: var(--grey-500); margin-top: .2rem; }
.lod-amount { font-size: 1.25rem; font-weight: 800; color: var(--navy); white-space: nowrap; }

/* ===== STATUS ===== */
.status { display: inline-flex; align-items: center; gap: .35rem; padding: .25rem .75rem; border-radius: 999px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-sent { background: var(--blue-light); color: #1e40af; } .status-sent .status-dot { background: #3b82f6; }
.status-paid { background: var(--green-light); color: #166534; } .status-paid .status-dot { background: var(--green); }
.status-disputed { background: var(--amber-light); color: #92400e; } .status-disputed .status-dot { background: var(--amber); }
.status-escalated { background: #f3e8ff; color: #6b21a8; } .status-escalated .status-dot { background: #9333ea; }
.status-draft { background: var(--grey-200); color: var(--grey-700); } .status-draft .status-dot { background: var(--grey-500); }

/* ===== UTILITIES ===== */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.loading { opacity: .5; pointer-events: none; }
.spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: var(--white); border-radius: 50%; animation: spin .6s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.divider { border: none; border-top: 1px solid var(--grey-200); margin: 2rem 0; }

/* ===== RESPONSIVE ===== */

/* --- Tablet landscape (≤1024px) --- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-content { order: 1; }
  .hero-video-wrap { order: 2; max-width: 560px; margin: 0 auto; }
  .hero-pill { margin: 0 auto 1.75rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { align-items: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* --- Tablet portrait (≤768px) --- */
@media (max-width: 768px) {
  h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }
  .section-header.center { margin-bottom: 2.75rem; }
  .section-header p { font-size: 1rem; }

  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  /* Nav */
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(6,14,29,.98);
    padding: 1rem 1.5rem 1.5rem; gap: .25rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(20px); z-index: 200;
  }
  .nav-links.nav-links-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .7rem 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    display: block !important; text-align: center !important;
    margin-top: .5rem !important; padding: .75rem !important;
    border-radius: var(--radius-sm) !important;
  }
  .nav-hamburger { display: flex; flex-direction: column; }

  /* Hero */
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero-video-badge { display: none; }
  .hero-actions { flex-direction: column; align-items: center; gap: .75rem; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .hero-trust { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: .4rem 1.25rem; }

  /* Trust bar — horizontal scroll on tablet */
  .trust-bar-inner { gap: 0; overflow-x: auto; justify-content: flex-start; padding-bottom: .25rem; }
  .trust-item { white-space: nowrap; padding: .35rem 1rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* How it works */
  .how-steps { flex-direction: column; }
  .how-step-arrow { transform: rotate(90deg); padding: 0; margin: -.25rem auto; }
  .how-step:not(:last-child)::after { display: none; }
  .how-step:not(:last-child) { border-bottom: 1px solid var(--grey-200); }
  .how-cta { flex-direction: column; gap: .75rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; gap: 1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  /* Page hero */
  .page-hero { padding: 3rem 1.25rem 2.75rem; }

  /* Journey page */
  .journey-fork-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .jf-or { display: none; }
  .journey-stats-row { flex-direction: column; gap: 1.5rem; }
  .journey-stat-divider { width: 48px; height: 1px; }
  .journey-resolution-card { flex-direction: column; text-align: center; gap: 1.25rem; }

  /* Article sidebar disappears */
  .article-layout { grid-template-columns: 1fr !important; }
  .article-layout aside { display: none; }
}

/* --- Mobile (≤480px) --- */
@media (max-width: 480px) {
  html { font-size: 15px; }
  h1 { font-size: clamp(1.85rem, 8.5vw, 2.25rem); line-height: 1.15; }
  h2 { font-size: clamp(1.4rem, 6vw, 1.85rem); }
  h3 { font-size: 1.05rem; }

  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .section-header.center { margin-bottom: 2.25rem; }

  /* Grids all go 1-col */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1rem; }

  /* Nav */
  .nav { padding: 0 1rem; }
  .nav-inner { height: 56px; }
  .nav-links { top: 56px; }
  .nav-logo { font-size: 1.1rem; }

  /* Hero */
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero-pill { font-size: .75rem; padding: .3rem .875rem; }
  .hero-content p { font-size: 1rem; }
  .hero-trust { gap: .3rem .875rem; }
  .hero-trust-item { font-size: .8rem; }
  .video-play-btn { width: 60px; height: 60px; }

  /* Trust bar — stacked on smallest screens */
  .trust-bar { padding: .875rem 1rem; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .trust-divider { display: none; }
  .trust-item { padding: .3rem 0; font-size: .8rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.375rem; }
  .testimonial-text { font-size: .9rem; }

  /* How it works */
  .how-step { padding: 1.75rem 1.25rem; }
  .how-step-icon { width: 48px; height: 48px; }
  .how-cta-note { text-align: center; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 1.75rem; }
  .pricing-price { font-size: 2.75rem; }

  /* FAQ */
  .faq-question { font-size: .9375rem; padding: 1rem 1.1rem; }
  .faq-icon { margin-left: .75rem; }
  .faq-answer { font-size: .9rem; }

  /* CTA band */
  .cta-band { padding: 4rem 1rem; }
  .cta-band h2 { font-size: 1.65rem; }
  .cta-band p { font-size: 1rem; }
  .cta-band-actions .btn { width: 100%; max-width: 320px; }

  /* Cards */
  .card { padding: 1.375rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem !important; }
  input, select, textarea { font-size: 16px; } /* prevents iOS zoom */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  footer { padding: 3rem 1rem 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .footer-bottom-links { flex-wrap: wrap; gap: .75rem 1.25rem; }

  /* Page hero */
  .page-hero { padding: 2.5rem 1rem 2.25rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .page-hero p { font-size: .95rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: .8rem; gap: .35rem; }

  /* Buttons — full width in hero */
  .hero-actions .btn { max-width: none; }
  .btn-lg { padding: .9rem 1.75rem; font-size: 1rem; }

  /* Tables — horizontal scroll */
  .table-wrap { -webkit-overflow-scrolling: touch; }

  /* Journey page */
  .journey-resolution-card { padding: 1.5rem; }
  .journey-stats-row { padding: 1.25rem; }
  .journey-stat-num { font-size: 1.75rem; }

  /* Article */
  .article-body h2 { font-size: 1.3rem; margin-top: 1.5rem; }
  .article-byline { flex-wrap: wrap; }

  /* Send form step indicator */
  .step-indicator { gap: .35rem; }

  /* Tools */
  .tool-result { padding: 1.25rem; }
  .tool-result-value { font-size: 1.75rem; }
}
