  :root {
    --navy: #0A1A2F;
    --navy-deep: #060F1C;
    --navy-mid: #0F2440;
    --slate: #3E4A57;
    --slate-light: #566373;
    --slate-dark: #2C3642;
    --teal: #1FA39A;
    --teal-bright: #26C4B9;
    --teal-deep: #177E77;
    --teal-glow: rgba(31,163,154,0.12);
    --gold: #D1A23A;
    --gold-bright: #E8BC52;
    --gold-deep: #B8892A;
    --gold-glow: rgba(209,162,58,0.1);
    --mist: #F8F9FB;
    --mist-warm: #F3F4F7;
    --white: #FFFFFF;
    --burgundy: #9E3A44;
    --burgundy-soft: rgba(158,58,68,0.08);
    --emerald: #2A9D6F;
    --emerald-glow: rgba(42,157,111,0.08);
    --text-primary: #0A1A2F;
    --text-secondary: #3E4A57;
    --text-muted: #7A8694;
    --border: rgba(10,26,47,0.08);
    --border-strong: rgba(10,26,47,0.14);
    --section-pad: clamp(4rem, 8vw, 7rem);
    --container: 1200px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  @media (max-width: 600px) {
    .desktop-break { display: none; }
  }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

  body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--mist);
    color: var(--text-primary);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ========================================
     NAV
     ======================================== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(248,249,251,0.88);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  nav.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(248,249,251,0.96);
    box-shadow: 0 1px 16px rgba(10,26,47,0.06);
  }
  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem; font-weight: 400;
    color: var(--navy); letter-spacing: -0.01em;
    text-decoration: none;
    display: flex; align-items: center; gap: 0.55rem;
    line-height: 1;
  }
  .logo-mark {
    width: 34px; height: 34px; flex-shrink: 0;
    display: block;
  }
  .logo-mark path, .logo-mark rect, .logo-mark circle, .logo-mark polygon {
    fill: var(--teal);
  }
  .logo-mark .mark-accent { fill: var(--teal-bright); }
  .logo-mark .mark-center { fill: var(--white); }
  .logo-text { font-weight: 400; color: var(--navy); }
  .logo-text em { font-style: normal; color: var(--teal); font-weight: 400; }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    text-decoration: none; color: var(--text-secondary);
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta {
    background: var(--teal) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.6rem !important; border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.25s !important;
    letter-spacing: 0.02em !important;
  }
  .nav-cta:hover {
    background: var(--teal-deep) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(31,163,154,0.25);
  }
  .nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 32px; height: 32px;
    position: relative; z-index: 1001;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--navy); border-radius: 2px;
    position: absolute; left: 5px;
    transition: all 0.3s;
  }
  .nav-toggle span:nth-child(1) { top: 9px; }
  .nav-toggle span:nth-child(2) { top: 15px; }
  .nav-toggle span:nth-child(3) { top: 21px; }
  .nav-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

  /* ========================================
     HERO, OUTCOME-FIRST
     ======================================== */
  .hero {
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: calc(5rem + 60px) 1.5rem 4rem;
    position: relative; overflow: hidden;
    background: var(--navy);
    color: var(--white);
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 30% 20%, rgba(31,163,154,0.08), transparent 60%),
      radial-gradient(ellipse 50% 60% at 70% 80%, rgba(209,162,58,0.06), transparent 60%),
      radial-gradient(ellipse 80% 40% at 50% 100%, rgba(31,163,154,0.05), transparent);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  }
  .hero-inner { max-width: 800px; position: relative; z-index: 1; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.7rem;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--teal-bright); margin-bottom: 1.8rem;
    animation: fadeSlideUp 0.7s ease 0.1s both;
  }
  .hero-tag::before, .hero-tag::after {
    content: ''; width: 32px; height: 1.5px;
    background: var(--teal); border-radius: 1px;
  }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 400; line-height: 1.08;
    letter-spacing: -0.025em; margin-bottom: 1.6rem;
    animation: fadeSlideUp 0.7s ease 0.2s both;
  }
  .hero h1 em { font-style: italic; color: var(--teal-bright); }
  .hero-desc {
    font-size: 1.1rem; color: rgba(255,255,255,0.6);
    max-width: 560px; margin: 0 auto 1rem;
    line-height: 1.7; font-weight: 400;
    animation: fadeSlideUp 0.7s ease 0.35s both;
  }
  .hero-one-liner {
    font-size: 0.88rem; color: var(--gold);
    font-weight: 600; margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.7s ease 0.42s both;
    letter-spacing: 0.01em;
  }
  .hero-actions {
    display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap;
    animation: fadeSlideUp 0.7s ease 0.5s both;
  }

  /* Buttons */
  .btn-teal {
    background: var(--teal);
    color: var(--white); padding: 1rem 2.4rem;
    border: none; border-radius: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.92rem; font-weight: 600;
    cursor: pointer; transition: all 0.25s; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-teal:hover {
    background: var(--teal-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(31,163,154,0.3);
  }
  .btn-outline-light {
    background: transparent; color: rgba(255,255,255,0.85);
    padding: 1rem 2.4rem;
    border: 1.5px solid rgba(255,255,255,0.18); border-radius: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.92rem; font-weight: 500;
    cursor: pointer; transition: all 0.25s; text-decoration: none;
  }
  .btn-outline-light:hover { border-color: var(--teal); color: var(--teal-bright); }
  .btn-gold {
    background: var(--gold);
    color: var(--navy); padding: 1rem 2.4rem;
    border: none; border-radius: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.92rem; font-weight: 700;
    cursor: pointer; transition: all 0.25s; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-gold:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(209,162,58,0.3);
  }

  /* Trust bar */
  .trust-bar {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    margin-top: 3.5rem;
    animation: fadeSlideUp 0.7s ease 0.65s both;
  }
  .trust-item { text-align: center; }
  .trust-val {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem; font-weight: 400; color: var(--gold);
  }
  .trust-label {
    font-size: 0.7rem; color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem;
    font-weight: 600;
  }

  /* ========================================
     SECTIONS
     ======================================== */
  section { padding: var(--section-pad) 2rem; }
  .section-tag {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--teal); text-align: center; margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 400; text-align: center;
    line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.8rem;
    color: var(--navy);
  }
  .section-sub {
    text-align: center; color: var(--text-muted);
    max-width: 520px; margin: 0 auto 3.5rem;
    font-size: 1rem; line-height: 1.65; font-weight: 400;
  }

  /* ========================================
     OFFERS SECTION BACKGROUND
     ======================================== */
  #offers { background: var(--mist); padding-bottom: 2rem !important; }
  #how { padding-top: 2rem !important; }

  /* Guarantee bar, used by the three offerings section */
  .guarantee-bar {
    max-width: 700px; margin: 0 auto;
    text-align: center;
    padding: 1.4rem 1.8rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
  }
  .guarantee-bar p {
    font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65;
  }
  .guarantee-bar p strong {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.4rem;
  }
  .guarantee-bar p em {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-style: italic;
    display: inline-block;
    margin-top: 0.4rem;
  }
  .guarantee-bar .guarantee-icon { font-size: 1.3rem; margin-bottom: 0.4rem; display: block; }

  /* ========================================
     HOW IT WORKS
     ======================================== */
  #how { background: var(--mist); }
  .how-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3.5rem; max-width: 1100px; margin: 0 auto;
    align-items: start;
  }
  .how-steps-col { display: flex; flex-direction: column; gap: 2.2rem; padding-top: 0.5rem; }
  .how-step {
    display: flex; gap: 1.2rem; align-items: flex-start;
    position: relative;
  }
  .how-step:not(:last-child)::after {
    content: '';
    position: absolute; left: 24px; top: 54px; bottom: -2.2rem;
    width: 2px;
    background: linear-gradient(180deg, var(--teal), rgba(31,163,154,0.1));
  }
  .how-num {
    width: 50px; height: 50px; min-width: 50px;
    background: var(--white); border: 2px solid var(--border-strong);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem; font-weight: 400; color: var(--teal);
    transition: all 0.3s; z-index: 1;
  }
  .how-step:hover .how-num {
    background: var(--teal);
    color: var(--white); border-color: var(--teal);
  }
  .how-content h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem; font-weight: 400; margin-bottom: 0.3rem;
    color: var(--navy);
  }
  .how-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
  .how-content .how-detail {
    font-size: 0.8rem; color: var(--teal); font-weight: 500;
    margin-top: 0.35rem; font-style: italic;
  }

  /* Intake Preview */
  .intake-preview {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.2rem;
    position: relative; overflow: hidden;
  }
  .intake-preview::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-deep));
  }
  .intake-preview-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem; font-weight: 400; margin-bottom: 0.3rem;
    color: var(--navy);
  }
  .intake-preview-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.6rem; }
  .intake-field { margin-bottom: 1.1rem; }
  .intake-field label {
    display: block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.35rem;
  }
  .intake-field label .optional-tag {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.7rem;
    margin-left: 0.3rem;
  }
  .intake-help {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    line-height: 1.45;
    font-style: italic;
  }
  .intake-field input, .intake-field select, .intake-field textarea {
    width: 100%; padding: 0.8rem 1rem;
    background: var(--mist);
    border: 1.5px solid var(--border-strong);
    border-radius: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.88rem; color: var(--navy);
    outline: none; transition: border-color 0.2s;
  }
  .intake-field input::placeholder, .intake-field textarea::placeholder { color: var(--text-muted); }
  .intake-field input:focus, .intake-field select:focus, .intake-field textarea:focus { border-color: var(--teal); }
  .intake-price-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

  /* Estimator: conditional category-specific fields */
  .conditional-fields {
    display: none;
  }
  .conditional-fields.active {
    display: block;
    animation: fadeSlideUp 0.35s ease both;
  }
  .intake-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  /* Toggle pill group (resale/new, new/cpo/used) */
  .toggle-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .toggle-pill {
    flex: 1;
    min-width: 90px;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--border-strong);
    background: var(--white);
    border-radius: 8px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    white-space: nowrap;
  }
  .toggle-pill:hover {
    border-color: rgba(31,163,154,0.4);
    color: var(--teal);
  }
  .toggle-pill.active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(31,163,154,0.2);
  }
  .toggle-pill.active:hover {
    background: var(--teal-deep);
    color: var(--white);
  }
  /* On smaller intake-preview cards, stack auto manufacturer/model */
  @media (max-width: 600px) {
    .intake-row { grid-template-columns: 1fr; }
  }

  /* Savings Estimator output */
  .estimator-result {
    background: linear-gradient(135deg, var(--emerald-glow), rgba(42,157,111,0.02));
    border: 1.5px solid rgba(42,157,111,0.25);
    border-radius: 14px;
    padding: 1.4rem 1.4rem 1.2rem;
    margin-top: 0.8rem;
    text-align: center;
    animation: fadeSlideUp 0.45s ease;
  }
  .estimator-result-label {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 0.5rem;
  }
  .estimator-range {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 400;
    color: var(--emerald);
    line-height: 1.15;
    margin-bottom: 0.3rem;
  }
  .estimator-percent {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.9rem;
  }
  .estimator-divider {
    height: 1px;
    background: rgba(42,157,111,0.2);
    margin: 0.8rem auto;
    max-width: 80%;
  }
  .estimator-comparison {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.45rem;
    margin-bottom: 0.4rem;
  }
  .estimator-comp-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
  }
  .estimator-comp-fee {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 400;
  }
  .estimator-net {
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 700;
  }
  .estimator-cta {
    transition: all 0.25s;
  }
  .estimator-cta.estimator-cta-pulse {
    animation: pulseHighlight 1.6s ease;
  }
  .estimator-guarantee {
    text-align: center;
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 0.7rem;
    font-weight: 500;
    line-height: 1.55;
  }
  @keyframes pulseHighlight {
    0%, 100% { transform: scale(1); box-shadow: none; }
    30% { transform: scale(1.02); box-shadow: 0 8px 28px rgba(31,163,154,0.4); }
  }

  /* ========================================
     VALUE STACK, Everything You Get
     ======================================== */
  #value { background: var(--navy); color: var(--white); }
  #value .section-tag { color: var(--gold); }
  #value .section-title { color: var(--white); }
  #value .section-sub { color: rgba(255,255,255,0.45); }
  .value-columns {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.2rem; max-width: 900px; margin: 0 auto 2.5rem;
  }
  .value-item {
    display: flex; flex-direction: row-reverse; gap: 0.7rem; align-items: flex-start;
    padding: 1rem 1.2rem;
    background: var(--navy-mid); border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
  }
  .value-item .v-icon {
    font-size: 1.1rem; min-width: 24px; text-align: center; margin-top: 2px; flex-shrink: 0;
  }
  .value-item div { text-align: left; flex: 1; }
  .value-item h4 { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 0.15rem; }
  .value-item p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.4; margin: 0; }
  .value-total {
    text-align: center; max-width: 600px; margin: 0 auto;
    padding: 1.4rem; background: var(--navy-mid);
    border: 1px solid rgba(209,162,58,0.15);
    border-radius: 14px;
  }
  .value-total .crossed {
    font-size: 1rem; color: rgba(255,255,255,0.3);
    text-decoration: line-through; margin-bottom: 0.15rem;
  }
  .value-total .actual {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem; color: var(--gold);
    line-height: 1.3;
  }
  .value-total .actual span {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    font-family: 'Instrument Sans', sans-serif; font-weight: 400;
  }
  .value-total .actual .mobile-break { display: none; }
  @media (max-width: 600px) {
    .value-total .actual .mobile-break { display: block; line-height: 0.2; }
  }
  .value-total .tagline {
    font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem;
  }

  /* ========================================
     DISCLAIMER
     ======================================== */
  .disclaimer-bar {
    background: var(--mist-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 2rem;
    text-align: center;
  }
  .disclaimer-inner {
    max-width: 760px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    flex-wrap: wrap;
  }
  .disclaimer-icon {
    width: 30px; height: 30px;
    background: var(--burgundy-soft);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
    color: var(--burgundy);
  }
  .disclaimer-text {
    font-size: 0.8rem; color: var(--text-muted); line-height: 1.55;
  }
  .disclaimer-text strong { color: var(--navy); font-weight: 700; }

  /* ========================================
     REVIEWS CAROUSEL
     ======================================== */
  #reviews { background: var(--white); }

  /* Filter chips */
  .reviews-filter {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.5rem;
    max-width: 1100px; margin: 0 auto 2rem;
    padding: 0 0.5rem;
  }
  .reviews-filter button {
    background: var(--mist);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 0.5rem 1.05rem;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.82rem; font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 0.4rem;
    white-space: nowrap;
  }
  .reviews-filter button .filter-count {
    font-size: 0.68rem; font-weight: 700;
    background: var(--white);
    color: var(--text-muted);
    padding: 0.1rem 0.45rem; border-radius: 999px;
    line-height: 1.4;
    transition: all 0.2s;
  }
  .reviews-filter button:hover {
    border-color: var(--teal);
    color: var(--teal);
  }
  .reviews-filter button.active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(31,163,154,0.25);
  }
  .reviews-filter button.active .filter-count {
    background: rgba(255,255,255,0.2);
    color: var(--white);
  }

  /* Carousel wrapper with side controls */
  .reviews-carousel-wrap {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 0.5rem;
  }
  .reviews-carousel {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.5rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
  }
  .reviews-carousel::-webkit-scrollbar {
    height: 6px;
  }
  .reviews-carousel::-webkit-scrollbar-track {
    background: var(--mist);
    border-radius: 3px;
  }
  .reviews-carousel::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 3px;
  }
  .reviews-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--teal);
  }

  .review-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: var(--mist);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 1.8rem;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.25s, border-color 0.25s;
    display: flex; flex-direction: column;
  }
  .review-card.filtered-out {
    display: none;
  }
  .review-card:hover {
    box-shadow: 0 8px 30px rgba(10,26,47,0.07);
    transform: translateY(-2px);
    border-color: rgba(31,163,154,0.15);
  }
  .review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
  .review-deal {
    display: inline-block; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--teal-glow); color: var(--teal);
    padding: 0.25rem 0.7rem; border-radius: 6px; margin-bottom: 0.9rem;
    align-self: flex-start;
  }
  .review-text {
    font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary);
    font-style: italic; margin-bottom: 1.2rem;
    flex-grow: 1;
  }
  .review-text em { font-style: normal; color: var(--navy); font-weight: 700; }
  .review-saved {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--emerald); margin-bottom: 0.2rem;
    line-height: 1.2;
  }
  .review-saved-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; font-weight: 600; line-height: 1.4; }
  .review-author {
    display: flex; align-items: center; gap: 0.7rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .review-avatar {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--white); font-size: 0.78rem;
    flex-shrink: 0;
  }
  .review-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
  .review-loc { font-size: 0.76rem; color: var(--text-muted); }

  /* Carousel arrow controls */
  .carousel-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: var(--white);
    border: 1.5px solid var(--border-strong);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    z-index: 5;
    color: var(--navy);
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(10,26,47,0.08);
  }
  .carousel-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(31,163,154,0.3);
  }
  .carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--white) !important;
    color: var(--text-muted) !important;
    box-shadow: none !important;
  }
  .carousel-btn-prev { left: -10px; }
  .carousel-btn-next { right: -10px; }
  @media (max-width: 1280px) {
    .carousel-btn-prev { left: 4px; }
    .carousel-btn-next { right: 4px; }
  }

  /* Dot indicators */
  .carousel-dots {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin-top: 1.2rem;
  }
  .carousel-dot {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--border-strong);
    transition: width 0.25s ease, background 0.25s ease;
    cursor: pointer;
    border: none; padding: 0; flex-shrink: 0;
  }
  .carousel-dot.active {
    width: 20px;
    background: var(--teal);
  }

  /* Empty state when filter has no matches */
  .reviews-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: none;
  }
  .reviews-empty.active { display: block; }

  /* Reviews thesis, bottom-line statement after the grid */
  .reviews-thesis {
    max-width: 760px; margin: 3.5rem auto 0;
    text-align: center;
    padding: 2.2rem 2rem;
    background: linear-gradient(135deg, var(--teal-glow), var(--gold-glow));
    border: 1px solid rgba(31,163,154,0.18);
    border-radius: 18px;
  }
  .reviews-thesis-icon {
    font-size: 1.6rem; margin-bottom: 0.6rem;
  }
  .reviews-thesis-line {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    font-weight: 400; line-height: 1.3;
    letter-spacing: -0.01em; color: var(--text-secondary);
    margin-bottom: 0.8rem;
  }
  .reviews-thesis-line strong {
    font-style: italic; color: var(--navy);
    font-weight: 400;
  }
  .reviews-thesis-sub {
    font-size: 0.92rem; color: var(--text-muted);
    line-height: 1.65; max-width: 600px; margin: 0 auto;
  }

  /* ========================================
     CTA
     ======================================== */
  .cta-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: var(--section-pad) 2rem; text-align: center;
  }
  .cta-inner {
    max-width: 640px; margin: 0 auto;
    background: var(--navy); color: var(--white);
    border-radius: 20px; padding: 3.5rem 2.5rem;
    position: relative; overflow: hidden;
  }
  .cta-inner::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 50% at 50% 0%, rgba(31,163,154,0.1), transparent);
    pointer-events: none;
  }
  .cta-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 400; margin-bottom: 0.8rem; position: relative;
    line-height: 1.15;
  }
  .cta-inner p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.8rem; position: relative; }
  .cta-inner .cta-oneliner {
    display: block;
    font-size: 0.8rem; color: var(--gold); font-weight: 600;
    margin-top: 1.2rem; position: relative;
    letter-spacing: 0.02em;
  }

  /* ========================================
     CATEGORY CARD, ENHANCED (conflict + addon)
     ======================================== */
  .cat-card-featured {
    border-color: rgba(31,163,154,0.15);
    background: var(--white);
  }
  .cat-card .cat-desc em { color: var(--teal); font-style: normal; font-weight: 600; }
  .cat-conflict {
    font-size: 0.78rem; color: var(--text-secondary); line-height: 1.55;
    background: rgba(158,58,68,0.04);
    border-left: 3px solid var(--burgundy);
    border-radius: 0 8px 8px 0;
    padding: 0.8rem 1rem; margin-bottom: 1rem;
  }
  .cat-conflict strong { color: var(--burgundy); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; }
  .cat-addon {
    background: var(--teal-glow);
    border: 1px solid rgba(31,163,154,0.12);
    border-radius: 10px;
    padding: 0.9rem 1rem; margin-bottom: 1.2rem;
    font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5;
  }
  .cat-addon strong { color: var(--navy); display: block; margin-bottom: 0.3rem; font-size: 0.85rem; }
  .cat-addon p { margin: 0; font-size: 0.78rem; }
  .addon-badge {
    display: inline-block;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--teal); color: var(--white);
    padding: 0.15rem 0.5rem; border-radius: 4px;
    margin-bottom: 0.4rem;
  }

  /* ========================================
     REAL ESTATE DEEP DIVE SECTION
     ======================================== */
  .re-section {
    background: var(--mist); color: var(--text-primary);
    padding: var(--section-pad) 2rem;
  }
  .re-section .section-tag { color: var(--teal); }
  .re-section .section-title { color: var(--navy); }
  .re-section .section-sub { color: var(--text-muted); }
  .re-layout {
    max-width: 1050px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; align-items: start;
  }
  .re-conflict-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2.2rem;
    box-shadow: 0 8px 32px rgba(10,26,47,0.04);
  }
  .re-conflict-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--navy);
    margin-bottom: 0.8rem;
  }
  .re-conflict-card p {
    font-size: 0.88rem; color: var(--text-secondary);
    line-height: 1.65; margin-bottom: 1rem;
  }
  .re-conflict-card p strong { color: var(--burgundy); font-weight: 700; }

  /* Property tax bonus callout — emerald to match savings color theme */
  .re-tax-bonus {
    margin-top: 1.4rem;
    padding: 1.2rem 1.3rem;
    background: var(--emerald-glow);
    border-left: 3px solid var(--emerald);
    border-radius: 0 12px 12px 0;
    display: flex; gap: 0.9rem; align-items: flex-start;
  }
  .re-tax-bonus-icon {
    display: none !important;
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: var(--white);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .re-tax-bonus-text h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 0.5rem;
  }
  .re-tax-bonus-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
  }
  .re-tax-bonus-text p strong {
    color: var(--emerald);
    font-weight: 700;
  }
  .re-math {
    display: flex; flex-direction: column; gap: 0.35rem;
    margin: 1.2rem 0;
  }
  .re-math-row {
    display: flex; justify-content: space-between;
    font-size: 0.85rem; color: var(--text-secondary);
    padding: 0.6rem 0.85rem; border-radius: 6px;
    background: var(--mist);
    font-weight: 500;
  }
  .re-math-you {
    background: var(--emerald-glow) !important;
    color: var(--emerald) !important;
    font-weight: 700;
  }
  .re-math-you .re-math-val { color: var(--emerald); font-weight: 700; }
  .re-math-them {
    background: var(--burgundy-soft) !important;
    color: var(--burgundy) !important;
    font-weight: 600;
  }
  .re-math-them .re-math-val { color: var(--burgundy); font-weight: 700; }

  .re-services {
    display: flex; flex-direction: column; gap: 1rem;
  }
  .re-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px; padding: 1.6rem;
    transition: all 0.25s;
    position: relative;
    box-shadow: 0 4px 20px rgba(10,26,47,0.04);
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.8rem;
    align-items: start;
  }
  .re-service-card:hover {
    border-color: rgba(31,163,154,0.2);
    box-shadow: 0 8px 28px rgba(10,26,47,0.07);
    transform: translateY(-2px);
  }
  .re-service-addon {
    border-color: var(--teal);
    box-shadow: 0 8px 28px rgba(31,163,154,0.08);
  }
  .re-addon-label {
    grid-column: 1 / -1;
    grid-row: 1;
    display: inline-block; align-self: start; justify-self: start;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--teal); color: var(--white);
    padding: 0.15rem 0.5rem; border-radius: 4px;
    margin-bottom: 0.3rem;
  }
  .re-service-icon {
    grid-column: 2; grid-row: 1;
    font-size: 1.4rem; margin-bottom: 0;
    display: flex; align-self: center;
  }
  .re-service-addon .re-service-icon { grid-row: 2; }
  .re-service-card h4 {
    grid-column: 1; grid-row: 1;
    align-self: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem; font-weight: 400; color: var(--navy);
    margin-bottom: 0.4rem;
  }
  .re-service-addon h4 { grid-row: 2; }
  .re-service-card p,
  .re-service-price,
  .re-addon-includes { grid-column: 1 / -1; }
  .re-service-card p {
    font-size: 0.82rem; color: var(--text-secondary);
    line-height: 1.55; margin-bottom: 0.7rem;
  }
  .re-service-card p.re-service-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 0.55rem 0.8rem;
    background: var(--emerald-glow);
    border-left: 2px solid var(--emerald);
    border-radius: 0 6px 6px 0;
    margin-bottom: 0.8rem;
  }
  .re-addon-includes {
    display: flex; flex-wrap: wrap; gap: 0.35rem;
    margin-bottom: 0.8rem;
  }
  .re-addon-includes span {
    font-size: 0.68rem; font-weight: 600;
    padding: 0.2rem 0.55rem; border-radius: 5px;
    background: var(--teal-glow); color: var(--teal);
  }
  .re-service-price {
    font-size: 0.85rem; color: var(--text-secondary); font-weight: 600;
    padding-top: 0.5rem; border-top: 1px solid var(--border);
  }
  .re-service-price strong { color: var(--teal); font-weight: 700; }
  .re-price-old {
    text-decoration: line-through;
    color: #9a9a9a;
    font-weight: 500;
    font-size: 0.85em;
    margin-right: 0.15rem;
  }
  .re-service-deal {
    border-color: var(--burgundy);
    box-shadow: 0 8px 28px rgba(158,58,68,0.10);
  }
  .re-deal-badge {
    grid-column: 1 / -1; grid-row: 1;
    display: inline-block; align-self: start; justify-self: start;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: linear-gradient(90deg, var(--burgundy) 0%, #C04A55 100%);
    color: var(--white);
    padding: 0.22rem 0.6rem; border-radius: 4px;
    margin-bottom: 0.3rem;
    box-shadow: 0 2px 8px rgba(158,58,68,0.25);
  }
  .re-service-deal .re-service-icon { grid-row: 2; }
  .re-service-deal h4 { grid-row: 2; }

  .re-cta {
    text-align: center; margin-top: 2.5rem;
  }

  /* ========================================
     SHARKS, Who's Looking Out For You
     ======================================== */
  .sharks-section {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: var(--white);
    padding: var(--section-pad) 2rem;
    position: relative; overflow: hidden;
  }
  .sharks-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 40% at 20% 30%, rgba(158,58,68,0.08), transparent 60%),
      radial-gradient(ellipse 40% 50% at 80% 70%, rgba(31,163,154,0.06), transparent 60%);
    pointer-events: none;
  }
  .sharks-kicker {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--burgundy); text-align: center;
    margin-bottom: 1rem; position: relative;
  }
  .sharks-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 400; text-align: center;
    line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    color: var(--white); position: relative;
  }
  .sharks-title em {
    font-style: italic;
    color: var(--burgundy);
  }
  .sharks-title-accent {
    display: block;
    color: var(--gold);
    font-style: italic;
    font-size: 0.85em;
    margin-top: 0.4rem;
  }
  .sharks-lead {
    text-align: center;
    max-width: 680px; margin: 0 auto 3.5rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    position: relative;
  }

  /* Shark mobile tabs */
  .shark-tabs {
    display: none;
    justify-content: center; gap: 0.4rem;
    margin: 0 auto 1rem; max-width: 1150px;
  }
  .shark-tab {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    padding: 0.4rem 0.85rem; border-radius: 20px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent; color: rgba(255,255,255,0.6);
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
  }
  .shark-tab.active {
    background: var(--white); color: var(--navy);
    border-color: var(--white);
  }

  /* Shark scenarios grid — 2 columns desktop (Home + Car only) */
  .sharks-scenarios {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem; max-width: 900px; margin: 0 auto 2.5rem;
    position: relative;
  }
  /* Hide Everything Else from the 2-col grid on desktop */
  .sharks-scenarios .shark-scenario[data-scenario="2"] { display: none; }

  /* Desktop-only standalone Everything Else card — hidden by default, shown only on desktop */
  .shark-else-desktop {
    display: none;
    max-width: 900px; margin: 0 auto 4rem;
  }
  @media (min-width: 901px) {
    .shark-else-desktop { display: block; }
    /* Match Everything Else font sizes for Home + Car cards on desktop */
    .sharks-scenarios .shark-pill strong { font-size: 13px; }
    .sharks-scenarios .shark-pill span:last-child { font-size: 11.5px; }
    .sharks-scenarios .shark-col-hd { font-size: 0.6rem; }
    .sharks-scenarios .shark-you-pill { font-size: 13px; }
  }
  .shark-else-desktop .shark-scenario {
    flex-direction: row; gap: 2rem; align-items: stretch;
    padding: 2rem 2.4rem;
  }
  .shark-else-desktop .shark-visual {
    flex-direction: column; justify-content: flex-start;
    border-bottom: none; border-right: 1px solid var(--border);
    padding-bottom: 0; padding-right: 2rem;
    min-width: 130px; gap: 0.6rem;
  }
  .shark-else-desktop .shark-label { font-size: 1.3rem; }
  .shark-else-desktop .shark-vs-grid { grid-template-columns: 58% 1fr; gap: 0.8rem; flex: 1; }
  .shark-else-desktop .shark-pill { padding: 0.5rem 0.8rem; }
  .shark-else-desktop .shark-pill strong { font-size: 13px; }
  .shark-else-desktop .shark-pill span:last-child { font-size: 11.5px; }
  .shark-else-desktop .shark-col-hd { font-size: 0.6rem; }
  .shark-else-desktop .shark-you-pill { font-size: 13px; }
  .shark-scenario {
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.6rem;
    display: flex; flex-direction: column; gap: 1.2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  }
  .shark-visual {
    display: flex; align-items: center; gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .shark-icon {
    font-size: 1.6rem;
    width: 44px; height: 44px;
    background: var(--mist);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .shark-label {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem; color: var(--navy);
    line-height: 1.2;
  }

  /* VS grid: Their Side (left) | Your Side (right) */
  .shark-vs-grid {
    display: grid;
    grid-template-columns: 58% 1fr;
    gap: 0.5rem;
    align-items: stretch;
    flex: 1;
  }
  .shark-vs-col {
    display: flex; flex-direction: column; gap: 0.3rem;
  }
  .shark-col-hd {
    font-size: 0.55rem; font-weight: 700;
    letter-spacing: 0.13em; text-transform: uppercase;
    padding: 0.18rem 0.5rem; border-radius: 4px;
    margin-bottom: 0.1rem; display: inline-block; align-self: flex-start;
  }
  .shark-vs-them .shark-col-hd {
    background: var(--navy); color: var(--white);
  }
  .shark-vs-you .shark-col-hd {
    background: var(--gold); color: var(--navy);
  }
  /* Their Side pills — two-line compact: role bold top, descriptor muted below */
  .shark-pill {
    display: flex; flex-direction: column; gap: 0.1rem;
    padding: 0.38rem 0.6rem;
    background: rgba(10,26,47,0.04);
    border-left: 2.5px solid rgba(10,26,47,0.15);
    border-radius: 0 5px 5px 0;
  }
  .shark-pill strong {
    font-size: clamp(9.5px, 2.5vw, 11px);
    font-weight: 700; color: var(--navy);
    line-height: 1.2; white-space: nowrap;
  }
  .shark-pill .sp { display: none; }
  .shark-pill span:last-child {
    font-size: clamp(8.5px, 2.1vw, 9.5px);
    font-weight: 400; color: var(--navy);
    line-height: 1.2; white-space: normal;
  }
  .shark-pill:nth-child(even) {
    background: transparent;
  }
  /* Your Side tall pill */
  .shark-vs-you {
    align-items: stretch;
  }
  .shark-you-pill {
    flex: 1;
    background: #FAEEDA;
    border: 1.5px solid rgba(180, 83, 9, 0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
    font-size: clamp(9px, 2.3vw, 11px);
    font-style: italic;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.35;
  }

  /* The Flip, your side with us */
  .sharks-flip {
    max-width: 960px; margin: 0 auto;
    position: relative;
  }
  .sharks-flip-inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 3rem 2.5rem;
    position: relative; overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
  .sharks-flip-inner::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
  }
  .sharks-flip-icon {
    font-size: 2.8rem;
    text-align: center; margin-bottom: 1rem;
  }
  .sharks-flip h3 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    font-weight: 400; color: var(--navy);
    text-align: center; line-height: 1.2;
    margin-bottom: 2.2rem;
    letter-spacing: -0.01em;
  }
  .sharks-flip-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .sharks-flip-item {
    display: flex; gap: 0.8rem; align-items: flex-start;
    padding: 1.2rem;
    background: var(--mist);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.25s;
  }
  .sharks-flip-item:hover {
    border-color: rgba(31,163,154,0.2);
    box-shadow: 0 4px 16px rgba(10,26,47,0.05);
  }
  .sharks-flip-check {
    width: 30px; height: 30px; min-width: 30px;
    background: var(--teal);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 0.85rem; font-weight: 700;
    margin-top: 2px;
  }
  .sharks-flip-item h4 {
    font-size: 0.92rem; font-weight: 700; color: var(--navy);
    margin-bottom: 0.25rem;
    line-height: 1.3;
  }
  .sharks-flip-item h4 em {
    font-style: italic; color: var(--teal);
    font-weight: 700;
    padding-right: 0.15em;
  }
  .sharks-flip-item p {
    font-size: 0.82rem; color: var(--text-secondary);
    line-height: 1.5; margin: 0;
  }
  .sharks-oneliner {
    text-align: center;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    line-height: 1.5;
    padding-top: 1.8rem;
    border-top: 1px solid var(--border);
    font-style: italic;
  }
  .sharks-oneliner strong {
    color: var(--navy);
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
  }

  /* ========================================
     THREE OFFERINGS GRID
     ======================================== */
  .three-offerings-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem; max-width: 1150px; margin: 0 auto 2.5rem;
  }
  .three-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px; padding: 2.2rem;
    transition: all 0.3s;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
  }
  .three-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-deep));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s;
  }
  .three-card:hover::before { transform: scaleX(1); }
  .three-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31,163,154,0.15);
    box-shadow: 0 12px 40px rgba(10,26,47,0.07);
  }
  .three-card-primary {
    border-color: rgba(31,163,154,0.12);
    background: var(--white);
  }
  .three-card-primary::before { transform: scaleX(1); }
  .three-card-header {
    display: flex; gap: 1rem; align-items: center; margin-bottom: 1.2rem;
  }
  .three-emoji {
    font-size: 2.4rem; line-height: 1;
    width: 56px; height: 56px;
    background: var(--mist);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .three-label {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.15rem;
  }
  .three-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--navy);
    line-height: 1.2;
  }
  .three-pitch {
    font-size: 0.92rem; color: var(--text-secondary);
    line-height: 1.55; margin-bottom: 1.2rem;
    font-weight: 500;
  }
  .three-pitch-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.8rem;
  }
  .three-pitch-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0;
  }
  .three-pitch-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
  }
  .three-pitch-outro {
    margin-top: 0;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.88rem;
  }
  .three-pitch-scope {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .re-section-scope {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .three-includes {
    list-style: none; margin: 0 0 1.5rem; padding: 0;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    flex-grow: 1;
  }
  .three-includes li {
    font-size: 0.82rem; color: var(--text-muted);
    padding: 0.3rem 0;
    display: flex; gap: 0.5rem; align-items: flex-start;
    line-height: 1.45;
  }
  .three-includes li::before {
    content: '✓'; color: var(--teal); font-weight: 700;
    font-size: 0.8rem; min-width: 14px; margin-top: 1px;
  }
  .three-includes-sub {
    list-style: none;
    margin: 0.4rem 0 0.2rem;
    padding: 0;
  }
  .three-includes-sub li {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 0.2rem 0;
    display: flex;
    gap: 0.45rem;
    align-items: center;
    line-height: 1.4;
  }
  .three-includes-sub li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--teal);
    border-radius: 50%;
    color: transparent;
    font-size: 0;
    min-width: 4px;
    margin-top: 0;
  }
  .three-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .three-price {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem; color: var(--navy);
    line-height: 1;
  }
  .three-savings {
    font-size: 0.72rem; font-weight: 700; color: var(--emerald);
    margin-top: 0.2rem;
  }
  .three-cta {
    color: var(--teal); font-size: 0.82rem; font-weight: 700;
    text-decoration: none; white-space: nowrap;
    padding: 0.5rem 0.9rem; border-radius: 8px;
    background: var(--teal-glow);
    transition: all 0.25s;
  }
  .three-cta:hover {
    background: var(--teal); color: var(--white);
  }

  /* ========================================
     AUTO SECTION (similar to RE but lighter bg)
     ======================================== */
  .auto-section {
    background: var(--mist); padding: var(--section-pad) 2rem;
  }
  .auto-section .section-sub em { color: var(--teal); font-style: normal; font-weight: 600; }
  .auto-layout {
    max-width: 1050px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; align-items: start;
  }
  .auto-conflict-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2.2rem;
  }
  .auto-conflict-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--navy);
    margin-bottom: 0.8rem;
  }
  .auto-conflict-card p {
    font-size: 0.88rem; color: var(--text-muted);
    line-height: 1.65; margin-bottom: 1rem;
  }
  .auto-conflict-card p strong { color: var(--navy); }
  .auto-profit-stack {
    display: flex; flex-direction: column; gap: 0.7rem;
    margin: 1.2rem 0;
  }
  .auto-profit-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 1rem; align-items: center;
    padding: 1rem 1.2rem;
    background: var(--mist);
    border-radius: 10px;
  }
  .auto-profit-num {
    width: 36px; height: 36px;
    background: var(--navy); color: var(--teal-bright);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
  }
  .auto-profit-item h4 {
    font-size: 0.88rem; font-weight: 700; color: var(--navy);
    margin-bottom: 0.15rem;
  }
  .auto-profit-item p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.4; }
  .auto-profit-tag {
    font-size: 0.7rem; font-weight: 700; color: var(--burgundy);
    background: var(--burgundy-soft);
    padding: 0.25rem 0.6rem; border-radius: 5px;
    white-space: nowrap;
  }

  .auto-services {
    display: flex; flex-direction: column; gap: 1rem;
  }
  .auto-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px; padding: 1.6rem;
    transition: all 0.25s;
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.8rem;
    align-items: start;
  }
  .auto-service-card:hover {
    border-color: rgba(31,163,154,0.15);
  }
  .auto-service-featured {
    border-color: var(--teal);
    box-shadow: 0 8px 30px rgba(31,163,154,0.06);
  }
  .auto-addon-label {
    grid-column: 1 / -1;
    grid-row: 1;
    display: inline-block; align-self: start; justify-self: start;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--teal); color: var(--white);
    padding: 0.15rem 0.5rem; border-radius: 4px;
    margin-bottom: 0.3rem;
  }
  .auto-service-icon {
    grid-column: 2; grid-row: 1;
    font-size: 1.4rem; margin-bottom: 0;
    display: flex; align-self: center;
  }
  .auto-service-featured .auto-service-icon { grid-row: 2; }
  .auto-service-card h4 {
    grid-column: 1; grid-row: 1;
    align-self: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem; font-weight: 400; color: var(--navy);
    margin-bottom: 0.4rem;
  }
  .auto-service-featured h4 { grid-row: 2; }
  .auto-service-card p,
  .auto-service-price,
  .auto-addon-includes { grid-column: 1 / -1; }
  .auto-service-card p {
    font-size: 0.82rem; color: var(--text-muted);
    line-height: 1.55; margin-bottom: 0.7rem;
  }
  .auto-addon-includes {
    display: flex; flex-wrap: wrap; gap: 0.35rem;
    margin-bottom: 0.8rem;
  }
  .auto-addon-includes span {
    font-size: 0.68rem; font-weight: 600;
    padding: 0.2rem 0.55rem; border-radius: 5px;
    background: var(--teal-glow); color: var(--teal);
  }
  .auto-service-price {
    font-size: 0.82rem; color: var(--navy); font-weight: 600;
    padding-top: 0.5rem; border-top: 1px solid var(--border);
  }
  .auto-service-price strong { color: var(--teal); font-weight: 700; }
  .auto-price-old {
    text-decoration: line-through;
    color: #9a9a9a;
    font-weight: 500;
    font-size: 0.85em;
    margin-right: 0.15rem;
  }
  .auto-service-deal {
    border-color: var(--burgundy);
    box-shadow: 0 6px 22px rgba(158,58,68,0.10);
  }
  .auto-deal-badge {
    grid-column: 1 / -1; grid-row: 1;
    display: inline-block; align-self: start; justify-self: start;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: linear-gradient(90deg, var(--burgundy) 0%, #C04A55 100%);
    color: var(--white);
    padding: 0.22rem 0.6rem; border-radius: 4px;
    margin-bottom: 0.3rem;
    box-shadow: 0 2px 8px rgba(158,58,68,0.25);
  }
  .auto-service-deal .auto-service-icon { grid-row: 2; }
  .auto-service-deal h4 { grid-row: 2; }
  .auto-service-deal .auto-addon-label { grid-row: 2; margin-top: 0; }
  .auto-service-deal.auto-service-featured .auto-service-icon { grid-row: 3; }
  .auto-service-deal.auto-service-featured h4 { grid-row: 3; }

  /* ========================================
     CUSTOM / EVERYTHING ELSE
     ======================================== */
  #custom { background: var(--white); }
  .custom-layout {
    max-width: 1050px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.5rem; align-items: start;
  }
  .custom-examples h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--navy);
    margin-bottom: 1rem;
  }
  .custom-chips {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .custom-chip {
    font-size: 0.82rem; color: var(--text-secondary);
    padding: 0.55rem 1rem;
    background: var(--mist);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; gap: 0.4rem;
    font-weight: 500;
    transition: all 0.2s;
  }
  .custom-chip:hover {
    border-color: var(--teal);
    color: var(--teal);
  }
  .custom-chip span { font-size: 0.95rem; }

  .custom-pricing-note {
    background: var(--mist);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
  }
  .custom-pricing-note h4 {
    font-size: 0.85rem; font-weight: 700; color: var(--navy);
    margin-bottom: 0.6rem;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .custom-pricing-note p {
    font-size: 0.82rem; color: var(--text-secondary);
    line-height: 1.5; margin-bottom: 0.3rem;
  }
  .custom-pricing-note p strong { color: var(--teal); font-weight: 700; }
  .custom-pricing-tagline {
    margin-top: 0.8rem !important;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    font-style: italic;
    color: var(--text-muted) !important;
    font-size: 0.78rem !important;
  }

  .custom-form {
    background: var(--mist);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative; overflow: hidden;
  }
  .custom-form::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-deep));
  }
  .custom-form-header { margin-bottom: 1.5rem; }
  .custom-form-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem; font-weight: 400; color: var(--navy);
    margin-bottom: 0.3rem;
  }
  .custom-form-sub { font-size: 0.82rem; color: var(--text-muted); }
  .custom-form .intake-field input,
  .custom-form .intake-field textarea {
    background: var(--white);
  }

  /* ========================================
     FAQ
     ======================================== */
  #faq { background: var(--mist); }
  .faq-list {
    max-width: 750px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0.6rem;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s;
  }
  .faq-item[open] {
    border-color: rgba(31,163,154,0.2);
    box-shadow: 0 4px 16px rgba(10,26,47,0.04);
  }
  .faq-item summary {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem; font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    transition: color 0.2s;
    line-height: 1.4;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 1.3rem; font-weight: 400;
    color: var(--teal);
    min-width: 24px; text-align: center;
    transition: transform 0.2s;
  }
  .faq-item[open] summary::after {
    content: '−';
  }
  .faq-item summary:hover { color: var(--teal); }
  .faq-answer {
    padding: 0 1.5rem 1.2rem;
  }
  .faq-answer p {
    font-size: 0.88rem; color: var(--text-muted);
    line-height: 1.65;
  }

  /* ========================================
     FOOTER
     ======================================== */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.5);
    padding: 3.5rem 2rem 1.5rem;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem; max-width: var(--container); margin: 0 auto 2.5rem;
  }
  .footer-brand .logo {
    font-size: 1.1rem; margin-bottom: 0.9rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--white); line-height: 1;
  }
  .footer-brand .logo .logo-mark { width: 32px; height: 32px; }
  .footer-brand .logo .logo-text { color: var(--white); }
  .footer-brand .logo .logo-text em { color: var(--teal-bright); }
  .footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 280px; }
  .footer-social { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
  .footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    transition: color 0.2s, background 0.2s, transform 0.2s;
  }
  .footer-social a:hover {
    color: var(--white);
    background: var(--teal-bright);
    transform: translateY(-2px);
  }
  .footer-col h4 {
    font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 1rem; font-weight: 700;
  }
  .footer-col a {
    display: block; color: rgba(255,255,255,0.4); text-decoration: none;
    font-size: 0.82rem; padding: 0.25rem 0; transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--teal-bright); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem; text-align: center;
    font-size: 0.75rem; color: rgba(255,255,255,0.2);
    max-width: var(--container); margin: 0 auto;
    line-height: 1.6;
  }

  /* ========================================
     ANIMATIONS
     ======================================== */
  @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes slideUp { from { opacity: 0; transform: translateY(30px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }

  /* ========================================
     RESPONSIVE, TABLET
     ======================================== */
  @media (max-width: 900px) {
    nav { padding: 0.9rem 1.2rem; }
    nav.scrolled { padding: 0.7rem 1.2rem; }
    .nav-toggle { display: block; }
    nav { flex-wrap: wrap; align-items: center; }
    .nav-links {
      position: static; transform: none;
      width: 100%; order: 3;
      flex-direction: column; align-items: stretch;
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease-out;
      padding: 0; gap: 0; background: transparent; box-shadow: none;
    }
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-links.open {
      max-height: 400px;
      padding: 0.25rem 0 1rem;
      border-top: 1px solid var(--border);
    }
    .nav-links.open a:not(.nav-cta) {
      display: block; font-size: 0.9rem; color: var(--navy);
      padding: 0.75rem 0; border-bottom: 1px solid var(--border);
      letter-spacing: 0.03em; text-transform: uppercase; font-weight: 600;
    }
    .nav-links.open .nav-cta {
      width: 100%; text-align: center;
      padding: 0.85rem 1rem !important; margin-top: 0.85rem;
      border-radius: 8px;
    }
    .nav-overlay { display: none !important; }

    .hero { padding: calc(4rem + 50px) 1.2rem 3rem; }
    .hero h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
    .hero-desc { font-size: 1rem; }
    .trust-bar { gap: 1.5rem; margin-top: 2.5rem; }
    .trust-val { font-size: 1.5rem; }

    section { padding: clamp(3rem, 6vw, 5rem) 1.2rem; }

    .offers-grid { grid-template-columns: 1fr; }
    .how-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .value-columns { grid-template-columns: 1fr 1fr; }
    .re-layout { grid-template-columns: 1fr; }
    .auto-layout { grid-template-columns: 1fr; }
    .custom-layout { grid-template-columns: 1fr; gap: 2rem; }
    .three-offerings-grid { grid-template-columns: 1fr; }
    .sharks-scenarios { grid-template-columns: 1fr; gap: 1rem; }
    /* Restore scenario 2 into the mobile tab flow */
    .sharks-scenarios .shark-scenario[data-scenario="2"] { display: flex; }
    .shark-tabs { display: flex; }
    .shark-scenario { padding: 1rem; }
    .shark-scenario[data-hidden] { display: none !important; }
    .sharks-flip-grid { grid-template-columns: 1fr; }
    .sharks-flip-inner { padding: 2rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  }

  /* ========================================
     RESPONSIVE, MOBILE
     ======================================== */
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr; }
    .reviews-filter button { font-size: 0.78rem; padding: 0.45rem 0.85rem; }
    .reviews-filter button .filter-count { display: none; }
    .review-card { flex: 0 0 calc(100vw - 4rem); padding: 1.5rem; }
    .carousel-btn { display: none; }
    .reviews-carousel-wrap { padding: 0 0.5rem; }
    .cta-inner { padding: 2.5rem 1.5rem; }
    .intake-price-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn-teal,
    .hero-actions .btn-outline-light { width: 100%; justify-content: center; max-width: 320px; }
    .trust-bar { gap: 1.2rem; }
    .trust-item { min-width: 40%; }
    .disclaimer-bar { padding: 1rem 1.2rem; }
    .disclaimer-inner { flex-direction: column; text-align: center; }
    .modal { border-radius: 16px 16px 0 0; max-height: 95vh; margin-top: auto; }
    .modal-body { padding: 1.2rem; }
    .modal-header { padding: 1.2rem; }
    .guarantee-bar { padding: 1.2rem; }

    /* Value columns: keep 2-col down to 420px, then stack */
    .value-columns { grid-template-columns: 1fr 1fr; }

    /* Custom chips: 2-column grid for even, predictable layout */
    .custom-chips {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }
    .custom-chip {
      justify-content: center;
      text-align: center;
    }

    /* Auto profit items: drop tag below text on mobile */
    .auto-profit-item {
      grid-template-columns: 40px 1fr;
      grid-template-rows: auto auto;
    }
    .auto-profit-item .auto-profit-num {
      grid-row: span 2;
      align-self: center;
    }
    .auto-profit-tag {
      grid-column: 2;
      white-space: normal;
      justify-self: start;
      margin-top: 0.3rem;
    }

    /* Sub-minimum font sizes: bumped to readable minimums */
    .section-tag { font-size: 0.75rem; }
    .trust-label { font-size: 0.75rem; }
    .review-saved-label { font-size: 0.75rem; }
    .review-deal,
    .cat-conflict strong,
    .cat-addon span { font-size: 0.75rem; }
    .value-item p,
    .review-loc { font-size: 0.82rem; }

    /* CTA buttons full-width in section CTAs on mobile */
    .re-cta .btn-teal,
    .re-cta .btn-gold,
    .cta-section .btn-teal,
    .cta-section .btn-gold { display: block; width: 100%; text-align: center; box-sizing: border-box; }
  }

  @media (max-width: 420px) {
    .value-columns { grid-template-columns: 1fr; }
  }

  @supports (-webkit-overflow-scrolling: touch) { .modal { -webkit-overflow-scrolling: touch; } }
  @media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
  ::-webkit-scrollbar { width: 6px; }
  /* ========================================
     COOKIE CONSENT BANNER (built but disabled by default)
     Toggle window.COOKIE_BANNER_ENABLED in script to show
     ======================================== */
  .cookie-banner {
    position: fixed;
    bottom: 1rem; left: 1rem; right: 1rem;
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 12px 40px rgba(10,26,47,0.18), 0 2px 8px rgba(10,26,47,0.06);
    z-index: 5000;
    display: none;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: cookieBannerIn 0.4s ease both;
  }
  .cookie-banner.visible { display: flex; }
  @keyframes cookieBannerIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .cookie-banner-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .cookie-banner-text {
    flex: 1 1 280px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
  }
  .cookie-banner-text strong {
    color: var(--navy);
    font-weight: 700;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.92rem;
  }
  .cookie-banner-text a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .cookie-banner-text a:hover { color: var(--teal-deep); }
  .cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .cookie-btn {
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1.5px solid transparent;
    white-space: nowrap;
  }
  .cookie-btn-accept {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
  }
  .cookie-btn-accept:hover {
    background: var(--teal-deep);
    border-color: var(--teal-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31,163,154,0.25);
  }
  .cookie-btn-reject {
    background: var(--white);
    color: var(--text-secondary);
    border-color: var(--border-strong);
  }
  .cookie-btn-reject:hover {
    border-color: var(--slate);
    color: var(--navy);
  }
  .cookie-btn-customize {
    background: transparent;
    color: var(--text-muted);
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0.6rem 0.5rem;
  }
  .cookie-btn-customize:hover { color: var(--navy); }

  /* Cookie preferences modal */
  .cookie-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(10,26,47,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  .cookie-modal-overlay.visible { display: flex; }
  .cookie-modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(10,26,47,0.3);
  }
  .cookie-modal h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.4rem;
  }
  .cookie-modal-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.55;
  }
  .cookie-category {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    margin-bottom: 0.7rem;
  }
  .cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
  }
  .cookie-category-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
  }
  .cookie-category-required {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-glow);
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
  }
  .cookie-category-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.55;
  }
  .cookie-toggle-switch {
    position: relative;
    width: 40px; height: 22px;
    cursor: pointer;
  }
  .cookie-toggle-switch input { opacity: 0; width: 0; height: 0; }
  .cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border-strong);
    border-radius: 999px;
    transition: 0.2s;
  }
  .cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    left: 3px; top: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.2s;
  }
  .cookie-toggle-switch input:checked + .cookie-toggle-slider { background: var(--teal); }
  .cookie-toggle-switch input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
  .cookie-toggle-switch input:disabled + .cookie-toggle-slider { background: var(--teal); opacity: 0.5; cursor: not-allowed; }
  .cookie-modal-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.4rem;
    flex-wrap: wrap;
  }
  .cookie-modal-actions .cookie-btn { flex: 1 1 auto; text-align: center; padding: 0.8rem 1rem; }

  @media (max-width: 600px) {
    .cookie-banner {
      padding: 1rem;
      gap: 0.8rem;
      bottom: 0.5rem; left: 0.5rem; right: 0.5rem;
    }
    .cookie-banner-text { font-size: 0.82rem; }
    .cookie-btn { font-size: 0.78rem; padding: 0.55rem 0.9rem; }
    .cookie-banner-actions { width: 100%; justify-content: stretch; }
    .cookie-banner-actions .cookie-btn { flex: 1; text-align: center; }
  }

  /* Accessible visually-hidden utility (used for SEO content visible to screen readers + crawlers, hidden from sighted users) */
  .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

