/* ==========================================================================
   Knock Out Gambling Addiction — Brand Stylesheet
   Palette + typography per brand.md, matched to the official brand kit
   (Navy / Red / Gray / Light Gray / Off-White + white).
   Fonts are loaded via <link> tags in each page's <head>.
   ========================================================================== */

:root {
  --navy:       #06192A;  /* text, headers, dark sections */
  --red:        #BE1528;  /* primary accent / CTAs / crisis states */
  --gray:       #727882;  /* secondary — subheads, icons, input borders */
  --light-gray: #E1E0E1;  /* borders, muted; accent text on dark */
  --off-white:  #F5F5F4;  /* light surfaces, section backgrounds */
  --white:      #FFFFFF;

  --color-text: var(--navy);
  --color-bg:   var(--white);
  --color-surface: var(--off-white);
  --color-accent:  var(--red);
  --color-border:  var(--light-gray);

  --shadow-lg: 0 20px 60px rgba(6, 25, 42, 0.15);
  --shadow-md: 0 8px 30px rgba(6, 25, 42, 0.10);
  --shadow-sm: 0 4px 12px rgba(6, 25, 42, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --container: 1200px;
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; }

p { font-size: 1.05rem; color: var(--navy); }
p.lead { font-size: 1.2rem; color: var(--navy); line-height: 1.6; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
/* Kickers on dark surfaces use light gray — red on navy is only 2.8:1. */
.hero .eyebrow, .page-hero .eyebrow, .cta-section .eyebrow,
.bg-navy .eyebrow, .bg-navy-deep .eyebrow, .legal-block .eyebrow,
.card-dark .eyebrow { color: var(--light-gray); }

.gold { color: var(--red); }
.hero .gold, .hero h1 .accent, .page-hero .gold, .cta-section .gold,
.bg-navy .gold, .legal-block .gold { color: var(--light-gray); }
.text-white { color: var(--white); }
.text-white p { color: rgba(255, 255, 255, 0.82); }
.text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: var(--white); }

/* --------------------------------------------------------------------------
   Crisis Banner — high-contrast, unmissable: dark text on a light band
   -------------------------------------------------------------------------- */

.crisis-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(rgba(190, 21, 40, 0.08), rgba(190, 21, 40, 0.08)), var(--white);
  box-shadow: inset 0 2px 0 var(--red), inset 0 -2px 0 var(--red);
  color: var(--navy);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}
.crisis-banner strong { font-weight: 700; letter-spacing: 0.02em; color: var(--red); }
.crisis-banner a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 40px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(6, 25, 42, 0.10);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 116px;
  width: auto;
  display: block;
}
.footer-brand .logo-img {
  height: 136px;
  /* primary logo is navy artwork — render white on the navy footer until
     the kit ships a dedicated white version */
  filter: brightness(0) invert(1);
}
@media (max-width: 1200px) {
  .logo-img { height: 96px; }
}
@media (max-width: 720px) {
  .logo-img { height: 84px; }
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--light-gray);
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
}
.logo-text { line-height: 1; }
.logo-text .name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  display: block;
}
.logo-text .tag {
  font-size: 0.66rem;
  color: var(--navy);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), top var(--transition);
}
.menu-toggle span { top: 50%; }
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(190, 21, 40, 0.35);
}
.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(190, 21, 40, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
/* Legacy class name — the red primary CTA on dark sections */
.btn-gold {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(190, 21, 40, 0.35);
}
.btn-gold:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(190, 21, 40, 0.45);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-sm { padding: 9px 16px; font-size: 0.74rem; letter-spacing: 0.04em; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

section { padding: 100px 0; }
.section-narrow { padding: 70px 0; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.section-head p.lead { margin-top: 18px; }

/* Legacy class names — dark sections are navy, light surfaces are off-white */
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy-deep { background: var(--navy); color: var(--white); }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 130px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(225, 224, 225, 0.20), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(190, 21, 40, 0.14), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  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: 60px 60px;
  pointer-events: none;
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .accent { display: block; }
.hero .lead { color: rgba(255, 255, 255, 0.85); font-size: 1.18rem; max-width: 540px; }
.hero-ctas { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}
.hero-badge svg { color: var(--light-gray); flex-shrink: 0; }

/* Boxing ring visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin-left: auto;
}
.ring-frame {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(225, 224, 225, 0.16), transparent 65%);
  display: grid;
  place-items: center;
}
.ring-frame::before {
  content: '';
  position: absolute;
  inset: 8%;
  border: 1.5px dashed rgba(225, 224, 225, 0.35);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.ring-emblem {
  width: 65%;
  aspect-ratio: 1;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.ring-emblem-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(225, 224, 225, 0.5);
  display: grid;
  place-items: center;
  box-shadow: inset 0 4px 30px rgba(0, 0, 0, 0.4), 0 20px 60px rgba(0, 0, 0, 0.5);
}
.ring-emblem-inner svg { width: 55%; height: 55%; color: var(--light-gray); }

.stars {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.stars span {
  width: 10px;
  height: 10px;
  background: var(--light-gray);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* --------------------------------------------------------------------------
   Page Hero (secondary pages)
   -------------------------------------------------------------------------- */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 60% at 90% 50%, rgba(225, 224, 225, 0.18), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .lead { color: rgba(255, 255, 255, 0.85); max-width: 680px; }

/* --------------------------------------------------------------------------
   Assessment Quiz
   -------------------------------------------------------------------------- */

.quiz-section { background: var(--white); }
.quiz-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(6, 25, 42, 0.08);
}
.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
}
.quiz-progress-bar {
  flex: 1;
  height: 5px;
  background: var(--off-white);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.quiz-progress-bar.active { background: var(--red); }
.quiz-progress-bar.answered-yes { background: var(--red); }
.quiz-progress-bar.answered-no { background: var(--gray); }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp 400ms ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.quiz-count {
  font-family: var(--font-head);
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.quiz-question {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 32px;
}
.quiz-options { display: flex; gap: 16px; }
.quiz-options button {
  flex: 1;
  padding: 18px 24px;
  border: 2px solid var(--gray);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition);
  text-transform: uppercase;
}
.quiz-options button:hover {
  border-color: var(--red);
  background: rgba(190, 21, 40, 0.06);
  transform: translateY(-2px);
}
.quiz-options button.yes:hover { border-color: var(--red); color: var(--red); }

.quiz-result {
  display: none;
  text-align: center;
  animation: fadeUp 500ms ease;
}
.quiz-result.active { display: block; }
.quiz-result-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(190, 21, 40, 0.15);
  color: var(--red);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}
.quiz-result h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.quiz-result p { font-size: 1.08rem; color: var(--navy); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.quiz-summary {
  display: inline-flex;
  gap: 24px;
  padding: 16px 28px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.quiz-summary strong { color: var(--red); font-size: 1.6rem; }

/* --------------------------------------------------------------------------
   Reality Check
   -------------------------------------------------------------------------- */

.reality {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.reality-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reality-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.reality-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(225, 224, 225, 0.25), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(190, 21, 40, 0.14), transparent 55%);
}
.reality-visual-glove {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 45%;
  color: var(--light-gray);
  opacity: 0.9;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}
.reality-visual-corner {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  padding: 8px 14px;
  border: 1px solid rgba(225, 224, 225, 0.5);
  border-radius: 3px;
}
.reality-signs { list-style: none; margin-top: 32px; }
.reality-signs li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(6, 25, 42, 0.12);
  color: var(--navy);
  font-weight: 500;
}
.reality-signs li:last-child { border-bottom: none; }
.reality-signs .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Feature / Card Grid
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(6, 25, 42, 0.08);
  transition: all var(--transition);
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(190, 21, 40, 0.35);
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(190, 21, 40, 0.12);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.card:hover .card-icon { background: var(--red); color: var(--white); }
.card h3 { margin-bottom: 14px; color: var(--navy); }
.card p { color: var(--navy); }

.card-dark {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(225, 224, 225, 0.2);
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255, 255, 255, 0.75); }

/* --------------------------------------------------------------------------
   Pricing Cards (Recovery Rounds)
   -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(6, 25, 42, 0.10);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.pricing-card.featured {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--red);
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(6, 25, 42, 0.25);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--white); }
.pricing-card.featured .duration { color: var(--light-gray); }
.pricing-card.featured p, .pricing-card.featured li { color: rgba(255, 255, 255, 0.85); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-name {
  font-family: var(--font-head);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 6px;
}
.pricing-card.featured .pricing-name { color: var(--light-gray); }
.pricing-duration {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 28px;
}
.pricing-card.featured .pricing-duration { color: rgba(255, 255, 255, 0.6); }

.pricing-price {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-terms {
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 500;
}
.pricing-card.featured .pricing-terms { color: rgba(255, 255, 255, 0.6); }

.pricing-desc {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(6, 25, 42, 0.10);
}
.pricing-card.featured .pricing-desc { color: rgba(255, 255, 255, 0.75); border-color: rgba(255, 255, 255, 0.12); }

.pricing-features { list-style: none; margin-bottom: 32px; flex: 1; }
.pricing-features li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 500;
  align-items: flex-start;
}
.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BE1528' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 4px;
}
.pricing-card.featured .pricing-features li { color: var(--white); }
.pricing-card.featured .pricing-features li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E1E0E1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

.pricing-phases {
  background: rgba(190, 21, 40, 0.08);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 0.85rem;
}
.pricing-card.featured .pricing-phases { background: rgba(255, 255, 255, 0.06); }
.pricing-phases strong {
  display: block;
  font-family: var(--font-head);
  color: var(--red);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.pricing-card.featured .pricing-phases strong { color: var(--light-gray); }
.pricing-phases p { margin-bottom: 4px; font-size: 0.88rem; color: var(--navy); }
.pricing-card.featured .pricing-phases p { color: rgba(255, 255, 255, 0.75); }

/* --------------------------------------------------------------------------
   Legal / Attorney Section
   -------------------------------------------------------------------------- */

.legal-block {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
}
.legal-block h3 { color: var(--white); margin-bottom: 20px; }
.legal-block p { color: rgba(255, 255, 255, 0.8); margin-bottom: 20px; }
.legal-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.legal-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}
.legal-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--light-gray);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Method Comparison Table
   -------------------------------------------------------------------------- */

.compare-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(6, 25, 42, 0.10);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(6, 25, 42, 0.08);
  font-size: 0.92rem;
  vertical-align: middle;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.compare-table th.highlight { background: var(--red); color: var(--white); }
.compare-table td.highlight { background: rgba(190, 21, 40, 0.08); font-weight: 600; color: var(--navy); }
.compare-table td.check { color: var(--red); font-weight: 700; }
.compare-table td.cross { color: var(--navy); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr td:first-child { font-weight: 600; color: var(--navy); }

/* --------------------------------------------------------------------------
   Method Steps / Process
   -------------------------------------------------------------------------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  border: 1px solid rgba(6, 25, 42, 0.08);
  transition: all var(--transition);
}
.step-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.step-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: rgba(190, 21, 40, 0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Knockout categories
   -------------------------------------------------------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(6, 25, 42, 0.08);
  transition: all var(--transition);
}
.category-card:hover { border-color: var(--red); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--off-white);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.category-card:hover .category-icon { background: var(--red); color: var(--white); }
.category-card h4 { color: var(--navy); margin-bottom: 6px; }
.category-card p { color: var(--navy); font-size: 0.92rem; }

/* --------------------------------------------------------------------------
   Booking Form
   -------------------------------------------------------------------------- */

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.booking-info {
  position: sticky;
  top: 140px;
}
.booking-info h2 { margin-bottom: 20px; }
.booking-info .lead { margin-bottom: 32px; }

.info-list { list-style: none; margin-top: 30px; }
.info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(6, 25, 42, 0.12);
  align-items: flex-start;
}
.info-list .info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(190, 21, 40, 0.14);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-list h4 { color: var(--navy); margin-bottom: 2px; }
.info-list p { color: var(--navy); font-size: 0.92rem; }

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(6, 25, 42, 0.08);
}
.booking-form h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-intro { color: var(--navy); margin-bottom: 32px; font-size: 0.95rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(190, 21, 40, 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; font-family: inherit; }

.rating-scale {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.rating-scale input { display: none; }
.rating-scale label {
  flex: 1;
  padding: 14px 8px;
  text-align: center;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  background: var(--white);
  letter-spacing: 0;
  text-transform: none;
}
.rating-scale input:checked + label {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.05);
}
.rating-scale label:hover { border-color: var(--red); }

.form-note {
  padding: 16px 20px;
  background: rgba(190, 21, 40, 0.08);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  margin: 24px 0;
  font-size: 0.88rem;
  color: var(--navy);
}
.form-submit { width: 100%; padding: 18px; font-size: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.active { display: block; }
.form-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(190, 21, 40, 0.15);
  color: var(--red);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */

.cta-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(225, 224, 225, 0.2), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(190, 21, 40, 0.14), transparent 55%);
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 20px; }
.cta-inner p.lead { color: rgba(255, 255, 255, 0.85); margin-bottom: 40px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand .logo-mark { background: var(--navy); }
.footer-brand .logo-text .name, .footer-brand p { color: var(--white); }
.footer-brand p { margin-top: 20px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); max-width: 320px; }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--light-gray);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--light-gray); }

.footer-crisis {
  background: rgba(190, 21, 40, 0.12);
  border: 1px solid rgba(190, 21, 40, 0.3);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  margin-bottom: 40px;
}
.footer-crisis strong { color: var(--white); }
.footer-crisis a { color: var(--light-gray); text-decoration: underline; font-weight: 600; }

.footer-legal {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Small pieces
   -------------------------------------------------------------------------- */

.who-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.who-card {
  background: var(--white);
  padding: 24px 24px 24px 28px;
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  transition: all var(--transition);
}
.who-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.who-card h4 { color: var(--navy); margin-bottom: 6px; }
.who-card p { color: var(--navy); font-size: 0.92rem; }

.attorney-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.attorney-feature {
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(6, 25, 42, 0.08);
}
.attorney-feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--light-gray);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.attorney-feature h4 { margin-bottom: 8px; color: var(--navy); }
.attorney-feature p { color: var(--navy); font-size: 0.92rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat {
  text-align: center;
  color: var(--white);
}
.stat .n {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat .l {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   Divider ring lines
   -------------------------------------------------------------------------- */

.ring-line {
  height: 3px;
  background:
    linear-gradient(90deg, transparent, var(--red) 15%, var(--red) 85%, transparent);
  position: relative;
  margin: 12px auto;
  max-width: 200px;
  opacity: 0.7;
}
.ring-line::before, .ring-line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.ring-line::before { left: 20%; }
.ring-line::after { right: 20%; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
  .logo-text .name { font-size: 1.05rem; letter-spacing: 0.03em; }
  .logo-text .tag { font-size: 0.6rem; letter-spacing: 0.22em; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.82rem; }
  .btn-sm { padding: 10px 16px; font-size: 0.76rem; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 40px auto 0; }
  .reality-inner { grid-template-columns: 1fr; gap: 50px; }
  .reality-visual { max-width: 460px; margin: 0 auto; }
  .legal-block { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .legal-list { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 50px; }
  .booking-info { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .hero { padding: 80px 0 70px; }
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 22px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform var(--transition);
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .nav-cta .btn:not(.menu-toggle) { display: none; }
  .quiz-card { padding: 32px 22px; }
  .quiz-question { font-size: 1.3rem; }
  .quiz-options { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 30px 22px; }
  .legal-block { padding: 32px 24px; }
  .stat-row { gap: 20px; }
  .stat .n { font-size: 2.4rem; }
  .rating-scale label { padding: 10px 4px; font-size: 1.1rem; }
  .crisis-banner { font-size: 0.78rem; padding: 8px 14px; }
  .site-header { top: 60px; }
  .nav-links { top: 110px; }
}
