/* ============================================================
   YouCanDoProbate — Color tokens
   ============================================================ */

:root {
  /* ---- Brand: base palette ---- */
  --ycdp-primary:        #6D81B9; /* mid blue-purple: nav, headings, secondary buttons, labels */
  --ycdp-primary-dark:   #2D3043; /* deep navy: nav bar bg, dark sections, deep contrast */
  --ycdp-primary-light:  #91A0CA; /* mid periwinkle: icon chips, progress tracks, accents */
  --ycdp-primary-deep:   #4A5A8F; /* deeper blue: price display, utility bar, table header */

  --ycdp-secondary:      #618093; /* muted slate: secondary text, captions, supporting UI */

  /* ---- Accent / CTA (use sparingly — never a large background) ---- */
  --ycdp-accent:         #10C469; /* green: primary CTA, tick icons, highlighted phrases */
  --ycdp-accent-light:   #E6FAF1; /* success-state / highlighted-card background */

  /* ---- Backgrounds & section rhythm ---- */
  --ycdp-bg-primary:     #FFFFFF; /* pure white — main page background */
  --ycdp-bg-secondary:   #EFF1F7; /* off-white — alternating section */
  --ycdp-bg-tertiary:    #c9cee5; /* light grey-blue — deeper alternating section */
  --ycdp-bg-section:     #F7F8FC; /* off-white used in section rhythm + mega-menu panel */
  --ycdp-bg-tint:        #EEF1F9; /* tinted block: pull quotes, insight boxes */
  --ycdp-section-dark:   #2D3043; /* deep navy — every third section, white text */

  /* ---- Semantic: error / warning ---- */
  --ycdp-warning:        #F08E50; /* amber — caution states */
  --ycdp-warning-deep:   #F08E50; /* amber border / caveat text on light */
  --ycdp-warning-bg:     #FEF8EC; /* warning card background */
  --ycdp-error:          #F05050; /* red — negative states */
  --ycdp-error-deep:     #D0021B; /* red — negative table values */

  /* ---- Trust / rating ---- */
  --ycdp-star:           #F5B544; /* gold stars */

  /* ---- Borders ---- */
  --ycdp-border:         #8B9CC7; /* insight-box / structural border */
  --ycdp-border-soft:    #d8dcec; /* soft hairline on light surfaces */

  /* ============================================================
     Semantic aliases — prefer these in components
     ============================================================ */
  --text-heading:    var(--ycdp-primary-dark);
  --text-body:       #2D3043;
  --text-muted:      var(--ycdp-secondary);
  --text-on-dark:    #FFFFFF;
  --text-on-dark-muted: #C5CEDE;
  --text-label:      var(--ycdp-secondary);
  --text-price:      var(--ycdp-primary-deep);

  --surface-page:    var(--ycdp-bg-primary);
  --surface-alt:     var(--ycdp-bg-section);
  --surface-card:    #FFFFFF;
  --surface-tint:    var(--ycdp-bg-tint);
  --surface-dark:    var(--ycdp-section-dark);
  --surface-success: var(--ycdp-accent-light);
  --surface-warning: var(--ycdp-warning-bg);

  --cta:             var(--ycdp-accent);
  --cta-text:        #FFFFFF;

  --border-default:  var(--ycdp-border-soft);
  --border-strong:   var(--ycdp-border);
  --border-accent:   var(--ycdp-accent);
}
/* ============================================================
   YouCanDoProbate — Spacing, radius, shadow tokens
   Base unit: 8px
   ============================================================ */

:root {
  /* ---- Spacing scale (8px base) ---- */
  --space-1:   8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  40px;
  --space-6:  48px;   /* component gap between major elements */
  --space-8:  64px;   /* section padding — tablet */
  --space-12: 96px;   /* section padding — desktop */

  /* ---- Layout ---- */
  --container-max:    1200px;
  --container-pad:    24px;   /* horizontal padding on mobile */

  --section-pad-desktop: 96px;
  --section-pad-tablet:  64px;
  --section-pad-mobile:  48px;

  --grid-gap-desktop: 32px;
  --grid-gap-tablet:  24px;
  --grid-gap-mobile:  16px;

  --card-pad-desktop: 32px;
  --card-pad-mobile:  24px;

  /* ---- Border radius ---- */
  --radius-sm:   6px;    /* inputs, tags, pills */
  --radius-md:  12px;    /* cards, dropdowns */
  --radius-lg:  20px;    /* feature cards, pricing, CTA sections */
  --radius-xl:  16px;    /* insight box */
  --radius-full: 999px;  /* buttons, trust pills */

  /* ---- Shadows ---- */
  --shadow-card:  0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 24px rgba(109, 129, 185, 0.15);
  --shadow-nav:   0 2px 12px rgba(0, 0, 0, 0.08);
}


/* ============================================================
   YouCanDoProbate — shared site stylesheet
   Imports the bound design-system tokens, then builds the
   marketing chrome (nav, mega menu, footer), component classes,
   and section rhythm as plain, directly-editable CSS.
   Typography: rem-based with clamp() fluid scaling.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;500;600;700;800&display=swap");
@import "_ds/youcandoprobate-design-system-df0a9e65-3ae0-4e82-9deb-c51884b35961/tokens/colors.css";
@import "_ds/youcandoprobate-design-system-df0a9e65-3ae0-4e82-9deb-c51884b35961/tokens/spacing.css";

/* ---- Reset & root ---- */
:root { --ycdp-warning-deep: #F08E50; } /* replace amber with brand orange everywhere */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Kumbh Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-body);
  background: var(--surface-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
:focus-visible { outline: 2px solid var(--ycdp-primary); outline-offset: 2px; border-radius: 4px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   TYPOGRAPHY — fluid, rem-based
   ============================================================ */
.h1, .h2, .h3, .eyebrow, .price-fig, .pullquote { font-family: inherit; }
.h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--text-heading); text-wrap: balance;
}
.h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--text-heading); text-wrap: balance;
}
.h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700; line-height: 1.35; color: var(--text-heading);
}
.eyebrow {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ycdp-primary); line-height: 1.4;
  display: inline-block;
}
.eyebrow--accent { color: var(--ycdp-primary); }
.lead { font-size: 1.125rem; line-height: 1.6; color: var(--text-muted); }
.body-lg { font-size: 1.0625rem; line-height: 1.6; }
.body { font-size: 1.0625rem; line-height: 1.6; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }
.caption { font-size: 0.8125rem; line-height: 1.5; color: var(--text-muted); }
.muted { color: var(--text-muted); }
.measure { max-width: 42rem; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.price-fig {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700; line-height: 1.05; color: var(--text-price);
}
.pullquote {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 800; line-height: 1.35; letter-spacing: 0.005em; color: var(--text-body);
}

/* Dark-section text colour flips */
.section--dark { color: var(--text-on-dark); }
.section--dark .h1, .section--dark .h2, .section--dark .h3 { color: #fff; }
.section--dark .lead, .section--dark .body, .section--dark .body-lg,
.section--dark .muted, .section--dark .caption { color: var(--text-on-dark-muted); }
.section--dark .eyebrow { color: var(--ycdp-primary-light); }

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
.section { padding: clamp(4rem, 7vw, 7rem) 0 clamp(4.75rem, 8vw, 8rem); }
.section--white { background: var(--surface-page); }
/* Soft tint only on feature cards and review cards so they stand out on white */
.section--white .card:not(.card--error):not(.card--amber):not(.card--best):not(.card--guarantee) { background: #EFF1F7; }
.section--white .card:not(.card--error):not(.card--amber):not(.card--best):not(.card--guarantee) .card-ic { background: #fff; }
.section--alt { background: var(--ycdp-bg-secondary); }
.section--tint { background: var(--ycdp-bg-section); }
.section--grey { background: var(--ycdp-bg-tertiary); }
.section--dark { background: var(--surface-dark); position: relative; overflow: hidden; isolation: isolate; }
.section--dark::before {
  content: ""; position: absolute; inset: -40%; z-index: 0; pointer-events: none; filter: blur(130px);
  background:
    radial-gradient(60% 55% at 14% 20%, rgba(109,129,185,0.52), transparent 75%),
    radial-gradient(52% 62% at 36% 46%, rgba(145,160,202,0.34), transparent 74%),
    radial-gradient(58% 50% at 86% 22%, rgba(97,128,147,0.40), transparent 74%),
    radial-gradient(48% 56% at 66% 60%, rgba(109,129,185,0.30), transparent 74%),
    radial-gradient(56% 58% at 24% 104%, rgba(97,128,147,0.32), transparent 74%);
}
.section--dark > .container { position: relative; z-index: 1; }
/* Periwinkle canvas variant (use with section--dark) */
.canvas-periwinkle { background: #6D81B9; }
.canvas-periwinkle::before {
  background:
    radial-gradient(60% 55% at 14% 20%, rgba(145,160,202,0.55), transparent 75%),
    radial-gradient(52% 62% at 36% 46%, rgba(255,255,255,0.12), transparent 74%),
    radial-gradient(58% 50% at 86% 22%, rgba(97,128,147,0.45), transparent 74%),
    radial-gradient(48% 56% at 66% 60%, rgba(74,90,143,0.42), transparent 74%),
    radial-gradient(56% 58% at 24% 104%, rgba(45,48,67,0.40), transparent 74%);
}
.section-head { max-width: 46rem; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head .h2 { margin-top: 0.75rem; }
.section-head .lead { margin-top: 1rem; }
.stack > * + * { margin-top: 1.25rem; }
.stack-sm > * + * { margin-top: 0.75rem; }

/* ============================================================
   GLASSMORPHISM GLOW VARIANTS (apply to any .section)
   ============================================================ */
.glow-1, .glow-2, .glow-3, .glow-4 { position: relative; overflow: hidden; isolation: isolate; }
.glow-1 > .container, .glow-2 > .container, .glow-3 > .container, .glow-4 > .container { position: relative; z-index: 1; }
.glow-1::before, .glow-2::before, .glow-3::before, .glow-4::before {
  content: ""; position: absolute; inset: -28%; z-index: 0; pointer-events: none; filter: blur(85px);
}
/* 1 — Light (hero style): periwinkle + mint + soft peach */
.glow-1::before {
  background:
    radial-gradient(44% 36% at 8% 10%, rgba(109,129,185,0.34), transparent 70%),
    radial-gradient(30% 48% at 28% 30%, rgba(123,108,196,0.18), transparent 68%),
    radial-gradient(40% 30% at 92% 6%, rgba(16,196,105,0.16), transparent 66%),
    radial-gradient(52% 44% at 84% 90%, rgba(145,160,202,0.30), transparent 68%),
    radial-gradient(34% 46% at 14% 100%, rgba(240,168,128,0.16), transparent 66%);
}
/* Page hero: flip glow-1 vertically + fade to white at the bottom to blend into the next section */
.hero-split.glow-1::before { transform: scaleY(-1); }
/* 2 — Purple (light): #6D81B9 + #91A0CA on a soft tint, violet + lilac */
.glow-2 { background: var(--ycdp-bg-tint); }
.glow-2::before {
  background:
    radial-gradient(46% 40% at 12% 16%, rgba(109,129,185,0.50), transparent 68%),
    radial-gradient(38% 50% at 34% 44%, rgba(145,160,202,0.42), transparent 66%),
    radial-gradient(42% 32% at 88% 16%, rgba(123,108,196,0.34), transparent 66%),
    radial-gradient(40% 46% at 82% 96%, rgba(168,140,210,0.30), transparent 68%),
    radial-gradient(34% 44% at 16% 104%, rgba(109,129,185,0.34), transparent 66%);
}
/* 3 — Purple (deeper): #6D81B9 base, violet + lilac complements */
.glow-3 { background: #b9c0db; }
.glow-3::before {
  background:
    radial-gradient(48% 42% at 12% 16%, rgba(74,90,143,0.85), transparent 68%),
    radial-gradient(40% 52% at 34% 46%, rgba(109,129,185,0.78), transparent 66%),
    radial-gradient(44% 34% at 88% 16%, rgba(123,108,196,0.55), transparent 66%),
    radial-gradient(42% 48% at 82% 98%, rgba(145,160,202,0.60), transparent 68%),
    radial-gradient(36% 46% at 16% 104%, rgba(74,90,143,0.55), transparent 66%);
}
/* 4 — Dark navy: navy base, periwinkle + slate */
.glow-4 { background: var(--surface-dark); }
.glow-4::before {
  inset: -40%; filter: blur(130px);
  background:
    radial-gradient(60% 55% at 14% 20%, rgba(109,129,185,0.52), transparent 75%),
    radial-gradient(52% 62% at 36% 46%, rgba(145,160,202,0.34), transparent 74%),
    radial-gradient(58% 50% at 86% 22%, rgba(97,128,147,0.40), transparent 74%),
    radial-gradient(48% 56% at 66% 60%, rgba(109,129,185,0.30), transparent 74%),
    radial-gradient(56% 58% at 24% 104%, rgba(97,128,147,0.32), transparent 74%);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: inherit; font-weight: 600; line-height: 1; white-space: nowrap;
  border-radius: var(--radius-full); cursor: pointer; text-align: center;
  font-size: 1rem; padding: 0.95rem 1.75rem; min-height: 3rem;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .15s ease, filter .15s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--cta); color: var(--cta-text); border-color: var(--cta); font-weight: 800; }
.btn--primary:hover { color: #fff; box-shadow: 0 0 0 5px rgba(16,196,105,0.18), 0 6px 22px rgba(16,196,105,0.3); }
.btn--secondary { background: transparent; color: var(--ycdp-primary-deep); border-color: var(--ycdp-primary); }
.btn--secondary:hover { background: var(--ycdp-bg-tint); }
.btn--blue { background: var(--ycdp-primary); color: #fff; border-color: var(--ycdp-primary); font-weight: 800; }
.btn--blue:hover { filter: brightness(0.94); box-shadow: var(--shadow-hover); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--sm { font-size: 0.875rem; padding: 0.65rem 1.25rem; min-height: 2.75rem; }
.btn--lg { font-size: 1.0625rem; padding: 1.05rem 2.1rem; min-height: 3.375rem; }
.btn--block { width: 100%; }
.btn--login-mobile { background: var(--ycdp-bg-tint); color: var(--ycdp-primary-deep); border-color: var(--ycdp-bg-tint); }
.btn--login-mobile:hover { background: var(--ycdp-bg-tertiary); }
.card--guarantee { display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center; gap: 0.4rem; border: 2px solid var(--ycdp-primary); }
.card--guarantee > * { position: relative; z-index: 1; }
.card--guarantee .guarantee-badge { width: 168px; height: auto; margin-bottom: 0.75rem; }
.card--guarantee .h3 { color: var(--ycdp-primary-dark); }
.card--guarantee .guarantee-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; font-size: 0.9375rem; font-weight: 700; color: var(--ycdp-primary); }
.card--guarantee .guarantee-link svg { transition: transform .15s ease; }
.card--guarantee:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card--guarantee:hover .guarantee-link svg { transform: translateX(3px); }

.cta-group { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; margin-top: 2rem; }
.cta-group.center { justify-content: center; }
.guarantee-line { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.875rem; }
.section--dark .guarantee-line { color: var(--text-on-dark-muted); }
.section--dark .hero-phone { color: var(--text-on-dark-muted); }

/* ============================================================
   BADGES, PILLS, LABELS
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 600; line-height: 1; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.4rem 0.75rem; border-radius: var(--radius-full);
}
.badge--accent { background: var(--ycdp-accent); color: #fff; }
.badge--neutral { background: var(--ycdp-bg-tint); color: var(--ycdp-primary-deep); }
.badge--warning { background: var(--ycdp-warning-bg); color: var(--ycdp-warning-deep); }
.badge--error { background: #FDECEC; color: var(--ycdp-error-deep); }
.badge--amber { background: var(--ycdp-warning-bg); color: var(--ycdp-warning-deep); }
.badge--dark { background: var(--ycdp-primary-dark); color: #fff; }
/* Review-card category pills: tints only (don't affect global solid badges) */
.review-card .badge--accent { background: var(--ycdp-accent-light); color: #0B7E45; }
.review-card .badge--dark { background: #E7ECF1; color: var(--ycdp-secondary); }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500; line-height: 1.3; padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  background: #f1faf5; color: var(--ycdp-secondary);
  border: 1px solid var(--ycdp-accent);
}
.trust-pill svg { flex: none; color: var(--ycdp-accent); }
.trust-pill .stars svg, .smallprint-strip span .stars svg { fill: var(--ycdp-accent); stroke: var(--ycdp-accent); }
.smallprint-strip span svg { color: var(--ycdp-accent); }
.section--dark .trust-pill {
  background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(16,196,105,0.7);
}
.section--dark .trust-pill svg { color: var(--ycdp-accent); }
.section--dark .trust-pill .stars svg { fill: var(--ycdp-accent); stroke: var(--ycdp-accent); }
.pill-stack { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.pill-stack .trust-pill { width: 100%; padding: 0.7rem 1rem; font-size: 0.9375rem; }

/* Star rating */
.stars { display: inline-flex; gap: 2px; }
.stars svg { flex: none; }
.tp-stars { display: block; height: 20px; width: auto; align-self: flex-start; }
.review-card .tp-stars { height: 26px; }
.rating-pill .tp-stars { height: 17px; }
.mega-review .tp-stars { height: 16px; margin-bottom: 0.875rem; }
.tp-stars--pq { position: relative; z-index: 1; height: 22px; margin-bottom: 1rem; }
.tp-stars--iq { height: 18px; margin-bottom: 0.6rem; }
.rating { display: inline-flex; align-items: center; gap: 0.5rem; }
.rating-label { font-size: 0.875rem; font-weight: 600; color: var(--text-body); }
.section--dark .rating-label { color: #fff; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrap { position: relative; z-index: 200; }
body:not(.home) .nav-wrap { display: contents; }
.utility { background: var(--ycdp-primary-dark); }
.utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 38px; gap: 1rem; flex-wrap: wrap; padding-top: 0.3rem; padding-bottom: 0.3rem;
}
.utility-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.utility-right { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.utility-help { color: #fff; font-size: 0.8125rem; font-weight: 600; }
.utility-sep { color: rgba(255,255,255,0.28); }
.utility-item { display: inline-flex; align-items: center; gap: 0.4rem; color: #9FB0D6; font-size: 0.8125rem; }
.utility-item svg { flex: none; }
.utility-link { color: #9FB0D6; font-size: 0.8125rem; transition: color .15s ease; }
.utility-link:hover { color: #fff; }
.utility-link--strong { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; color: #fff; }

.main-nav { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: 1px solid transparent; transition: background .25s ease, box-shadow .2s ease; }
.nav-wrap.is-stuck .main-nav { box-shadow: 0 6px 26px rgba(145, 160, 202, 0.5); }
/* Header glow on scroll (no-JS, scroll-driven) — defines the bar over white sections */
@keyframes navScrollGlow { from { box-shadow: 0 0 0 0 rgba(145,160,202,0); } to { box-shadow: 0 6px 26px rgba(145,160,202,0.5); } }
@supports (animation-timeline: scroll()) {
  .main-nav { animation: navScrollGlow linear both; animation-timeline: scroll(root); animation-range: 16px 90px; }
  body.home .main-nav { animation: none; }
}
/* Homepage: transparent header at the very top so the hero glow shows through; solid white on scroll */
body.home .nav-wrap { position: absolute; left: 0; right: 0; }
body.home .nav-wrap.is-stuck { position: fixed; }
body.home .main-nav { background: transparent; }
body.home .nav-wrap.is-stuck .main-nav { background: #fff; }
body.home .hero-simple { padding-top: clamp(8.5rem, 12vw, 11rem); }
.nav-inner { display: flex; align-items: center; gap: 2rem; min-height: 76px; }
.brand { display: inline-flex; flex: none; }
.brand img { width: 200px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; margin: 0 auto; }
.nav-link, .nav-trigger {
  font-size: 0.9375rem; font-weight: 500; color: var(--ycdp-primary-dark);
  background: none; border: 0; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.5rem 0;
  white-space: nowrap;
  transition: color .15s ease;
}
.nav-link:hover, .nav-trigger:hover, .nav-item:hover .nav-trigger { color: var(--ycdp-primary); }
.nav-link--active { color: var(--ycdp-primary); }
.m-home-link { display: block; font-size: 1.375rem; font-weight: 700; color: var(--ycdp-primary-dark); }
.nav-trigger svg { transition: transform .18s ease; }
.nav-item:hover .nav-trigger svg { transform: rotate(180deg); }
.nav-actions { display: flex; align-items: center; gap: 1.25rem; flex: none; }
.nav-login { font-size: 0.9375rem; font-weight: 500; color: var(--ycdp-primary-dark); transition: color .15s ease; }
.nav-login:hover { color: var(--ycdp-primary); }
.nav-login { cursor: pointer; }

/* ---- Login modal (CSS-only) ---- */
.login-toggle { position: absolute; opacity: 0; pointer-events: none; }
.login-modal { display: none; position: fixed; inset: 0; z-index: 400; align-items: center; justify-content: center; padding: 1.5rem; }
body:has(.login-toggle:checked) .login-modal { display: flex; }
body:has(.login-toggle:checked) { overflow: hidden; }
.login-overlay { position: absolute; inset: 0; background: rgba(45,48,67,0.55); cursor: pointer; }
.login-dialog {
  position: relative; z-index: 1; width: 100%; max-width: 440px;
  background: #fff; border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(45,48,67,0.3);
  padding: 2.25rem; display: flex; flex-direction: column; gap: 0.85rem; text-align: center;
}
.login-close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; background: var(--ycdp-bg-tint); color: var(--ycdp-primary-dark); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s ease; }
.login-close:hover { background: var(--ycdp-bg-tertiary); }
.login-h { font-size: 1.75rem; font-weight: 700; color: var(--text-heading); margin-top: 1rem; }
.login-sub { font-size: 0.9375rem; line-height: 1.5; color: var(--text-muted); margin-bottom: 0.75rem; }
.login-opt { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; width: 100%; min-height: 3.25rem; padding: 0.85rem 1.5rem; border-radius: var(--radius-full); font-size: 1rem; font-weight: 500; color: #fff; transition: filter .15s ease, transform .12s ease; }
.login-opt strong { font-weight: 700; }
.login-opt:active { transform: scale(0.98); }
.login-opt--primary { background: var(--ycdp-primary); }
.login-opt--legacy { background: var(--ycdp-primary-light); }
.login-opt:hover { filter: brightness(0.95); }
.login-foot { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.5rem; }
.login-foot a { color: var(--ycdp-primary); font-weight: 600; text-decoration: underline; }

/* ---- Video thumbnail + lightbox ---- */
.video-play { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--ycdp-accent); box-shadow: 0 6px 20px rgba(16,196,105,0.45); flex: none; }
.video-play svg { margin-left: 3px; }
.video-thumb { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-card); aspect-ratio: 16 / 9; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(45,48,67,0.05), rgba(45,48,67,0.45)); }
.video-thumb .video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1; transition: transform .18s ease; }
.video-thumb:hover img { transform: scale(1.03); }
.video-thumb:hover .video-play { transform: translate(-50%,-50%) scale(1.06); }
.video-thumb-label { position: absolute; left: 1.25rem; bottom: 1.1rem; z-index: 1; color: #fff; font-weight: 700; font-size: 1rem; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }

.video-toggle { position: absolute; opacity: 0; pointer-events: none; }
/* Split-canvas video band (between How it works and What's included) */
.video-band { padding: 0; background: linear-gradient(to bottom, #EFF1F7 0 50%, var(--surface-page) 50% 100%); }
.video-band--flip { background: linear-gradient(to bottom, var(--surface-page) 0 50%, #EFF1F7 50% 100%); }
.video-band .container { padding-top: clamp(3rem, 5vw, 4.5rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); }
.video-band-card { max-width: 920px; margin: 0 auto; }
.video-band-card .section-head { text-align: center; max-width: 40rem; margin: 0 auto 2rem; }
.video-band-card .video-thumb { aspect-ratio: 16 / 9; box-shadow: 0 20px 50px rgba(45,48,67,0.18); }
.video-band-card .video-play { width: 76px; height: 76px; }
.video-modal { display: none; position: fixed; inset: 0; z-index: 400; align-items: center; justify-content: center; padding: 1.5rem; }
body:has(.video-toggle:checked) .video-modal { display: flex; }
body:has(.video-toggle:checked) { overflow: hidden; }
.video-overlay { position: absolute; inset: 0; background: rgba(45,48,67,0.7); cursor: pointer; }
.video-dialog { position: relative; z-index: 1; width: 100%; max-width: 880px; }
.video-close { position: absolute; top: -3rem; right: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.16); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s ease; }
.video-close:hover { background: rgba(255,255,255,0.28); }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-dark); display: flex; align-items: center; justify-content: center; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.video-frame-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; color: var(--text-on-dark-muted); }
.video-frame-text { display: flex; flex-direction: column; align-items: center; font-size: 0.9375rem; font-weight: 600; color: #fff; }
.video-frame-text small { font-size: 0.8125rem; font-weight: 400; color: var(--text-on-dark-muted); margin-top: 0.25rem; }
@media (max-width: 560px) { .video-close { top: -3rem; } }
.nav-phone { display: inline-flex; align-items: center; gap: 0.55rem; }
.nav-phone-ic { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--ycdp-accent-light); color: var(--ycdp-accent); display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.nav-phone:hover .nav-phone-ic { background: #d4f6e6; }
.nav-phone-txt { display: flex; flex-direction: column; line-height: 1.15; }
.nav-phone-label { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.nav-phone-num { font-size: 0.9375rem; font-weight: 700; color: var(--ycdp-primary-dark); }
.nav-phone:hover .nav-phone-num { color: var(--ycdp-primary); }
.nav-divider { width: 1px; height: 28px; background: var(--border-default); }

/* ---- Mega menu (CSS hover) ---- */
.nav-item { position: static; display: inline-flex; align-items: center; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; box-shadow: var(--shadow-nav);
  border-top: 1px solid var(--border-default);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 60;
}
.nav-item:hover .mega, .mega:hover { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; padding: 1.75rem; align-content: start; }
.mega-group-label {
  grid-column: 1 / -1; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ycdp-accent); margin: 0.5rem 0 0.25rem;
}
.mega-group-label:first-child { margin-top: 0; }
.mega-link { display: flex; gap: 0.875rem; padding: 0.75rem 0.85rem; border-radius: var(--radius-md); transition: background .14s ease; }
.mega-link:hover { background: var(--ycdp-bg-section); }
.mega-ic {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  background: var(--ycdp-bg-tint); display: flex; align-items: center; justify-content: center;
  color: var(--ycdp-primary);
}
.mega-title { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--ycdp-primary-dark); }
.mega-desc { display: block; font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
.mega-review { background: var(--ycdp-bg-section); border-left: 1px solid var(--border-default); padding: 1.75rem; display: flex; align-items: center; }
.mega-review-box { background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-md); box-shadow: var(--shadow-card); padding: 1.5rem; width: 100%; }
.mega-quote { font-size: 1.1875rem; font-weight: 800; line-height: 1.45; letter-spacing: 0.005em; color: var(--text-body); margin: 0.875rem 0 1rem; }
.mega-quote span { color: var(--ycdp-accent); }
.mega-author { font-size: 0.875rem; font-weight: 700; color: var(--ycdp-primary-dark); }
.mega-source { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ---- Mobile nav (CSS-only checkbox) ---- */
.nav-toggle { display: none; }
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 0.25rem; margin-left: auto; color: var(--ycdp-primary-dark); }
.mobile-panel {
  position: fixed; inset: 0; background: #fff; z-index: 300;
  transform: translateX(100%); transition: transform .25s ease;
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-top { display: flex; align-items: center; justify-content: space-between; min-height: 76px; width: 100%; max-width: none; margin: 0; padding: 0 1.5rem; }
.mobile-links { display: flex; flex-direction: column; gap: 1.75rem; padding: 1.5rem; }
.mobile-links .m-login { font-size: 1.125rem; font-weight: 600; color: var(--ycdp-primary-dark); padding: 0.5rem 0; }
.m-group-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ycdp-secondary); margin-bottom: 0.6rem; }
.m-acc-body { display: flex; flex-direction: column; gap: 0.25rem; }
.m-acc-link { display: flex; gap: 0.85rem; align-items: flex-start; padding: 0.6rem 0.5rem; border-radius: var(--radius-md); }
.m-acc-link:hover, .m-acc-link:active { background: var(--ycdp-bg-section); }
.m-acc-link .mega-ic { flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--ycdp-bg-tint); color: var(--ycdp-primary); display: flex; align-items: center; justify-content: center; }
.m-acc-link .mega-title { display: block; font-size: 1rem; font-weight: 700; color: var(--ycdp-primary-dark); }
.m-acc-link .mega-desc { display: block; font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
.mobile-close { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--ycdp-bg-tint); color: var(--ycdp-primary-dark); border: 0; cursor: pointer; }
.mobile-close:hover { background: var(--ycdp-bg-tertiary); }
.mobile-cta { margin-top: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.nav-toggle:checked ~ .mobile-panel { transform: translateX(0); }
body:has(.nav-toggle:checked) { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero-simple { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; overflow: hidden; }
.hero-simple::before {
  content: ""; position: absolute; inset: -25%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(44% 36% at 8% 10%, rgba(109,129,185,0.34), transparent 70%),
    radial-gradient(30% 48% at 28% 30%, rgba(123,108,196,0.18), transparent 68%),
    radial-gradient(40% 30% at 92% 6%, rgba(16,196,105,0.16), transparent 66%),
    radial-gradient(52% 44% at 84% 90%, rgba(145,160,202,0.30), transparent 68%),
    radial-gradient(34% 46% at 14% 100%, rgba(240,168,128,0.16), transparent 66%);
  filter: blur(80px);
}
.hero-simple::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 52%, var(--surface-page) 95%);
}
.hero-simple > .container { position: relative; z-index: 1; }
.hero-simple-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.hero-simple .h1 { margin: 1.25rem 0 0; }
.hero-simple .lead { margin: 1.25rem auto 0; max-width: 38rem; }

.rating-pill {
  display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 0.9rem;
  background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-full);
  padding: 0.5rem 1.05rem; box-shadow: var(--shadow-card); font-size: 0.875rem; color: var(--text-muted);
}
.rating-pill .stars svg { width: 16px; height: 16px; }
.rating-pill strong { color: var(--text-heading); font-weight: 700; }

.hero-price { margin: 1.75rem 0 0; display: flex; flex-direction: column; align-items: center; }
.hero-price .price-row { display: inline-flex; align-items: baseline; gap: 0.4rem; }
.hero-price .price-fig { font-size: clamp(1.5rem, 2.4vw, 1.875rem); font-weight: 700; line-height: 1.1; color: var(--text-heading); }
.hero-price .price-vat { font-size: 0.9375rem; font-weight: 600; color: var(--text-muted); }
.hero-price .caption { margin-top: 0.4rem; }
.hero-simple .cta-group { margin: 2rem 0 0; justify-content: center; }
.hero-simple .guarantee-line { margin-top: 0.875rem; }

.hero-split { padding: clamp(3rem, 6vw, 5rem) 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center; }
.grief-line { font-size: 0.9375rem; font-style: italic; color: var(--text-muted); margin-bottom: 1rem; }
.hero-grid .h1 { margin: 0; }
.hero-grid .lead { margin-top: 1.25rem; }
.hero-grid .cta-group { margin-top: 2rem; }
.hero-grid .guarantee-line { margin-top: 0.875rem; }
.hero-phone { margin-top: 0.875rem; font-size: 0.8125rem; color: var(--text-muted); }

.reassure-strip {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--ycdp-primary-light); color: #fff;
  border-radius: var(--radius-full); padding: 0.85rem 1.4rem;
  font-size: 0.9375rem; font-weight: 600; margin-bottom: 1.5rem;
}
.reassure-strip svg { flex: none; }

/* Reassurance card (hero section 2, right column) */
.reassure-card {
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden;
}
.reassure-card .rc-head {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--surface-dark); padding: 1.6rem 1.75rem 1.4rem;
  display: flex; flex-direction: column;
}
.reassure-card .rc-head::before {
  content: ""; position: absolute; inset: -45%; z-index: 0; pointer-events: none; filter: blur(120px);
  background:
    radial-gradient(60% 60% at 16% 18%, rgba(109,129,185,0.85), transparent 72%),
    radial-gradient(54% 60% at 88% 24%, rgba(97,128,147,0.55), transparent 72%),
    radial-gradient(56% 56% at 30% 104%, rgba(74,90,143,0.55), transparent 74%);
}
.reassure-card .rc-head > * { position: relative; z-index: 1; }
.rc-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ycdp-primary-light); }
.rc-price { font-size: clamp(2rem, 3.2vw, 2.75rem); font-weight: 700; line-height: 1.05; color: #fff; margin-top: 0.5rem; }
.rc-price span { font-size: 1rem; font-weight: 600; color: var(--text-on-dark-muted); }
.rc-sub { font-size: 0.8125rem; color: var(--text-on-dark-muted); margin-top: 0.4rem; }
.rc-list { list-style: none; margin: 0; padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 1.1rem; }
.rc-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.rc-tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--ycdp-accent-light); color: var(--ycdp-accent); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.rc-list .rc-t { display: block; font-size: 1rem; font-weight: 600; color: var(--text-heading); line-height: 1.35; }
.rc-list .rc-d { display: block; font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; margin-top: 2px; }
.rc-foot { display: flex; align-items: center; gap: 0.6rem; padding: 1.1rem 1.75rem; background: var(--surface-dark); font-size: 0.875rem; color: var(--text-on-dark-muted); }
.rc-foot strong { color: #fff; font-weight: 700; }

/* ============================================================
   CARDS
   ============================================================ */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface-card); border: 1px solid var(--border-default);
  box-shadow: var(--shadow-card); border-radius: var(--radius-md);
  padding: 2rem; transition: box-shadow .18s ease, transform .18s ease;
}
.card--hover:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card .card-ic { color: var(--ycdp-primary); margin-bottom: 1rem; display: inline-flex;
  width: 48px; height: 48px; border-radius: 50%; background: var(--ycdp-bg-tint);
  align-items: center; justify-content: center; }
.card .h3 { margin-bottom: 0.6rem; }
.card-body { font-size: 1.0625rem; line-height: 1.6; color: var(--text-body); }

/* Problem cards */
.card--problem { display: flex; flex-direction: column; }
.card--error { border: 2px solid var(--ycdp-error); background: #FEF1F1; }
.card--amber { border: 2px solid var(--ycdp-warning); background: var(--ycdp-warning-bg); }
.card--best {
  border: 2px solid var(--ycdp-accent); background: var(--surface-success);
  box-shadow: var(--shadow-hover);
}
.card-badge-row { margin-bottom: 1rem; }
.card-list { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.card-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9375rem; line-height: 1.5; color: var(--text-body); }
.card-list li svg { flex: none; margin-top: 0.15rem; }

/* ============================================================
   INSIGHT BOX
   ============================================================ */
.insight {
  background: var(--surface-tint); border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl); padding: 1.5rem;
}
.insight-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ycdp-primary); margin-bottom: 0.6rem; display: block;
}
.insight .h3 { margin-bottom: 0.5rem; }
.insight-body { font-size: 1.0625rem; line-height: 1.6; }
.insight-quote {
  margin: 1.25rem 0 0; padding: 1.25rem 1.4rem;
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); box-shadow: var(--shadow-card);
}
.insight-quote .iq-stars { display: flex; gap: 2px; margin-bottom: 0.6rem; }
.insight-quote .iq-stars svg { width: 16px; height: 16px; flex: none; }
.insight-quote blockquote { margin: 0; font-size: 1.0625rem; font-weight: 600; line-height: 1.55; color: var(--text-heading); }
.insight-quote .iq-cite { margin-top: 0.7rem; font-size: 0.8125rem; color: var(--text-muted); }
.insight-quote .iq-cite strong { color: var(--text-heading); font-weight: 700; }
.section--dark .insight { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }
.section--dark .insight-label { color: var(--ycdp-primary-light); }
.section--dark .insight-body { color: var(--text-on-dark-muted); }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pq {
  position: relative; overflow: hidden; isolation: isolate;
  background: #6D81B9; color: #fff;
  border-radius: var(--radius-xl); padding: clamp(2rem, 4vw, 3rem); margin: 0;
}
.pq::before {
  content: ""; position: absolute; inset: -42%; z-index: 0; pointer-events: none; filter: blur(95px);
  background:
    radial-gradient(40% 42% at 10% 12%, rgba(159,174,214,0.85), transparent 70%),
    radial-gradient(38% 44% at 86% 16%, rgba(64,80,132,0.78), transparent 70%),
    radial-gradient(30% 34% at 52% 46%, rgba(255,255,255,0.12), transparent 68%),
    radial-gradient(48% 52% at 74% 110%, rgba(38,41,60,0.68), transparent 72%),
    radial-gradient(42% 48% at 16% 106%, rgba(123,108,196,0.58), transparent 72%);
}
.pq-stars { position: relative; z-index: 1; display: flex; gap: 3px; margin-bottom: 1rem; }
.pq-stars svg { width: 18px; height: 18px; flex: none; }
.pq::after {
  content: "\275E"; position: absolute; right: clamp(1.25rem, 3vw, 2.25rem); bottom: -0.22em;
  font-family: Georgia, "Times New Roman", serif; font-size: clamp(5.5rem, 11vw, 9rem); line-height: 1;
  color: #fff; opacity: 0.14; z-index: 0; pointer-events: none;
}
.pq blockquote, .pq .pq-cite { position: relative; z-index: 1; }
.pq blockquote {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-weight: 800; line-height: 1.4;
  color: #fff; letter-spacing: 0.005em; text-wrap: pretty;
}
.pq .pq-cite { margin-top: 1.25rem; font-size: 0.8125rem; color: rgba(255,255,255,0.82); }
.pq .pq-cite strong { color: #fff; font-weight: 700; }
.pq-hl { color: #CFF3E1; }

/* ============================================================
   PRICE DISPLAY
   ============================================================ */
.price-display { }
.price-display .row { display: flex; align-items: baseline; gap: 0.5rem; }
.price-display .price-fig { line-height: 1.05; }
.price-display .period { font-size: 1.0625rem; font-weight: 500; color: var(--text-muted); }
.price-display .note { margin-top: 0.4rem; font-size: 0.8125rem; color: var(--text-muted); }

/* ---- Pricing card (two-panel) ---- */
.pricing-card-single { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-hover); border: 1px solid var(--border-default); }
.pricing-card-single .pricing-buy { height: 100%; }
.pricing-card {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  margin: 3rem 0 0;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-hover); border: 1px solid var(--border-default);
  background: var(--surface-card);
}
.pricing-buy {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--surface-dark); color: #fff;
  padding: clamp(2rem, 3.5vw, 2.75rem); display: flex; flex-direction: column;
}
.pricing-buy::before {
  content: ""; position: absolute; inset: -45%; z-index: 0; pointer-events: none; filter: blur(120px);
  background:
    radial-gradient(58% 52% at 18% 16%, rgba(109,129,185,0.55), transparent 74%),
    radial-gradient(54% 56% at 84% 30%, rgba(97,128,147,0.40), transparent 74%),
    radial-gradient(56% 56% at 30% 104%, rgba(74,90,143,0.42), transparent 74%);
}
.pricing-buy > * { position: relative; z-index: 1; }
.pricing-price { display: flex; align-items: baseline; gap: 0.5rem; margin: 1.25rem 0 0.25rem; }
.pp-amount { font-size: clamp(2.75rem, 5vw, 3.5rem); font-weight: 700; line-height: 1; color: #fff; letter-spacing: -0.01em; }
.pp-meta { font-size: 0.9375rem; font-weight: 600; color: var(--text-on-dark-muted); white-space: nowrap; }
.pricing-buy .pp-sub { font-size: 0.9375rem; line-height: 1.6; color: var(--text-on-dark-muted); margin-top: 0.6rem; }
.pricing-buy .cta-stack { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.6rem; }
.pricing-buy .cta-stack .btn { width: 100%; }
.pricing-buy .guarantee-line { color: var(--text-on-dark-muted); margin-top: 0.85rem; text-align: center; }
.pp-trust { margin-top: 1.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.16); display: flex; flex-direction: column; gap: 0.75rem; }
.pp-trust div { display: flex; align-items: center; gap: 0.7rem; font-size: 0.875rem; color: rgba(255,255,255,0.86); }
.pp-trust svg { color: var(--ycdp-accent); flex: none; width: 26px; height: 26px; padding: 5px; border-radius: 50%; background: rgba(16,196,105,0.18); box-sizing: border-box; }
.pricing-features { padding: clamp(2rem, 3.5vw, 2.75rem); }
.pricing-features .feat-h { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ycdp-primary); margin: 0 0 0.4rem; }
.pricing-features h3 { margin: 0; }
.pricing-feat-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.95rem 1.75rem; }
.pricing-feat-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9375rem; line-height: 1.45; color: var(--text-body); }
.pricing-feat-list li svg { flex: none; margin-top: 0.12rem; color: var(--ycdp-accent); }
.pricing-foot { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border-default); font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); }
table.compare { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 620px; }
table.compare th, table.compare td {
  padding: 1rem 1.25rem; text-align: center; vertical-align: middle;
  border-bottom: 1px solid var(--border-default); font-size: 0.9375rem;
}
table.compare thead th { font-size: 1rem; font-weight: 600; color: var(--text-heading); border-bottom: 2px solid var(--border-strong); }
table.compare th.feat, table.compare td.feat { text-align: left; font-weight: 500; color: var(--text-heading); }
table.compare thead th.feat { font-size: 0.875rem; }
table.compare th.hl {
  background: var(--ycdp-primary-dark); color: #fff; border-bottom: none;
  border-top-left-radius: var(--radius-md); border-top-right-radius: var(--radius-md);
}
table.compare td.hl { background: var(--ycdp-bg-section); }
.cell-pos { color: var(--ycdp-accent); font-weight: 600; }
.cell-neg { color: var(--ycdp-error-deep); font-weight: 600; }
.cell-amber { color: var(--ycdp-warning-deep); font-weight: 600; }

/* ============================================================
   STEPS (numbered walkthrough)
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 3rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.step-num {
  width: 2.5rem; height: 2.5rem; flex: none; border-radius: 50%;
  background: var(--ycdp-primary); color: #fff; font-weight: 700; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
}
.step-body .h3 { margin-bottom: 0.5rem; }
.step-body .body { margin-top: 0.4rem; }

/* Homepage "how it works" — aside + vertical step cards on a rail */
.hiw-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.hiw-aside { position: sticky; top: 110px; }
.hiw-steps { display: flex; flex-direction: column; gap: 1.75rem; position: relative; }
.hiw-steps::before {
  content: ""; position: absolute; left: 3.4rem; top: 3rem; bottom: 3rem; width: 2px;
  background: linear-gradient(var(--ycdp-primary), rgba(145,160,202,0.25)); z-index: 0;
}
.hiw-step {
  position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  background: var(--surface-card); border: 1px solid var(--ycdp-primary-light); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 1.75rem 1.9rem;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.hiw-step:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--ycdp-primary); }
.hiw-num {
  width: 3rem; height: 3rem; flex: none; border-radius: 50%; position: relative; z-index: 1;
  background: var(--ycdp-primary); color: #fff; font-weight: 700; font-size: 1.1875rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px var(--surface-card);
}
.hiw-content { padding-top: 0.35rem; }
.hiw-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.55rem; }
.hiw-head .h3 { margin: 0; }
.hiw-ic { flex: none; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--ycdp-bg-tint); color: var(--ycdp-primary); display: flex; align-items: center; justify-content: center; }
.hiw-content .body { color: var(--text-body); }
@media (max-width: 980px) {
  .hiw-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hiw-aside { position: static; }
}
.step-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.wt-head { display: flex; align-items: center; gap: 0.85rem; }
.wt-num {
  width: 3rem; height: 3rem; flex: none; border-radius: 50%;
  background: var(--ycdp-primary); color: #fff; font-weight: 700; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px var(--ycdp-bg-tint);
}
.wt-eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ycdp-primary); white-space: nowrap; }
.wt-eyebrow span { color: var(--text-muted); }
.step-grid .wt-step-title { font-size: clamp(1.375rem, 2.6vw, 1.875rem); font-weight: 700; line-height: 1.25; color: var(--text-heading); letter-spacing: -0.005em; margin-bottom: 1.1rem; }
.step-grid.rev .step-figure { order: -1; }
.screenshot-ph {
  position: relative; overflow: hidden;
  border: 1px solid var(--border-default); background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  min-height: 290px; padding: 3.4rem 1.5rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 0.875rem; color: var(--text-muted); line-height: 1.6;
}
.screenshot-ph::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2.4rem;
  background: var(--ycdp-bg-section); border-bottom: 1px solid var(--border-default);
}
.screenshot-ph::after {
  content: ""; position: absolute; top: 0.95rem; left: 1.1rem; width: 9px; height: 9px; border-radius: 50%;
  background: var(--ycdp-star);
  box-shadow: 15px 0 0 var(--ycdp-accent), 30px 0 0 var(--ycdp-primary-light);
}
.screenshot-ph > span {
  position: relative; z-index: 1; display: block;
  border: 1px dashed #BBCCD8; border-radius: 0.6rem; background: #F7F9FC;
  padding: 2rem 1.5rem; width: 100%;
}
.screenshot-ph .ph-ic { display: block; margin: 0 auto 0.75rem; color: var(--ycdp-primary-light); }
.step-img { width: 100%; max-width: 460px; height: auto; display: block; margin: 0 auto; }
.mini-list { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.mini-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9375rem; line-height: 1.5; }
.mini-list li svg { flex: none; margin-top: 0.15rem; color: var(--ycdp-accent); }

/* ============================================================
   ELIGIBILITY (two-column tick / warning)
   ============================================================ */
.elig3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; align-items: stretch; }
.elig3-side { display: flex; flex-direction: column; gap: 1.75rem; }
.elig3-card { display: flex; flex-direction: column; background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 1.75rem; }
.elig3-card--ok { border: 2px solid var(--ycdp-accent); box-shadow: var(--shadow-hover); }
.elig3-card--warn { border: 2px solid var(--ycdp-warning); background: var(--ycdp-warning-bg); }
.elig3-card--no { border: 2px solid var(--ycdp-error); background: #FEF1F1; }
.elig3-card--warn .elig3-cardcta .btn--secondary { color: var(--ycdp-warning); border-color: var(--ycdp-warning); }
.elig3-card--warn .elig3-cardcta .btn--secondary:hover { background: #FCEEE2; }
.elig3-card--no .elig3-cardcta .btn--secondary { color: var(--ycdp-error); border-color: var(--ycdp-error); }
.elig3-card--no .elig3-cardcta .btn--secondary:hover { background: #FDECEC; }
.elig3-list--ok li { font-weight: 600; font-size: 1.0625rem; line-height: 1.45; }
.elig3-okcta { margin-top: auto; padding-top: 1.25rem; }
.elig3-okcta .btn { width: 100%; }
.elig3-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.1rem; }
.elig3-head .h3 { margin: 0; font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 700; line-height: 1.3; }
.elig3-icon { display: none; }
.elig3-card--ok .elig3-head .h3 { color: var(--ycdp-accent); font-weight: 800; }
.elig3-card--warn .elig3-head .h3 { color: var(--ycdp-warning); }
.elig3-card--no .elig3-head .h3 { color: var(--ycdp-error); }
.elig3-icon--ok { background: var(--ycdp-accent-light); color: var(--ycdp-accent); }
.elig3-icon--warn { background: #fff; color: var(--ycdp-warning); }
.elig3-icon--no { background: #fff; color: var(--ycdp-error); }
.elig3-intro { font-size: 0.9375rem; line-height: 1.55; color: var(--text-body); margin: 0 0 1rem; font-weight: 500; }
.elig3-list { list-style: none; margin: 0 0 1rem; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.elig3-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9375rem; line-height: 1.45; color: var(--text-body); }
.elig3-list--ok { display: flex; flex-direction: column; gap: 0.7rem; }
.elig3-list li svg { flex: none; margin-top: 0.15rem; }
.elig3-note { font-size: 0.8125rem; line-height: 1.55; color: var(--text-muted); margin: auto 0 0; padding-top: 0.85rem; border-top: 1px solid var(--border-default); }
.elig3-cardcta { margin-top: auto; padding-top: 1.25rem; }
.elig3-cardcta .btn { width: 100%; }
.elig3-foot { max-width: 52rem; margin: 2.5rem 0 0; }
.elig3-foot .cta-group { margin-top: 1.5rem; }
@media (max-width: 980px) { .elig3-grid { grid-template-columns: 1fr; } }

/* Eligibility page detail items */
.eitem-list { display: flex; flex-direction: column; gap: 1.25rem; max-width: 56rem; }
.eitem { display: flex; flex-direction: column; background: var(--surface-card); border: 2px solid var(--border-default); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 1.75rem; transition: box-shadow .18s ease, transform .18s ease; }
.eitem:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.eitem--ok { border-color: var(--ycdp-accent); }
.eitem--warn { border-color: var(--ycdp-warning); }
.eitem--no { border-color: var(--ycdp-error); }
.eitem-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.eitem-head .h3 { margin: 0; font-size: 1.0625rem; line-height: 1.35; }
.eitem-ic { flex: none; width: 2.5rem; height: 2.5rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.eitem-ic { box-shadow: none; }
.eitem--ok .eitem-ic { background: var(--ycdp-accent-light); color: var(--ycdp-accent); }
.eitem--warn .eitem-ic { background: var(--ycdp-warning-bg); color: var(--ycdp-warning); }
.eitem--no .eitem-ic { background: #FEF1F1; color: var(--ycdp-error); }
.eitem-body p { font-size: 1rem; line-height: 1.7; color: var(--text-body); margin: 0; }
.eitem-body p:has(.eitem-label) { margin-top: 1rem; padding: 0.9rem 1.1rem; background: var(--ycdp-bg-section); border-left: 3px solid var(--ycdp-primary-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.9375rem; line-height: 1.6; color: var(--text-muted); }
.eitem-label { display: block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ycdp-primary); margin-bottom: 0.25rem; }
@media (max-width: 760px) { .eitem-list { gap: 1rem; } }
.elig-strip { position: relative; overflow: hidden; isolation: isolate; display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-top: 2.5rem; max-width: 56rem; padding: clamp(1.75rem, 3vw, 2.5rem); border-radius: var(--radius-xl); }
.elig-strip > * { position: relative; z-index: 1; }
.elig-strip-text { flex: none; }
.elig-strip-h { color: #fff; font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 700; line-height: 1.25; margin: 0; }
.elig-strip-sub { color: var(--text-on-dark-muted); font-size: 1rem; line-height: 1.6; margin: 0.6rem 0 0; max-width: 46rem; }
.elig-strip .cta-group { margin-top: 0; }
.elig-strip .cta-group { margin-top: 0; }

/* ============================================================
   ELIGIBILITY (two-column tick / warning)
   ============================================================ */
.elig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.elig-col { background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-card); }
.elig-col--ok { border-top: 3px solid var(--ycdp-accent); }
.elig-col--warn { border-top: 3px solid var(--ycdp-warning); }
.elig-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.elig-icon { width: 2.5rem; height: 2.5rem; flex: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.elig-icon--ok { background: var(--ycdp-accent-light); color: var(--ycdp-accent); }
.elig-icon--warn { background: var(--ycdp-warning-bg); color: var(--ycdp-warning-deep); }
.elig-head .h3 { margin: 0; }
.elig-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.elig-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1rem; line-height: 1.55; }
.elig-list li svg { flex: none; margin-top: 0.2rem; }
.elig-list li .ic-ok { color: var(--ycdp-accent); }
.elig-list li .ic-warn { color: var(--ycdp-warning-deep); }

/* ============================================================
   FEATURE / CHECK LISTS
   ============================================================ */
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 1.0625rem; line-height: 1.6; }
.check-list li svg { flex: none; margin-top: 0.25rem; color: var(--ycdp-accent); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.smallprint-strip {
  display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center;
  margin-top: 2.5rem;
}
.smallprint-strip span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500; line-height: 1.3; padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full); background: #f1faf5; color: var(--ycdp-secondary);
  border: 1px solid var(--ycdp-accent);
}

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.review-card { background: var(--surface-card); border: 1px solid var(--border-default); box-shadow: var(--shadow-card); border-radius: var(--radius-lg); padding: 2.25rem; display: flex; flex-direction: column; gap: 1.25rem; transition: box-shadow .18s ease, transform .18s ease; }
.review-card--hover:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.review-card .stars svg { width: 22px; height: 22px; }
.review-quote { font-size: clamp(1.1875rem, 1.5vw, 1.4rem); font-weight: 800; line-height: 1.4; letter-spacing: 0.005em; color: var(--text-heading); }
.review-card > div:last-child { margin-top: auto; }
.review-name { font-size: 0.9375rem; font-weight: 700; color: var(--ycdp-primary-dark); }
.review-src { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }
.rq-hl { background: #CFF3E1; color: #0B7E45; border-radius: 6px; padding: 0.04em 0.32em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hl-pw { color: #91A0CA; }
.testi-anchor { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 3rem; align-items: center; }
.testi-score-big { font-size: clamp(3rem, 7vw, 4.5rem); font-weight: 800; line-height: 1; color: var(--text-heading); }

/* ============================================================
   FAQ ACCORDION (CSS-only details/summary)
   ============================================================ */
.faq-cat { margin-top: 2.5rem; }
.faq-cat:first-child { margin-top: 0; }
.faq-cat-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ycdp-accent); margin-bottom: 1rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq {
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq[open] { box-shadow: var(--shadow-card); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem; font-size: 1.1875rem; font-weight: 600; color: var(--text-heading);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; margin-top: 0.15rem; color: var(--ycdp-primary); transition: transform .2s ease; }
.faq[open] summary .chev { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.4rem; }
.faq-answer p { font-size: 1.0625rem; line-height: 1.6; color: var(--text-body); }
.faq-answer ul { margin: 0.75rem 0 0; padding-left: 1.25rem; }
.faq-answer li { font-size: 1.0625rem; line-height: 1.6; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--surface-card); border: 1px solid var(--border-default); box-shadow: var(--shadow-card); border-radius: var(--radius-lg); padding: 2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.field label { font-size: 0.9375rem; font-weight: 600; color: var(--text-heading); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--text-body);
  padding: 0.8rem 0.9rem; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: #fff; min-height: 3rem; width: 100%;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--ycdp-primary); outline-offset: 2px; border-color: var(--ycdp-primary); }
.form-smallprint { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ============================================================
   CONTACT METHODS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.contact-method { background: var(--surface-card); border: 1px solid var(--border-default); box-shadow: var(--shadow-card); border-radius: var(--radius-lg); padding: 2rem; }
.contact-method .card-ic { margin-bottom: 1rem; }
.contact-big { font-size: 1.5rem; font-weight: 700; color: var(--ycdp-primary-deep); margin: 0.5rem 0; }

/* ============================================================
   KNOWLEDGE HUB
   ============================================================ */
.kb-cat { margin-top: 3rem; }
.kb-cat:first-child { margin-top: 0; }
.kb-cat-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.kb-cat-head .h3 { margin: 0; }
.kb-cat-ic { width: 2.5rem; height: 2.5rem; flex: none; border-radius: 10px; background: var(--ycdp-bg-tint); color: var(--ycdp-primary); display: flex; align-items: center; justify-content: center; }
.kb-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 2rem; }
.kb-link { display: flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1rem; border-radius: var(--radius-md); border: 1px solid var(--border-default); background: #fff; font-size: 1rem; color: var(--text-heading); font-weight: 500; transition: background .14s ease, border-color .14s ease, transform .14s ease; }
.kb-link:hover { background: var(--ycdp-bg-section); border-color: var(--ycdp-primary-light); transform: translateY(-1px); }
.kb-link svg { flex: none; color: var(--ycdp-primary-light); margin-left: auto; }

/* ============================================================
   IMAGES
   ============================================================ */
.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.banner-media { height: clamp(220px, 30vw, 420px); border-radius: var(--radius-lg); overflow: hidden; }
.banner-media img { width: 100%; height: 100%; object-fit: cover; }
/* Translucent warning panels on dark sections (ghost-pill style + orange border) */
.warn-panel { background: rgba(255,255,255,0.06); border: 1px solid var(--ycdp-warning); border-radius: var(--radius-md); padding: 1.5rem; }
.warn-panel-head { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.5rem; }
.warn-panel-head .warn-ic { flex: none; width: 2rem; height: 2rem; border-radius: 50%; background: rgba(240,142,80,0.16); color: var(--ycdp-warning); display: inline-flex; align-items: center; justify-content: center; }
.warn-panel-head h3 { margin: 0; color: #fff; font-size: 1.0625rem; font-weight: 700; }
.warn-panel p { margin: 0; color: var(--text-on-dark-muted); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { text-align: center; max-width: 46rem; margin: 0 auto; }
.final-cta .cta-group { justify-content: center; margin-top: 2rem; }
.final-cta .hero-phone { margin-top: 0.875rem; }
.final-cta .pill-row { justify-content: center; margin-top: 1.75rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; justify-content: center; font-size: 0.8125rem; margin-top: 1.75rem; color: var(--text-on-dark-muted); }
.trust-row span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-row span:not(:first-child)::before { content: "·"; margin-right: 0.5rem; opacity: 0.5; }

/* ============================================================
   SUPPORT PAGE — channel cards + stage cards
   ============================================================ */
.channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.channel-card { display: flex; flex-direction: column; align-items: flex-start; background: var(--surface-card); border: 1px solid var(--border-default); box-shadow: var(--shadow-card); border-radius: var(--radius-lg); padding: 2rem; transition: box-shadow .18s ease, transform .18s ease; }
.channel-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.channel-ic { width: 52px; height: 52px; flex: none; border-radius: 14px; background: var(--ycdp-bg-tint); color: var(--ycdp-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.channel-card .h3 { margin-bottom: 0.5rem; }
.channel-card .card-body { flex: 1 0 auto; margin-bottom: 1.5rem; }
.channel-card .btn { margin-top: auto; }
.channel-direct { background: var(--surface-tint); border-color: var(--border-strong); }
.channel-direct .channel-big { font-size: 1.5rem; font-weight: 700; color: var(--ycdp-primary-deep); margin: 0.25rem 0; }

.stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stage-card { background: var(--surface-card); border: 1px solid var(--border-default); box-shadow: var(--shadow-card); border-radius: var(--radius-lg); padding: 2rem; }
.stage-num { width: 2.5rem; height: 2.5rem; flex: none; border-radius: 50%; background: var(--ycdp-primary); color: #fff; font-weight: 700; font-size: 1.125rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.stage-card .h3 { margin-bottom: 0.6rem; color: var(--text-heading); }
.section--dark .stage-card .h3 { color: var(--text-heading); }
.section--dark .stage-card .card-body { color: var(--text-body); }

/* ============================================================
   BLOG SINGLE POST
   ============================================================ */
.breadcrumb { background: var(--ycdp-bg-section); border-bottom: 1px solid var(--border-default); }
.breadcrumb-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding: 0.85rem 0; font-size: 0.8125rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--ycdp-primary); }
.breadcrumb-inner a:hover { color: var(--ycdp-primary-dark); }
.breadcrumb-sep { color: var(--ycdp-primary-light); }
.breadcrumb-cur { color: var(--text-muted); }

.article-wrap { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.article-grid { display: grid; grid-template-columns: minmax(0, 68fr) minmax(0, 28fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem; }
.article-meta .caption { margin: 0; }
.pill-cat { display: inline-flex; align-items: center; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.35rem 0.7rem; border-radius: var(--radius-full); background: var(--ycdp-accent-light); color: #0c8f4e; }
.article-h1 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.15; color: var(--text-heading); margin: 0; letter-spacing: -0.01em; }
.standfirst { font-size: 1.125rem; font-weight: 500; line-height: 1.7; color: var(--text-body); margin-top: 1.25rem; }
.article-author { font-size: 0.875rem; color: var(--text-muted); margin-top: 1.25rem; }
.article-divider { height: 1px; background: var(--border-default); border: 0; margin: 1.75rem 0; }
.article-body > h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; color: var(--text-heading); line-height: 1.3; margin: 2.5rem 0 1rem; scroll-margin-top: 100px; }
.article-body > h2:first-child { margin-top: 0; }
.article-body p { font-size: 1.0625rem; line-height: 1.8; color: var(--text-body); margin: 0 0 1.1rem; }
.article-body ul { margin: 0 0 1.25rem; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.article-body ul li { position: relative; padding-left: 1.6rem; font-size: 1.0625rem; line-height: 1.7; color: var(--text-body); }
.article-body ul li::before { content: ""; position: absolute; left: 0.1rem; top: 0.65rem; width: 7px; height: 7px; border-radius: 50%; background: var(--ycdp-primary-light); }
.article-body .sublabel { font-weight: 700; color: var(--text-heading); margin-bottom: 0.4rem; }
.article-body blockquote { border-left: 3px solid var(--ycdp-primary); padding: 0.25rem 0 0.25rem 1.25rem; margin: 1.5rem 0; font-style: italic; font-size: 1.0625rem; color: var(--text-body); line-height: 1.7; }

.article-cta { background: var(--ycdp-accent-light); border: 1px solid var(--ycdp-accent); border-radius: 1rem; padding: 1.75rem; margin: 2.25rem 0; }
.article-cta .eyebrow { color: #0c8f4e; }
.article-cta .h3 { margin: 0.5rem 0; }
.article-cta p { font-size: 1rem; line-height: 1.6; margin-bottom: 1.25rem; }
.article-cta .cta-group { margin-top: 0; }

.article-foot { margin-top: 3rem; }
.helpful-row { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 0; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.helpful-row span { font-size: 0.9375rem; font-weight: 600; color: var(--text-heading); }
.helpful-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-family: inherit; font-size: 0.875rem; font-weight: 600; color: var(--ycdp-primary); background: #fff; border: 1px solid var(--border-strong); border-radius: var(--radius-full); padding: 0.45rem 1rem; cursor: pointer; transition: background .14s ease; }
.helpful-btn:hover { background: var(--ycdp-bg-section); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.related-card { background: var(--surface-card); border: 1px solid var(--border-default); box-shadow: var(--shadow-card); border-radius: var(--radius-md); padding: 1.5rem; transition: box-shadow .18s ease, transform .18s ease; }
.related-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.related-card .pill-cat { margin-bottom: 0.85rem; }
.related-card .r-title { display: block; font-size: 1.0625rem; font-weight: 700; color: var(--text-heading); line-height: 1.35; }
.related-card:hover .r-title { color: var(--ycdp-primary); }
.related-card .caption { margin-top: 0.6rem; }

/* Sidebar */
.article-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.75rem; }
.toc { border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 1.25rem 1.4rem; background: var(--surface-card); }
.toc-h { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin: 0 0 0.85rem; }
.toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.toc a { font-size: 0.875rem; line-height: 1.4; color: var(--ycdp-primary); }
.toc a:hover { color: var(--ycdp-primary-dark); }
.side-cta { background: var(--ycdp-primary-light); border-radius: var(--radius-lg); padding: 1.4rem; color: #fff; }
.side-cta .h3 { color: #fff; font-size: 1.0625rem; line-height: 1.35; margin-bottom: 1rem; }
.side-cta .btn { width: 100%; }
.recent-h { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin: 0 0 0.85rem; }
.recent ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.recent a { font-size: 0.9375rem; line-height: 1.4; color: var(--text-heading); font-weight: 500; }
.recent a:hover { color: var(--ycdp-primary); }
.toc-mobile { display: none; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-wrap { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); }
.legal-head { margin-bottom: 2rem; }
.legal-head .h1 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
.legal-meta { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.85rem; }
.legal-intro { font-size: 1.0625rem; line-height: 1.7; color: var(--text-body); font-weight: 500; margin-top: 1rem; }
.legal-prose > h2 { font-size: clamp(1.125rem, 1.9vw, 1.375rem); font-weight: 700; color: var(--text-heading); margin: 2.5rem 0 0.85rem; }
.legal-prose > h2:first-child { margin-top: 0; }
.legal-prose h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-heading); margin: 1.6rem 0 0.5rem; }
.legal-prose p { font-size: 1rem; line-height: 1.75; color: var(--text-body); margin: 0 0 0.9rem; }
.legal-prose ul { margin: 0 0 1.1rem; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.legal-prose li { position: relative; padding-left: 1.5rem; font-size: 1rem; line-height: 1.7; color: var(--text-body); }
.legal-prose li::before { content: ""; position: absolute; left: 0.15rem; top: 0.62rem; width: 6px; height: 6px; border-radius: 50%; background: var(--ycdp-primary-light); }
.legal-prose strong { color: var(--text-heading); font-weight: 700; }
.legal-prose a { color: var(--ycdp-primary); text-decoration: underline; }
.legal-prose a:hover { color: var(--ycdp-primary-dark); }
.legal-divider { height: 1px; background: var(--border-default); border: 0; margin: 3rem 0; }
.legal-version-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ycdp-primary); margin-bottom: 0.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #fff; }
.footer-top {
  display: grid; grid-template-columns: minmax(180px, 0.8fr) minmax(440px, 2.1fr) minmax(200px, 0.8fr);
  gap: 2.5rem; padding: clamp(3rem, 6vw, 5rem) 0; align-items: start;
}
/* Brand + disclaimer */
.footer-brand img { width: 200px; height: auto; margin-bottom: 1.75rem; }
.footer-disclaimer { font-size: 0.6875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.85rem; max-width: 26rem; }
.footer-disclaimer:last-child { margin-bottom: 0; }
/* Nav columns — Home spans top, then 2 columns */
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem 1.5rem; }
.footer-nav .f-col { display: flex; flex-direction: column; gap: 0.85rem; }
.f-col-h { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ycdp-secondary); margin-bottom: 0.15rem; }
.footer-nav a { font-size: 0.875rem; font-weight: 500; color: var(--ycdp-primary); transition: color .15s ease; }
.footer-nav a:hover { color: var(--ycdp-primary-dark); }
/* Contact block */
.footer-contact-h { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ycdp-secondary); margin: 0 0 1.25rem; }
.f-contact-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; color: var(--ycdp-primary-dark); }
.f-contact-row svg { flex: none; width: 17px; height: 17px; }
.f-phone span { font-size: 1.125rem; font-weight: 700; }
.f-email span { font-size: 0.9375rem; font-weight: 700; }
.f-contact-row:hover span { color: var(--ycdp-primary); }
.f-address { font-size: 0.8125rem; color: var(--ycdp-primary-dark); line-height: 1.55; margin: 0.4rem 0 0; }
/* Sub-footer bar */
.footer-bar { background: var(--ycdp-bg-secondary); }
.footer-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 2rem; flex-wrap: wrap; padding: 1.5rem 0; }
.footer-social { display: flex; gap: 0.6rem; flex: none; }
.f-social { width: 32px; height: 32px; border-radius: 50%; background: var(--ycdp-primary); display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.f-social:hover { background: var(--ycdp-primary-dark); }
.f-social svg { width: 15px; height: 15px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: center; flex: 1 1 auto; }
.footer-legal a { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ycdp-primary); transition: color .15s ease; }
.footer-legal a:hover { color: var(--ycdp-primary-dark); }
.footer-copy { font-size: 0.6875rem; color: var(--text-muted); margin: 0; flex: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1140px) and (min-width: 981px) {
  .nav-phone, .nav-divider { display: none; }
  .nav-inner { gap: 1.5rem; }
  .nav-links { gap: 1.4rem; }
}
@media (max-width: 980px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: inline-flex; }
  .hero-grid, .step-grid, .testi-anchor, .media-split, .pricing-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .step-grid.rev .step-figure { order: 0; }
  .grid-3, .grid-4, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .pricing-card { grid-template-columns: 1fr; }
  .grid-2, .elig-grid, .review-grid, .kb-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .stage-grid, .related-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; gap: 0; }
  .article-side { position: static; display: none; }
  .toc-mobile { display: block; margin: 1.5rem 0; }
  .footer-top { grid-template-columns: minmax(160px, 0.9fr) minmax(280px, 1.6fr) minmax(180px, 0.9fr); gap: 2rem; align-items: start; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .container, .container-narrow { padding: 0 1.25rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .pricing-feat-list { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.5rem; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { justify-content: flex-start; }
  .cta-group .btn { width: 100%; }
  .step { grid-template-columns: 1fr; gap: 0.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}

