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

    body {
      font-family: 'Manrope', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ===== TOP HEADER BAR ===== */
    .top-header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: #0A2E18;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .top-header-logo img {
      height: 32px;
      width: auto;
      display: block;
    }
    .top-header-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #F1471D;
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 13px;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      white-space: nowrap;
      letter-spacing: 0.02em;
      transition: background 0.2s;
    }
    .top-header-cta:hover {
      background: #d93d15;
    }
    @media (min-width: 768px) {
      .top-header {
        padding: 14px 40px;
      }
      .top-header-logo img {
        height: 38px;
      }
      .top-header-cta {
        font-size: 14px;
        padding: 12px 28px;
      }
    }

    /* ===== HERO — mobile first (v3 split layout) ===== */
    .hero {
      background: #133F26;
      overflow: hidden;
    }

    .hero-inner {
      display: flex;
      flex-direction: column;
      max-width: 1400px;
      margin: 0 auto;
    }

    .hero-img-col {
      position: relative;
      min-height: 360px;
      flex: none;
    }

    .hero-img-col img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .hero-img-fade {
      position: absolute;
      z-index: 1;
    }

    .hero-img-fade--bottom {
      left: 0;
      right: 0;
      bottom: 0;
      height: 40%;
      background: linear-gradient(0deg, #133F26 0%, transparent 100%);
    }

    .hero-img-fade--right {
      top: 0;
      right: 0;
      bottom: 0;
      width: 35%;
      background: linear-gradient(90deg, transparent 0%, #133F26 100%);
      display: none;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 32px 24px 48px;
    }

    /* ===== HEADLINE ===== */
    .headline {
      font-weight: 800;
      font-size: 36px;
      line-height: 44px;
      letter-spacing: -1.4px;
      color: #ffffff;
      margin-bottom: 16px;
    }

    /* ===== SUBHEADLINE ===== */
    .subheadline {
      font-weight: 500;
      font-size: 20px;
      line-height: 28px;
      letter-spacing: -0.3px;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 20px;
    }

    /* ===== SLIDER ===== */
    .slider-area {
      width: 100%;
      position: relative;
      margin-bottom: 8px;
    }

    .slider-track {
      width: 100%;
      height: 12px;
      border-radius: 50px;
      background: linear-gradient(
        90deg,
        rgb(108, 177, 121) 0%,
        rgb(134, 170, 105) 17.092%,
        rgb(190, 157, 71) 31.457%,
        rgb(214, 146, 53) 47.724%,
        rgb(231, 121, 54) 63.99%,
        rgb(231, 86, 62) 81.995%,
        rgb(255, 0, 0) 100%
      );
    }

    .slider-thumb {
      position: absolute;
      top: -10px;
      left: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
      cursor: grab;
      user-select: none;
      touch-action: none;
      transition: transform 0.15s ease;
    }

    .slider-thumb:active {
      cursor: grabbing;
      transform: scale(1.15);
    }

    .slider-thumb.pulsing {
      animation: thumb-pulse 1.5s ease-in-out infinite;
    }

    @keyframes thumb-pulse {
      0%, 100% { box-shadow: 0 2px 10px rgba(0,0,0,0.35); transform: scale(1); }
      50% { box-shadow: 0 0 0 12px rgba(241,71,29,0.2), 0 2px 10px rgba(0,0,0,0.35); transform: scale(1.1); }
    }

    .slider-hint {
      font-family: 'Manrope', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: rgba(0,0,0,0.35);
      text-align: center;
      margin-bottom: 10px;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .slider-hint.visible {
      opacity: 1;
    }

    .slider-label {
      position: relative;
      font-size: 15px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: -0.5px;
      text-transform: capitalize;
      white-space: nowrap;
      margin-bottom: 12px;
    }

    .slider-label .age-number {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
    }

    /* ===== RESULTS BOX ===== */
    .results-box {
      width: 100%;
      margin-bottom: 24px;
    }

    .results-inner {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      gap: 24px;
      padding: 24px;
    }

    .results-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      flex-shrink: 0;
    }

    .results-label {
      font-weight: 500;
      font-size: 11px;
      letter-spacing: -0.2px;
      color: rgba(255, 255, 255, 0.7);
      text-transform: uppercase;
    }

    .results-percentage {
      font-weight: 800;
      font-size: 44px;
      letter-spacing: -3px;
      color: #ffffff;
      line-height: 1;
      transition: all 0.3s ease;
    }

    .results-divider {
      width: 1px;
      align-self: stretch;
      min-height: 40px;
      background-color: rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }

    .results-right {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      flex: 1;
      min-width: 0;
      align-items: center;
      align-content: center;
    }

    .badge-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(
        90deg,
        #cdcdcd 0%,
        #fcfcfc 47.416%,
        #aeaeae 100%
      );
      border-radius: 16px;
      padding: 8px 14px;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .badge-chip.dimmed {
      opacity: 0.35;
    }

    .badge-chip.highlighted {
      opacity: 1;
    }

    .badge-chip.highlighted span {
      color: #ffffff;
    }

    .badge-chip span {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-weight: 800;
      font-size: 13px;
      line-height: 1;
      letter-spacing: -0.8px;
      color: #133F26;
      text-align: center;
      transition: color 0.3s ease;
    }

    .chip-icon {
      font-style: normal;
      font-size: 14px;
      line-height: 1;
      flex-shrink: 0;
    }

    /* ===== UNIFIED CTA BUTTON ===== */
    .cta-unified {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 16px 20px;
      background-color: #F1471D;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      gap: 14px;
      transition: background 0.3s ease, transform 0.3s ease;
      box-shadow: 0 8px 24px rgba(241, 71, 29, 0.25);
      white-space: nowrap;
    }

    .cta-unified:hover {
      background: #D93D18;
      transform: translateY(-2px);
    }

    .cta-unified-text {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 15px;
      letter-spacing: -0.3px;
      color: #FFF9EF;
      text-transform: uppercase;
      text-align: center;
    }

    .cta-unified-arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background-color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cta-unified-arrow svg {
      width: 14px;
      height: 14px;
    }

    @media (min-width: 600px) {
      .cta-unified {
        max-width: 480px;
        padding: 18px 32px;
        gap: 16px;
      }

      .cta-unified-text {
        font-size: 17px;
      }
    }

    /* ===== TRUSTPILOT ===== */
    .trustpilot {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      width: 100%;
      margin-top: 28px;
    }

    .trustpilot-rating {
      font-weight: 700;
      font-size: 13px;
      line-height: 1;
      letter-spacing: 0.2px;
      color: rgba(255, 255, 255, 0.85);
      white-space: nowrap;
    }

    .trustpilot-stars {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .stars-container {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .star {
      width: 18px;
      height: 18px;
      background-color: #00B67A;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .star svg {
      width: 13px;
      height: 13px;
      fill: #ffffff;
    }

    .star--half {
      width: 19px;
      height: 19px;
      position: relative;
      overflow: hidden;
    }

    .star--half .star-half-left {
      position: absolute;
      left: 0;
      top: 0;
      width: 50%;
      height: 100%;
      background-color: #00B67A;
      z-index: 1;
    }

    .star--half .star-half-right {
      position: absolute;
      right: 0;
      top: 0;
      width: 50%;
      height: 100%;
      background-color: #DCDCE6;
    }

    .star--half svg {
      position: relative;
      z-index: 2;
      width: 13px;
      height: 13px;
      fill: #ffffff;
    }

    .trustpilot-name {
      font-weight: 700;
      font-size: 13px;
      line-height: 1;
      letter-spacing: 0.2px;
      color: rgba(255, 255, 255, 0.85);
      white-space: nowrap;
    }

    /* ===== TABLET (600px+) ===== */
    @media (min-width: 600px) {
      .hero-img-col {
        min-height: 440px;
      }

      .hero-content {
        padding: 40px 40px 56px;
      }

      .headline {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: -1.6px;
      }

      .subheadline {
        font-size: 18px;
        line-height: 26px;
      }

      .slider-track {
        height: 14px;
      }

      .slider-thumb {
        width: 38px;
        height: 38px;
        top: -12px;
      }

      .results-box {
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .results-label {
        font-size: 12px;
      }

      .results-percentage {
        font-size: 56px;
        letter-spacing: -4px;
      }

      .results-divider {
        width: 1px;
        align-self: stretch;
      }

      .badge-chip span {
        font-size: 15px;
        letter-spacing: -1.2px;
      }

      .chip-icon {
        font-size: 16px;
      }

      .trustpilot {
        justify-content: flex-start;
        margin-top: 0;
      }

    }

    /* ===== DESKTOP (1024px+) ===== */
    @media (min-width: 1024px) {
      .hero-inner {
        flex-direction: row;
        min-height: 700px;
      }

      .hero-img-col {
        flex: 1;
        min-height: 700px;
      }

      .hero-img-fade--bottom {
        display: none;
      }

      .hero-img-fade--right {
        display: block;
      }

      .hero-content {
        flex: 1;
        justify-content: center;
        padding: 80px 64px 80px 48px;
      }

      .headline {
        font-size: 44px;
        line-height: 52px;
        letter-spacing: -2px;
      }

      .subheadline {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.4px;
      }

      .slider-thumb {
        width: 40px;
        height: 40px;
        top: -13px;
      }

      .results-box {
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
      }

      .results-left {
        padding-right: 30px;
      }

      .results-percentage {
        font-size: 60px;
        letter-spacing: -4.92px;
      }

      .results-divider {
        align-self: stretch;
      }

      .results-right {
        padding-left: 40px;
      }

      .badge-chip {
        padding: 10px;
        min-width: 150px;
        border-radius: 20px;
      }

      .badge-chip span {
        font-size: 18px;
        letter-spacing: -1.476px;
      }

      .chip-icon {
        font-size: 18px;
      }


      .slider-label {
        font-size: 18px;
        letter-spacing: -0.72px;
      }

      .slider-label .age-number {
        font-size: 24px;
      }
    }

    /* ===== LOGO CAROUSEL ===== */
    .logo-carousel-section {
      background: #F0FFF4;
      padding: 0 0 40px;
      overflow: hidden;
      position: relative;
    }

    .logo-carousel-label {
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(0, 0, 0, 0.3);
      text-align: center;
      margin-bottom: 20px;
    }

    .logo-carousel-track {
      display: flex;
      align-items: center;
      width: fit-content;
      animation: carousel-scroll 20s linear infinite;
    }

    .logo-carousel-track:hover {
      animation-play-state: paused;
    }

    .logo-carousel-set {
      display: flex;
      align-items: center;
      gap: 60px;
      padding: 0 30px;
      flex-shrink: 0;
    }

    .logo-text {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: rgba(0, 0, 0, 0.25);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      white-space: nowrap;
      flex-shrink: 0;
      transition: color 0.3s ease;
      cursor: default;
    }

    .logo-text:hover {
      color: rgba(0, 0, 0, 0.5);
    }

    @keyframes carousel-scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* ===== STICKY SCROLL REASONS ===== */
    .reasons-outer {
      position: relative;
      height: 600vh;
      background: #f7f7f7;
    }

    .reasons-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
    }

    .reasons-card-stack {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .reason-card {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ffffff;
      display: flex;
      align-items: center;
      border-radius: 16px 16px 0 0;
      box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.08);
      transform: translate3d(0, 100%, 0);
      will-change: transform;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .reason-card[data-index="0"] {
      transform: translate3d(0, 0, 0);
      z-index: 1;
      box-shadow: none;
      border-radius: 0;
    }

    .reason-card.active {
      transform: translate3d(0, 0, 0);
    }

    .reason-card[data-index="1"] { z-index: 2; }
    .reason-card[data-index="2"] { z-index: 3; }
    .reason-card[data-index="3"] { z-index: 4; }
    .reason-card[data-index="4"] { z-index: 5; }
    .reason-card[data-index="5"] { z-index: 6; }

    .reason-card-inner {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      padding: 48px 24px;
      gap: 24px;
      justify-content: center;
    }

    .reason-text-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
    }

    .reason-img-col {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .reason-img-placeholder {
      width: 280px;
      height: 340px;
      background: #e8e8e8;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #aaa;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .reason-tag {
      display: inline-block;
      background: #F1471D;
      color: #ffffff;
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 6px 16px;
      border-radius: 50px;
      width: fit-content;
    }

    .reason-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 32px;
      line-height: 40px;
      color: #1a1a1a;
      letter-spacing: -1px;
    }

    .reason-body {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 25px;
      color: #555;
    }

    /* Intro card specifics */
    .intro-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 32px;
      line-height: 40px;
      color: #1a1a1a;
      letter-spacing: -1px;
    }

    .intro-subheadline {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #646464;
      letter-spacing: -0.3px;
    }

    .intro-cta {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      background: #F1471D;
      color: #FFF9EF;
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: -0.3px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 16px 32px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: opacity 0.3s ease;
      width: fit-content;
    }

    .intro-cta:hover {
      opacity: 0.92;
    }

    .intro-cta-arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .intro-cta-arrow svg {
      width: 14px;
      height: 14px;
    }

    .intro-trustpilot {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .intro-trustpilot-text {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: #1a1a1a;
      letter-spacing: 0.2px;
    }

    .intro-stars {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .intro-star {
      width: 18px;
      height: 18px;
      background: #00B67A;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .intro-star svg {
      width: 13px;
      height: 13px;
      fill: #ffffff;
    }

    .intro-tp-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: #1a1a1a;
      letter-spacing: 0.2px;
    }

    /* Progress dots */
    .reasons-progress {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 10;
    }

    .progress-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #d4d4d4;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    .progress-dot.active {
      background: #F1471D;
      transform: scale(1.4);
    }

    /* ===== MOBILE (768px and below) ===== */
    @media (max-width: 768px) {
      .reasons-outer {
        height: auto;
      }

      .reasons-sticky {
        position: relative;
        height: auto;
        overflow: visible;
      }

      .reasons-card-stack {
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .reason-card {
        position: relative;
        transform: none !important;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #eee;
      }

      .reason-card[data-index="0"] {
        border-radius: 0;
      }

      .reasons-progress {
        display: none;
      }

      .scroll-hint {
        display: none;
      }

      .reason-card-inner {
        flex-direction: column;
        padding: 48px 24px;
        gap: 20px;
        height: auto;
      }

      .reason-text-col {
        flex: none;
      }

      .reason-img-col {
        flex: none;
      }

      .reason-img-placeholder {
        width: 100%;
        max-height: 280px;
        height: 280px;
        object-fit: contain;
      }

      .reason-headline,
      .intro-headline {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.8px;
      }

      .reason-body {
        font-size: 15px;
        line-height: 25px;
      }

      .intro-cta {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        white-space: nowrap;
        padding: 16px 20px;
      }
    }

    /* Scroll hint — hidden by default, mobile-only */
    .scroll-hint {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 6px;
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      background: rgba(0, 0, 0, 0.06);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 8px 18px;
      border-radius: 50px;
      opacity: 1;
      transition: opacity 0.4s ease;
    }

    .scroll-hint.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .scroll-hint-text {
      font-family: 'Manrope', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: #888;
      letter-spacing: 0.5px;
    }

    .scroll-hint-chevron {
      width: 14px;
      height: 14px;
      animation: bounce-down 1.6s ease-in-out infinite;
    }

    .scroll-hint-chevron svg {
      width: 14px;
      height: 14px;
    }

    @keyframes bounce-down {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(4px); }
    }

    /* ===== TABLET (769px+) ===== */
    @media (min-width: 769px) {
      .reason-card-inner {
        flex-direction: row;
        padding: 48px 40px;
        gap: 40px;
      }

      .reason-headline,
      .intro-headline {
        font-size: 38px;
        line-height: 46px;
      }

      .reason-body {
        font-size: 16px;
        line-height: 26px;
      }

      .intro-cta {
        font-size: 16px;
        padding: 20px 40px;
      }

      .reason-img-placeholder {
        width: 360px;
        height: 420px;
      }

      .reasons-progress {
        right: 32px;
      }
    }

    /* ===== DESKTOP (1024px+) ===== */
    @media (min-width: 1024px) {
      .reason-card-inner {
        padding: 80px 100px;
        gap: 80px;
      }

      .reason-headline,
      .intro-headline {
        font-size: 42px;
        line-height: 50px;
        letter-spacing: -1.5px;
      }

      .intro-cta {
        font-size: 17px;
        padding: 22px 48px;
        gap: 24px;
      }

      .reason-img-placeholder {
        width: 440px;
        height: 500px;
      }

      .reasons-progress {
        right: 48px;
        gap: 14px;
      }

      .progress-dot {
        width: 12px;
        height: 12px;
      }
    }

    /* ===== CLINICAL PROOF SECTION ===== */
    .clinical-proof {
      background: #F0FFF4;
    }

    .clinical-proof-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 40px;
      display: flex;
      align-items: center;
      gap: 80px;
    }

    .clinical-text {
      flex: 1;
      min-width: 0;
    }

    .clinical-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 42px;
      line-height: 52px;
      color: #1a1a1a;
      letter-spacing: -1.5px;
    }

    .clinical-headline .green {
      color: #40916C;
    }

    .clinical-body {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 26px;
      color: #555;
      margin-top: 24px;
      border-left: 3px solid #F1471D;
      padding-left: 16px;
    }

    .clinical-citation {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 32px;
    }

    .citation-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #F1471D;
      color: #ffffff;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .citation-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .citation-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: #1a1a1a;
    }

    .citation-sub {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: #888;
    }

    .clinical-graph-col {
      flex: 1;
      min-width: 0;
    }

    .clinical-graph-card {
      background: #ffffff;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 24px;
    }

    .graph-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: #40916C;
      margin-bottom: 2px;
    }

    .graph-subtitle {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: #888;
      margin-bottom: 20px;
    }

    .graph-svg-wrap {
      position: relative;
      width: 100%;
    }

    .graph-svg-wrap svg {
      display: block;
      width: 100%;
      height: auto;
    }

    .graph-x-labels {
      display: flex;
      justify-content: space-between;
      padding: 8px 0 0;
    }

    .graph-x-labels span {
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 12px;
      color: #aaa;
    }

    /* Graph lines — initial hidden state, driven by scroll JS */
    .graph-line-green,
    .graph-line-gray {
      stroke-dashoffset: 500;
    }

    .graph-fill-green {
      opacity: 0;
    }

    /* Graph legend labels */
    .graph-legend {
      display: flex;
      gap: 24px;
      margin-top: 16px;
    }

    .graph-legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .legend-line {
      width: 20px;
      height: 3px;
      border-radius: 2px;
    }

    .legend-line--green {
      background: #40916C;
    }

    .legend-line--gray {
      background: #ccc;
      height: 2px;
      background-image: repeating-linear-gradient(
        90deg, #ccc 0px, #ccc 6px, transparent 6px, transparent 10px
      );
      background-color: transparent;
    }

    .legend-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      font-size: 12px;
      color: #555;
    }

    .legend-label--gray {
      color: #999;
      font-weight: 400;
    }

    /* Target badge on graph */
    .graph-target-badge {
      font-family: 'Manrope', sans-serif;
      font-size: 10px;
      font-weight: 700;
      fill: #ffffff;
    }

    @media (max-width: 768px) {
      .clinical-proof-inner {
        flex-direction: column;
        padding: 48px 24px;
        gap: 40px;
      }

      .clinical-headline {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.8px;
      }

      .clinical-body {
        font-size: 15px;
        line-height: 25px;
      }
    }

    /* ===== TIMELINE JOURNEY SECTION ===== */
    .timeline-journey {
      background: #ffffff;
    }

    .timeline-journey-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 40px;
    }

    .tj-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #F1471D;
      margin-bottom: 12px;
    }

    .tj-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 42px;
      line-height: 52px;
      color: #1a1a1a;
      letter-spacing: -1.5px;
      margin-bottom: 48px;
    }

    /* Timeline bar */
    .tj-bar {
      position: relative;
      width: 100%;
      height: 40px;
      margin-bottom: 56px;
    }

    .tj-bar-line {
      position: absolute;
      top: 50%;
      left: 5%;
      right: 5%;
      height: 2px;
      background: #E0E0E0;
      transform: translateY(-50%);
    }

    .tj-bar-fill {
      position: absolute;
      top: 50%;
      left: 5%;
      height: 2px;
      width: 0%;
      background: #40916C;
      transform: translateY(-50%);
      transition: width 0.4s ease;
    }

    .tj-dots {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 5%;
    }

    .tj-dot-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      position: relative;
      z-index: 2;
    }

    .tj-dot-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #999;
      margin-bottom: 8px;
      transition: color 0.4s ease;
      white-space: nowrap;
    }

    .tj-dot-label.active {
      color: #40916C;
    }

    .tj-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid #E0E0E0;
      background: #ffffff;
      transition: all 0.4s ease;
      box-sizing: border-box;
    }

    .tj-dot.active {
      width: 16px;
      height: 16px;
      background: #40916C;
      border: none;
      box-shadow: 0 0 0 4px rgba(64, 145, 108, 0.2);
    }

    /* Content area */
    .tj-content {
      display: flex;
      align-items: center;
      gap: 64px;
    }

    .tj-circle-col {
      flex: 0 0 40%;
      display: flex;
      justify-content: center;
    }

    .tj-circle {
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: linear-gradient(135deg, #D8F3DC 0%, #B7E4C7 100%);
      border: 3px solid #40916C;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
      overflow: hidden;
      transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .tj-circle.animating {
      opacity: 0;
      transform: scale(0.95);
    }

    .tj-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .tj-play-overlay {
      position: absolute;
      z-index: 2;
    }

    .tj-circle-text-overlay {
      position: absolute;
      z-index: 2;
      bottom: 40px;
    }

    .tj-play-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #40916C;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .tj-play-btn svg {
      width: 16px;
      height: 16px;
      margin-left: 2px;
    }

    .tj-circle-text {
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: #40916C;
    }

    .tj-text-col {
      flex: 1;
      min-width: 0;
      transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .tj-text-col.animating {
      opacity: 0;
      transform: translateX(-20px);
    }

    .tj-stage-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 12px;
      color: #F1471D;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .tj-stage-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 32px;
      line-height: 40px;
      color: #1a1a1a;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .tj-stage-body {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 28px;
      color: #555;
    }

    /* Navigation arrows */
    .tj-nav {
      display: flex;
      gap: 12px;
      margin-top: 40px;
    }

    .tj-nav-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      outline: none;
    }

    .tj-nav-prev {
      background: #ffffff;
      border: 2px solid #E0E0E0 !important;
    }

    .tj-nav-prev svg {
      width: 18px;
      height: 18px;
    }

    .tj-nav-prev.disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .tj-nav-next {
      background: #40916C;
    }

    .tj-nav-next svg {
      width: 18px;
      height: 18px;
    }

    .tj-nav-next.disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    @media (max-width: 768px) {
      .timeline-journey-inner {
        padding: 48px 24px;
      }

      .tj-headline {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.8px;
        margin-bottom: 32px;
      }

      .tj-bar {
        margin-bottom: 40px;
      }

      .tj-dot-label {
        font-size: 10px;
        letter-spacing: 1px;
      }

      .tj-dot {
        width: 8px;
        height: 8px;
      }

      .tj-dot.active {
        width: 12px;
        height: 12px;
      }

      .tj-content {
        flex-direction: column;
        gap: 32px;
      }

      .tj-circle-col {
        flex: none;
        width: 100%;
      }

      .tj-circle {
        width: 240px;
        height: 240px;
      }

      .tj-stage-headline {
        font-size: 26px;
        line-height: 34px;
      }

      .tj-stage-body {
        font-size: 15px;
        line-height: 26px;
      }

      .tj-nav {
        justify-content: flex-start;
      }
    }

    /* ===== HOW IT WORKS ===== */
    .hiw-section {
      background: #FFFFFF;
      padding: 80px 24px;
      width: 100%;
      font-family: 'Manrope', sans-serif;
    }

    .hiw-outer {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }

    /* Trust headline — prominent top statement */
    .hiw-trust-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .hiw-trust-headline {
      font-weight: 800;
      font-size: 36px;
      line-height: 44px;
      color: #133F26;
      letter-spacing: -1.2px;
      margin-bottom: 8px;
    }

    .hiw-trust-sub {
      font-weight: 400;
      font-size: 18px;
      line-height: 26px;
      color: #646464;
    }

    .hiw-section-label {
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #F1471D;
      margin-bottom: 24px;
    }

    .hiw-steps-wrap {
      position: relative;
    }

    .hiw-step {
      display: flex;
      flex-direction: row;
      gap: 20px;
      align-items: flex-start;
      padding: 28px 0;
      border-bottom: 1px solid #F0F0F0;
    }

    .hiw-step:last-child {
      border-bottom: none;
    }

    .hiw-step-num {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: #F0FFF4;
      border: 2px solid #40916C;
      border-radius: 50%;
      font-weight: 800;
      font-size: 18px;
      color: #133F26;
      text-align: center;
      line-height: 44px;
      flex-shrink: 0;
    }

    .hiw-step-label {
      color: #F1471D;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .hiw-step-title {
      font-weight: 800;
      font-size: 22px;
      color: #1a1a1a;
      margin-bottom: 8px;
    }

    .hiw-step-desc {
      font-weight: 400;
      font-size: 15px;
      color: #666;
      line-height: 24px;
    }


    @media (min-width: 769px) {
      .hiw-section {
        padding: 100px 40px;
      }

      .hiw-trust-headline {
        font-size: 44px;
        line-height: 52px;
        letter-spacing: -1.5px;
      }

      .hiw-trust-sub {
        font-size: 20px;
      }

      .hiw-section-label {
        text-align: center;
      }

      .hiw-step-title {
        font-size: 24px;
      }
    }

    /* ===== PRODUCT SECTION ===== */
    .product-section {
      background: #F0FFF4;
    }

    .product-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 40px;
      display: flex;
      align-items: center;
      gap: 80px;
    }

    .product-img-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 0;
      gap: 24px;
    }

    .bottle-marquee {
      width: 100%;
      max-width: 380px;
      overflow: hidden;
      position: relative;
      border-radius: 50px;
      background: #133F26;
      padding: 10px 0;
    }

    .bottle-marquee-track {
      display: flex;
      width: fit-content;
      animation: bottle-marquee-scroll 12s linear infinite;
    }

    .bottle-marquee-set {
      display: flex;
      align-items: center;
      gap: 32px;
      padding: 0 16px;
      flex-shrink: 0;
    }

    .bottle-marquee-item {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #ffffff;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .bottle-marquee-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      flex-shrink: 0;
    }

    @keyframes bottle-marquee-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .product-img-col img {
      max-width: 380px;
      width: 100%;
      filter: drop-shadow(0 20px 40px rgba(19, 63, 38, 0.18)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.06));
      transform: rotate(-5deg) translateY(0px);
      animation: product-float 4s ease-in-out infinite;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    }

    .product-img-col img:hover {
      transform: rotate(-1deg) scale(1.04) translateY(-4px);
      animation-play-state: paused;
      filter: drop-shadow(0 28px 56px rgba(19, 63, 38, 0.22)) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
    }

    @keyframes product-float {
      0%, 100% {
        transform: rotate(-5deg) translateY(0px);
        filter: drop-shadow(0 20px 40px rgba(19, 63, 38, 0.18)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.06));
      }
      50% {
        transform: rotate(-5deg) translateY(-16px);
        filter: drop-shadow(0 36px 60px rgba(19, 63, 38, 0.14)) drop-shadow(0 14px 28px rgba(0, 0, 0, 0.04));
      }
    }

    .product-details-col {
      flex: 1;
      min-width: 0;
    }

    .product-badges {
      display: flex;
      gap: 8px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .product-badge {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      white-space: nowrap;
    }

    .product-badge--filled {
      background: #133F26;
      color: #ffffff;
    }

    .product-badge--outline {
      background: transparent;
      border: 1px solid #133F26;
      color: #133F26;
    }

    .product-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 42px;
      line-height: 52px;
      color: #1a1a1a;
      letter-spacing: -1.5px;
      margin-bottom: 4px;
    }

    .product-subtitle {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .product-stars {
      font-size: 18px;
      color: #F4B942;
      letter-spacing: 2px;
      line-height: 1;
    }

    .product-rating-text {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: #1a1a1a;
    }

    .product-rating-count {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #888;
    }

    .product-divider {
      height: 1px;
      background: #E0E0E0;
      margin-bottom: 28px;
    }

    /* Pricing box */
    .pricing-box {
      background: #ffffff;
      border: 1px solid #E0E0E0;
      border-radius: 16px;
      padding: 28px;
      margin-bottom: 24px;
    }

    .pricing-offer {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #F1471D;
      margin-bottom: 12px;
    }

    .pricing-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      flex-wrap: wrap;
    }

    .pricing-old {
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 24px;
      color: #999;
      text-decoration: line-through;
    }

    .pricing-arrow {
      font-size: 18px;
      color: #999;
    }

    .pricing-current {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 48px;
      color: #133F26;
      line-height: 1;
    }

    .pricing-period {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #888;
    }

    .pricing-save {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: #ffffff;
      background: #F1471D;
      border-radius: 50px;
      padding: 4px 12px;
      white-space: nowrap;
    }

    .pricing-sub {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: #888;
      margin-top: 8px;
    }

    /* Includes list */
    .product-includes {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .product-includes li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: #333;
    }

    .product-includes li .check {
      color: #40916C;
      font-size: 18px;
      flex-shrink: 0;
      line-height: 1;
    }


    .product-disclaimer {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: #888;
      text-align: center;
    }

    .product-tp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .product-tp-text {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: #1a1a1a;
      letter-spacing: 0.2px;
    }

    .product-tp-stars {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .product-tp-star {
      width: 18px;
      height: 18px;
      background: #00B67A;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-tp-star svg {
      width: 13px;
      height: 13px;
      fill: #ffffff;
    }

    .product-tp-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: #1a1a1a;
      letter-spacing: 0.2px;
    }

    @media (max-width: 768px) {
      .product-inner {
        flex-direction: column;
        padding: 48px 24px;
        gap: 32px;
      }

      .product-img-col img {
        max-width: 280px;
        display: block;
        margin: 0 auto;
      }

      .product-name {
        font-size: 32px;
        line-height: 40px;
      }

      .pricing-current {
        font-size: 36px;
      }

    }

    /* ===== FAQ ACCORDIONS ===== */
    .faq-section {
      background: #f7f7f7;
      padding: 100px 24px;
    }

    .faq-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .faq-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 44px;
      color: #133F26;
      letter-spacing: -1.5px;
      line-height: 1.15;
      text-align: center;
      margin-bottom: 64px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 48px;
    }

    .faq-item {
      border-bottom: 1px solid rgba(19, 63, 38, 0.12);
    }

    .faq-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 28px 0;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #133F26;
      text-align: left;
      line-height: 1.3;
      transition: color 0.2s ease;
    }

    .faq-trigger:hover {
      color: #40916C;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #40916C;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-icon svg {
      width: 20px;
      height: 20px;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
      opacity: 0;
    }

    .faq-item.open .faq-content {
      max-height: 300px;
      opacity: 1;
    }

    .faq-content p {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 27px;
      color: #4a5e52;
      padding-bottom: 28px;
    }

    @media (min-width: 769px) {
      .faq-section {
        padding: 120px 48px;
      }

      .faq-headline {
        font-size: 52px;
        margin-bottom: 72px;
      }

      .faq-trigger {
        font-size: 20px;
        padding: 32px 0;
      }

      .faq-content p {
        font-size: 17px;
        line-height: 28px;
      }
    }

    @media (max-width: 768px) {
      .faq-section {
        padding: 72px 20px;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }

      .faq-headline {
        font-size: 32px;
        letter-spacing: -0.8px;
        margin-bottom: 40px;
      }

      .faq-trigger {
        font-size: 16px;
        padding: 22px 0;
      }

      .faq-content p {
        font-size: 15px;
        line-height: 25px;
        padding-bottom: 22px;
      }
    }

    /* ===== FEAR / SIGNALS SECTION ===== */
    .signals-section {
      background: #fdfaf6;
      padding: 0;
      overflow: hidden;
    }

    .signals-inner {
      display: flex;
      max-width: 1400px;
      margin: 0 auto;
      min-height: 640px;
    }

    .signals-img-col {
      flex: 1;
      position: relative;
      min-height: 500px;
    }

    .signals-img-col img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .signals-img-fade {
      position: absolute;
      z-index: 1;
    }

    .signals-img-fade--right {
      top: 0;
      right: 0;
      bottom: 0;
      width: 35%;
      background: linear-gradient(90deg, transparent 0%, #fdfaf6 100%);
    }

    .signals-img-fade--left {
      top: 0;
      left: 0;
      bottom: 0;
      width: 20%;
      background: linear-gradient(270deg, transparent 0%, #fdfaf6 100%);
    }

    .signals-img-fade--bottom {
      left: 0;
      right: 0;
      bottom: 0;
      height: 25%;
      background: linear-gradient(0deg, #fdfaf6 0%, transparent 100%);
    }

    .signals-text-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px 80px 48px;
    }

    .signals-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #DC2626;
      margin-bottom: 16px;
    }

    .signals-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 36px;
      line-height: 1.2;
      letter-spacing: -1px;
      color: #1a1a1a;
      margin-bottom: 16px;
    }

    .signals-headline em {
      font-style: normal;
      color: #DC2626;
    }

    .signals-sub {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 17px;
      line-height: 27px;
      color: #666;
      margin-bottom: 40px;
    }

    .signals-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 40px;
    }

    .signal-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .signal-card:first-child {
      padding-top: 0;
    }

    .signal-card:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .signal-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #FEF2F2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .signal-text {
      flex: 1;
    }

    .signal-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: #1a1a1a;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .signal-desc {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #888;
      line-height: 21px;
    }

    .signals-bottom {
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: #DC2626;
      line-height: 24px;
      padding: 20px 24px;
      background: #FEF2F2;
      border-radius: 12px;
      border-left: 3px solid #DC2626;
    }

    .signals-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 32px;
      padding: 18px 36px;
      background: #F1471D;
      color: #ffffff;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 16px;
      border-radius: 60px;
      text-decoration: none;
      transition: background 0.25s ease, transform 0.2s ease;
    }

    .signals-cta:hover {
      background: #d93d15;
      transform: translateY(-1px);
    }

    .signals-cta-arrow {
      width: 20px;
      height: 20px;
    }

    @media (min-width: 1025px) {
      .signals-headline {
        font-size: 42px;
      }

      .signals-text-col {
        padding: 100px 80px 100px 56px;
      }
    }

    @media (max-width: 768px) {
      .signals-inner {
        flex-direction: column;
        min-height: auto;
      }

      .signals-img-col {
        min-height: 320px;
        flex: none;
      }

      .signals-img-fade--right {
        display: none;
      }

      .signals-img-fade--left {
        display: none;
      }

      .signals-img-fade--bottom {
        height: 40%;
        background: linear-gradient(0deg, #fdfaf6 0%, transparent 100%);
      }

      .signals-text-col {
        padding: 32px 24px 64px;
      }

      .signals-headline {
        font-size: 28px;
        letter-spacing: -0.6px;
      }

      .signals-sub {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 28px;
      }

      .signal-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
      }

      .signal-title {
        font-size: 15px;
      }

      .signal-desc {
        font-size: 13px;
        line-height: 20px;
      }

      .signals-bottom {
        font-size: 14px;
        padding: 16px 20px;
      }

      .signals-cta {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 16px 28px;
      }
    }

    /* ===== HERO WIDGET DARK-ON-LIGHT OVERRIDES ===== */
    .slider-label--dark {
      color: rgba(0, 0, 0, 0.6);
    }

    .slider-label--dark .age-number {
      color: #1a1a1a;
    }

    .results-box--dark {
      border-radius: 12px;
      background: #f0ede8;
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .results-box--dark .results-label {
      color: rgba(0, 0, 0, 0.5);
    }

    .results-box--dark .results-percentage {
      color: #DC2626;
    }

    .results-box--dark .results-divider {
      background-color: rgba(0, 0, 0, 0.1);
    }

    .trustpilot--dark .trustpilot-rating {
      color: #1a1a1a;
    }

    .trustpilot--dark .trustpilot-name {
      color: #00B67A;
    }

    .trustpilot--dark .star {
      background-color: #00B67A;
    }

    .trustpilot--dark .star svg {
      fill: #ffffff;
    }

    .trustpilot--dark .star--half .star-half-left {
      background-color: #00B67A;
    }

    .trustpilot--dark .star--half .star-half-right {
      background: #DCDCE6;
    }

    @media (max-width: 768px) {
      .signals-hero .signals-img-col {
        min-height: 360px;
      }
    }

    /* ===== STICKY FOOTER CTA ===== */
    .sticky-footer-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 998;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 12px 16px;
      box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }

    .sticky-footer-cta.visible {
      transform: translateY(0);
    }

    .sticky-footer-cta .cta-unified {
      max-width: 520px;
      margin: 0 auto;
    }

    /* ===== BENTO GRID — WHAT YOU GET ===== */
    .bento-section {
      background: #ffffff;
    }

    .bento-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 40px;
    }

    .bento-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #40916C;
      margin-bottom: 12px;
    }

    .bento-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 42px;
      line-height: 52px;
      color: #1a1a1a;
      letter-spacing: -1.5px;
      margin-bottom: 48px;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-areas:
        "c1 c1 c1 c1 c2 c2"
        "c3 c3 c4 c4 c5 c5";
      gap: 16px;
    }

    .bento-card {
      border-radius: 20px;
      padding: 36px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .bento-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(19, 63, 38, 0.12);
    }

    .bento-card-1 { grid-area: c1; background: #133F26; color: #ffffff; position: relative; overflow: hidden; }
    .bento-card-2 { grid-area: c2; background: #F0FFF4; }
    .bento-card-3 { grid-area: c3; background: #ffffff; border: 1px solid #E8E8E8; }
    .bento-card-4 { grid-area: c4; background: #F0FFF4; }
    .bento-card-5 { grid-area: c5; background: #133F26; color: #ffffff; }

    .bento-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .bento-icon {
      flex-shrink: 0;
    }

    .bento-pill {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.15);
      color: #ffffff;
      border-radius: 50px;
      padding: 4px 12px;
      white-space: nowrap;
    }

    .bento-stat {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 56px;
      color: #ffffff;
      letter-spacing: -1px;
      line-height: 1;
    }

    .bento-stat-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 4px;
    }

    .bento-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 22px;
      line-height: 28px;
      color: #1a1a1a;
    }

    .bento-card-5 .bento-title {
      color: #ffffff;
    }

    .bento-sub {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: #666;
      margin-top: 8px;
    }

    .bento-card-5 .bento-sub {
      color: rgba(255, 255, 255, 0.6);
    }

    @media (max-width: 768px) {
      .bento-inner {
        padding: 48px 24px;
      }

      .bento-headline {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.8px;
        margin-bottom: 32px;
      }

      .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "c1 c1"
          "c2 c3"
          "c4 c5";
        gap: 12px;
      }

      .bento-card {
        padding: 24px;
        min-height: 180px;
        border-radius: 16px;
      }

      .bento-stat {
        font-size: 40px;
      }

      .bento-title {
        font-size: 18px;
        line-height: 24px;
      }
    }
    /* ===== UGC Testimonial Marquee ===== */
    .ugc-section {
      background: #FFFFFF;
      padding: 100px 40px;
      width: 100%;
      overflow: hidden;
    }

    .ugc-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .ugc-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #F1471D;
      margin-bottom: 12px;
    }

    .ugc-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 42px;
      line-height: 50px;
      letter-spacing: -1.4px;
      color: #1a1a1a;
    }

    .ugc-subheadline {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #888;
      margin-top: 8px;
    }

    .ugc-marquee-area {
      position: relative;
      overflow: hidden;
    }

    .ugc-fade-left,
    .ugc-fade-right {
      position: absolute;
      top: 0;
      height: 100%;
      width: 60px;
      z-index: 2;
      pointer-events: none;
    }

    .ugc-fade-left {
      left: 0;
      background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 30%, transparent 100%);
    }

    .ugc-fade-right {
      right: 0;
      background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 30%, transparent 100%);
    }

    .ugc-marquee-row {
      display: flex;
      width: max-content;
      margin-bottom: 16px;
    }

    .ugc-marquee-row:last-child {
      margin-bottom: 0;
    }

    @keyframes scrollLeft {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @keyframes scrollRight {
      from { transform: translateX(-50%); }
      to { transform: translateX(0); }
    }

    .ugc-row-1 { animation: scrollLeft 35s linear infinite; }
    .ugc-row-2 { animation: scrollRight 45s linear infinite; }
    .ugc-row-3 { animation: scrollLeft 40s linear infinite; }

    .ugc-card {
      width: 320px;
      flex-shrink: 0;
      background: #FAFAFA;
      border: 1px solid #F0F0F0;
      border-radius: 16px;
      padding: 24px;
      margin-right: 16px;
    }

    .ugc-card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 14px;
    }

    .ugc-user {
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
    }

    .ugc-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: #133F26;
      flex-shrink: 0;
      line-height: 40px;
      text-align: center;
    }

    .ugc-av-green { background: linear-gradient(135deg, #D8F3DC, #B7E4C7); }
    .ugc-av-peach { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); color: #8D6E3A; }
    .ugc-av-lav   { background: linear-gradient(135deg, #E8EAF6, #C5CAE9); color: #3F51B5; }

    .ugc-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: #1a1a1a;
    }

    .ugc-detail-top {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 12px;
      color: #888;
      margin-top: 2px;
    }

    .ugc-verified {
      background: #F0FFF4;
      color: #40916C;
      border: 1px solid #C3E6CB;
      border-radius: 50px;
      padding: 3px 10px;
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      font-size: 11px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .ugc-stars {
      color: #F4B942;
      font-size: 14px;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .ugc-quote {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #444;
      line-height: 22px;
    }

    .ugc-card-bottom {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #F0F0F0;
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 12px;
      color: #AAA;
    }

    @media (max-width: 768px) {
      .ugc-section {
        padding: 60px 0;
      }

      .ugc-header {
        padding: 0 24px;
      }

      .ugc-headline {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.8px;
      }

      .ugc-card {
        width: 280px;
      }

      .ugc-fade-left,
      .ugc-fade-right {
        width: 60px;
      }
    }

    /* ===== What Is NAD+ Explainer ===== */
    .nad-explainer {
      background: #F0FFF4 !important;
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .nad-explainer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 100px 40px;
    }

    .nad-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .nad-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #40916C;
      margin-bottom: 16px;
    }

    .nad-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 48px;
      line-height: 56px;
      letter-spacing: -1.4px;
      color: #1a1a1a;
    }

    .nad-subheadline {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 18px;
      color: #888;
      margin-top: 12px;
    }

    .nad-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
      align-items: start;
      position: relative;
    }

    .nad-col {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .nad-col.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .nad-step-num {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 64px;
      color: rgba(64, 145, 108, 0.15);
      line-height: 1;
      margin-bottom: -16px;
    }

    .nad-col-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 26px;
      color: #133F26;
      margin-bottom: 16px;
    }

    .nad-col-body {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: #555;
      line-height: 26px;
      margin-bottom: 24px;
    }

    .nad-highlight {
      background: rgba(64, 145, 108, 0.08);
      border-left: 3px solid #40916C;
      border-radius: 0 8px 8px 0;
      padding: 16px 20px;
    }

    .nad-highlight p {
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 14px;
      color: #333;
      line-height: 22px;
    }

    .nad-decline-counter {
      margin-top: 8px;
    }

    .nad-decline-num {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 72px;
      color: #F1471D;
      line-height: 1;
    }

    .nad-decline-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 13px;
      color: #888;
      margin-top: 4px;
    }

    .nad-symptom-pills {
      display: flex;
      flex-direction: row;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .nad-symptom-pill {
      background: rgba(19, 63, 38, 0.06);
      border: 1px solid rgba(19, 63, 38, 0.12);
      border-radius: 50px;
      padding: 6px 14px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 12px;
      color: #555;
    }

    /* Center column — body SVG */
    .nad-body-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .nad-body-svg-wrap {
      position: relative;
      width: 180px;
      height: 340px;
    }

    .nad-silhouette {
      width: 100%;
      height: 100%;
    }

    .nad-silhouette path {
      fill: #133F26;
      opacity: 0.12;
      transition: all 0.8s ease;
    }

    .nad-silhouette.lit path {
      fill: #1B4332;
      opacity: 0.18;
    }

    .nad-organ-dot {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #40916C;
      opacity: 0;
      transition: all 0.6s ease;
      pointer-events: none;
      transform: translate(-50%, -50%);
    }

    .nad-organ-dot.lit {
      opacity: 1;
      filter: drop-shadow(0 0 8px #40916C);
    }

    @keyframes organPulse {
      0%, 100% { filter: drop-shadow(0 0 6px #40916C); transform: translate(-50%, -50%) scale(1); }
      50% { filter: drop-shadow(0 0 14px #40916C); transform: translate(-50%, -50%) scale(1.15); }
    }

    .nad-organ-dot.pulse {
      animation: organPulse 2.5s ease infinite;
    }

    .nad-dot-brain   { top: 12%; left: 50%; }
    .nad-dot-heart   { top: 28%; left: 44%; }
    .nad-dot-liver   { top: 36%; left: 54%; }
    .nad-dot-cells   { top: 45%; left: 50%; }
    .nad-dot-muscle-lt { top: 62%; left: 38%; }
    .nad-dot-muscle-rt { top: 62%; left: 62%; }

    .nad-legend {
      display: flex;
      flex-direction: row;
      gap: 12px;
      justify-content: center;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .nad-legend-item {
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 12px;
      color: #888;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nad-legend-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #40916C;
      opacity: 0.5;
      transition: all 0.6s ease;
    }

    .nad-legend-dot.lit {
      opacity: 1;
      box-shadow: 0 0 6px #40916C;
    }

    /* Connecting arrows */
    .nad-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .nad-arrow-left {
      left: calc(33.33% - 24px);
    }

    .nad-arrow-right {
      right: calc(33.33% - 24px);
    }

    .nad-arrow svg {
      width: 48px;
      height: 24px;
    }

    .nad-arrow path {
      fill: none;
      stroke: rgba(64, 145, 108, 0.3);
      stroke-width: 1.5;
      stroke-dasharray: 80;
      stroke-dashoffset: 80;
      transition: stroke-dashoffset 1.2s ease;
    }

    .nad-arrow.drawn path {
      stroke-dashoffset: 0;
    }

    @media (max-width: 768px) {
      .nad-explainer-inner {
        padding: 60px 24px;
      }

      .nad-headline {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.8px;
      }

      .nad-subheadline {
        font-size: 16px;
      }

      .nad-header {
        margin-bottom: 48px;
      }

      .nad-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .nad-body-wrap {
        order: -1;
      }

      .nad-body-svg-wrap {
        height: 240px;
        width: 130px;
      }

      .nad-arrow {
        display: none;
      }

      .nad-step-num {
        font-size: 48px;
      }

      .nad-col-title {
        font-size: 22px;
      }

      .nad-decline-num {
        font-size: 56px;
      }
    }

    /* ===== Research Spotlight ===== */
    .research-spotlight {
      background: #FFFFFF;
      width: 100%;
      padding: 100px 40px;
    }

    .research-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .research-img-col {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .research-img-col.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .research-photo {
      width: 100%;
      max-width: 480px;
      height: 580px;
      object-fit: cover;
      object-position: top center;
      border-radius: 16px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
      display: block;
    }

    .research-content-col {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
    }

    .research-content-col.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .research-logo {
      height: 48px;
      width: auto;
      margin-bottom: 32px;
      display: block;
    }

    .research-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #40916C;
      margin-bottom: 16px;
    }

    .research-headline {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 36px;
      line-height: 46px;
      color: #1a1a1a;
      margin-bottom: 24px;
    }

    .research-quote {
      border-left: 3px solid #40916C;
      padding-left: 20px;
      margin-bottom: 32px;
    }

    .research-quote p {
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 18px;
      color: #333;
      line-height: 30px;
      font-style: italic;
    }

    .research-attribution {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
    }

    .research-attr-photo {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      object-position: top;
      flex-shrink: 0;
    }

    .research-attr-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: #1a1a1a;
    }

    .research-attr-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: #888;
      margin-top: 2px;
    }

    .research-stats {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
    }

    .research-stat-box {
      background: #F8F8F8;
      border-radius: 12px;
      padding: 16px;
      border-top: 3px solid #40916C;
    }

    .research-stat-num {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: #133F26;
    }

    .research-stat-label {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 12px;
      color: #888;
      margin-top: 4px;
    }


    @media (max-width: 768px) {
      .research-spotlight {
        padding: 60px 24px;
      }

      .research-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .research-photo {
        height: 320px;
        width: 100%;
        max-width: 100%;
      }

      .research-headline {
        font-size: 28px;
        line-height: 36px;
      }

      .research-quote p {
        font-size: 16px;
        line-height: 26px;
      }

      .research-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
      }

      .research-stat-box {
        padding: 12px;
      }

      .research-stat-num {
        font-size: 18px;
      }

      .research-img-col {
        transform: translateY(30px);
      }

      .research-img-col.visible {
        transform: translateY(0);
      }

      .research-content-col {
        transform: translateY(30px);
      }

      .research-content-col.visible {
        transform: translateY(0);
      }
    }
    /* ===== FAQ SECTION ===== */
    .faq-section {
      background: #f7f7f7;
      padding: 64px 20px 56px;
      font-family: 'Manrope', sans-serif;
    }

    .faq-inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .faq-headline {
      font-weight: 800;
      font-size: 28px;
      line-height: 36px;
      color: #1a1a1a;
      letter-spacing: -0.8px;
      text-align: center;
      margin-bottom: 36px;
    }

    .faq-item {
      border-bottom: 1px solid #e0e0e0;
    }

    .faq-item:first-child {
      border-top: 1px solid #e0e0e0;
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 0;
      cursor: pointer;
      user-select: none;
    }

    .faq-q-text {
      font-weight: 700;
      font-size: 17px;
      line-height: 24px;
      color: #1a1a1a;
    }

    .faq-q-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #e8e8e8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 300;
      color: #555;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .faq-item.open .faq-q-icon {
      transform: rotate(45deg);
      background: #133F26;
      color: #ffffff;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-a {
      max-height: 400px;
      padding-bottom: 20px;
    }

    .faq-a p {
      font-size: 15px;
      font-weight: 400;
      line-height: 24px;
      color: #666;
    }

    @media (min-width: 769px) {
      .faq-section {
        padding: 96px 40px 80px;
      }

      .faq-headline {
        font-size: 38px;
        line-height: 46px;
        letter-spacing: -1.2px;
      }

      .faq-q-text {
        font-size: 18px;
      }

      .faq-a p {
        font-size: 16px;
        line-height: 26px;
      }
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: #ffffff;
      font-family: 'Manrope', sans-serif;
      border-top: 1px solid #e8e8e8;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 56px 24px 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }

    /* Logo column */
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-logo {
      height: 56px;
      width: auto;
    }

    .footer-copyright {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #999;
    }

    /* Badges column */
    .footer-badges {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-badge-img {
      height: 72px;
      width: auto;
    }

    /* Links column */
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 14px;
      font-weight: 500;
      color: #444;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: #1a1a1a;
    }

    /* Contact column */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-contact-heading {
      font-size: 14px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 4px;
    }

    .footer-contact p,
    .footer-contact a {
      font-size: 13px;
      font-weight: 400;
      color: #555;
      line-height: 1.5;
      text-decoration: none;
    }

    .footer-contact a:hover {
      color: #1a1a1a;
    }

    /* FDA divider + disclaimer */
    .footer-fda {
      max-width: 1100px;
      margin: 0 auto;
      padding: 32px 24px 40px;
      border-top: 1px solid #e8e8e8;
    }

    .footer-fda p {
      font-size: 11px;
      font-weight: 400;
      color: #999;
      line-height: 1.7;
    }

    @media (min-width: 769px) {
      .footer-inner {
        grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
        gap: 48px;
        padding: 64px 40px 0;
      }

      .footer-fda {
        padding: 32px 40px 48px;
        margin-top: 48px;
      }
    }
  