
    /* ============================================
       CSS VARIABLES — BRAND COLORS FROM LOGO
       Blue: #1565C0  Green: #4CAF50  Dark: #1a1a2e
    ============================================ */
    :root {
      --blue:        #1565C0;
      --blue-light:  #1E88E5;
      --blue-dark:   #0D47A1;
      --green:       #43A047;
      --green-light: #66BB6A;
      --green-dark:  #2E7D32;
      --gold:        #F59E0B;
      --red-badge:   #E53935;
      --dark:        #0f172a;
      --dark2:       #1e293b;
      --text:        #1e293b;
      --text-light:  #475569;
      --white:       #ffffff;
      --cream:       #f8faff;
      --border:      rgba(21,101,192,0.15);
      --shadow-blue: rgba(21,101,192,0.25);
      --shadow-green:rgba(67,160,71,0.25);
      --gradient-hero: linear-gradient(135deg, #0D47A1 0%, #1565C0 35%, #1B5E20 70%, #2E7D32 100%);
      --gradient-btn:  linear-gradient(135deg, #43A047 0%, #66BB6A 50%, #2E7D32 100%);
      --gradient-blue: linear-gradient(135deg, #0D47A1 0%, #1E88E5 100%);
      --gradient-section: linear-gradient(180deg, #f0f7ff 0%, #e8f5e9 100%);
    }

    /* ============================================
       RESET & BASE
    ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      line-height: 1.75;
      color: var(--text);
      background: #f0f7ff;
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ============================================
       TYPOGRAPHY
    ============================================ */
    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      line-height: 1.25;
      font-weight: 700;
    }

    /* ============================================
       ADVERTORIAL TOPBAR
    ============================================ */
    .advertorial-bar {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      text-align: center;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 8px 20px;
    }

    /* ============================================
       HEADER / NAVBAR
    ============================================ */
    .site-header {
      background: var(--white);
      border-bottom: 3px solid transparent;
      border-image: linear-gradient(90deg, var(--blue), var(--green)) 1;
      padding: 0PX 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }

    .site-header img {
      height: 120PX;
      width: auto;
    }

    /* ============================================
       HERO SECTION
    ============================================ */
    .hero-section {
      background: var(--gradient-hero);
      position: relative;
      overflow: hidden;
      padding: 70px 20px 80px;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 10% 20%, rgba(255,255,255,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(102,187,106,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Decorative orbs */
    .hero-section::after {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.06);
      top: -150px; right: -150px;
      pointer-events: none;
    }

    .hero-inner {
      max-width: 860px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 28px;
    }

    .hero-badge span { color: var(--green-light); }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 5vw, 52px);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 30px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

    .hero-title em {
      font-style: italic;
      color: #a5f3a8;
    }

    .hero-video-wrap {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
      margin-bottom: 0;
      border: 3px solid rgba(255,255,255,0.15);
    }

    .hero-video-wrap video {
      width: 100%;
      display: block;
      border-radius: 17px;
    }

    /* ============================================
       LEAD BOX (hook paragraph)
    ============================================ */
    .lead-box {
      background: linear-gradient(135deg, #fff8e1 0%, #e8f5e9 100%);
      border-left: 5px solid var(--green);
      border-radius: 0 16px 16px 0;
      padding: 28px 32px;
      margin: 40px 0;
      box-shadow: 0 4px 24px rgba(67,160,71,0.12);
    }

    .lead-box p {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      line-height: 1.7;
      font-family: 'Playfair Display', serif;
      font-style: italic;
    }

    /* ============================================
       CONTENT WRAPPER / MAX WIDTH
    ============================================ */
    .content-wrap {
      max-width: 840px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ============================================
       SECTIONS
    ============================================ */
    .page-section {
      padding: 60px 20px;
    }

    .section-white  { background: #ffffff; }
    .section-cream  { background: var(--cream); }
    .section-grad   { background: var(--gradient-section); }
    .section-dark   { background: var(--dark); color: #fff; }
    .section-blue   { background: linear-gradient(135deg, #e3f0ff 0%, #d0eaff 100%); }
    .section-green  { background: linear-gradient(135deg, #e8f5e9 0%, #d7f5d7 100%); }

    /* ============================================
       SECTION HEADINGS
    ============================================ */
    .section-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 700;
      color: var(--blue-dark);
      text-align: center;
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .section-heading.white { color: #fff; }
    .section-heading.green { color: var(--green-dark); }

    .section-heading-line {
      width: 70px; height: 4px;
      background: linear-gradient(90deg, var(--blue), var(--green));
      border-radius: 4px;
      margin: 0 auto 40px;
    }

    .section-subtext {
      text-align: center;
      font-size: 17px;
      color: var(--text-light);
      max-width: 640px;
      margin: 0 auto 40px;
    }

    /* ============================================
       STORY TEXT SECTIONS
    ============================================ */
    .story-text p {
      font-size: 17px;
      color: var(--text);
      line-height: 1.85;
      margin-bottom: 18px;
    }

    .story-text p strong { color: var(--blue-dark); }

    .story-text .pull-quote {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-style: italic;
      color: var(--blue);
      border-left: 4px solid var(--green);
      padding: 14px 24px;
      background: linear-gradient(90deg, rgba(21,101,192,0.06), transparent);
      border-radius: 0 12px 12px 0;
      margin: 28px 0;
    }

    /* ============================================
       SECTION IMAGE
    ============================================ */
    .section-img {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,0.14);
      margin: 36px 0;
    }

    .section-img img { width: 100%; border-radius: 18px; }

    /* ============================================
       VIDEO BLOCK
    ============================================ */
    .video-block {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 16px 60px rgba(21,101,192,0.2);
      margin: 32px 0;
      border: 2px solid var(--border);
    }

    .video-block video { width: 100%; display: block; }

    /* ============================================
       TRIPLE THERAPY CARDS
    ============================================ */
    .therapy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-top: 36px;
    }

    .therapy-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 8px 32px rgba(21,101,192,0.1);
      border: 1px solid var(--border);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .therapy-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
    }

    .therapy-card:nth-child(1)::before { background: linear-gradient(90deg, #ff6b35, #f59e0b); }
    .therapy-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
    .therapy-card:nth-child(3)::before { background: linear-gradient(90deg, var(--green-dark), var(--green-light)); }

    .therapy-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(21,101,192,0.18);
    }

    .therapy-icon {
      width: 60px; height: 60px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      margin-bottom: 18px;
    }

    .therapy-card:nth-child(1) .therapy-icon { background: #fff3e0; }
    .therapy-card:nth-child(2) .therapy-icon { background: #e3f2fd; }
    .therapy-card:nth-child(3) .therapy-icon { background: #e8f5e9; }

    .therapy-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 10px;
    }

    .therapy-card p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* ============================================
       WEEK JOURNEY TIMELINE
    ============================================ */
    .timeline {
      position: relative;
      margin-top: 36px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 34px;
      top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--blue), var(--green));
      border-radius: 4px;
    }

    .timeline-item {
      display: flex;
      gap: 24px;
      margin-bottom: 28px;
      position: relative;
    }

    .timeline-dot {
      flex-shrink: 0;
      width: 68px; height: 68px;
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: #fff;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }

    .timeline-item:nth-child(1) .timeline-dot { background: linear-gradient(135deg, #1565C0, #1E88E5); }
    .timeline-item:nth-child(2) .timeline-dot { background: linear-gradient(135deg, #0D47A1, #1565C0); }
    .timeline-item:nth-child(3) .timeline-dot { background: linear-gradient(135deg, #2E7D32, #43A047); }
    .timeline-item:nth-child(4) .timeline-dot { background: linear-gradient(135deg, #1B5E20, #2E7D32); }

    .timeline-dot .wk { font-size: 9px; opacity: 0.85; }
    .timeline-dot .num { font-size: 22px; font-weight: 800; line-height: 1; }

    .timeline-content {
      background: #fff;
      border-radius: 16px;
      padding: 20px 24px;
      flex: 1;
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      border: 1px solid var(--border);
    }

    .timeline-content strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      color: var(--blue-dark);
      margin-bottom: 6px;
    }

    .timeline-content p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.65;
      margin: 0;
    }

    /* ============================================
       TESTIMONIAL CARDS
    ============================================ */
    .testimonial-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 30px;
      margin-bottom: 24px;
      box-shadow: 0 8px 32px rgba(21,101,192,0.08);
      border: 1px solid var(--border);
      position: relative;
    }

    .testimonial-card::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 80px;
      color: var(--green-light);
      position: absolute;
      top: -10px; left: 20px;
      line-height: 1;
      opacity: 0.4;
    }

    .stars {
      color: #F59E0B;
      font-size: 18px;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }

    .testimonial-card blockquote {
      font-size: 16px;
      color: var(--text);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 18px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .author-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--green));
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
    }

    .author-info strong { display: block; font-size: 15px; color: var(--dark); }
    .author-info span   { font-size: 13px; color: var(--text-light); }

    .testimonial-img {
      border-radius: 14px;
      overflow: hidden;
      margin: 20px 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .testimonial-img img { width: 100%; border-radius: 14px; }

    /* ============================================
       OFFER / CTA BOX
    ============================================ */
    .offer-section {
      background: linear-gradient(135deg, #0D47A1 0%, #1565C0 40%, #1B5E20 70%, #2E7D32 100%);
      position: relative;
      overflow: hidden;
      padding: 70px 20px;
    }

    .offer-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 70% at 0% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 50%, rgba(102,187,106,0.1) 0%, transparent 60%);
      pointer-events: none;
    }

    .offer-box {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      padding: 48px 40px;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .offer-badge {
      display: inline-block;
      background: var(--red-badge);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 50px;
      margin-bottom: 20px;
      animation: pulse-badge 2s infinite;
    }

    @keyframes pulse-badge {
      0%, 100% { box-shadow: 0 0 0 0 rgba(229,57,53,0.4); }
      50%       { box-shadow: 0 0 0 12px rgba(229,57,53,0); }
    }

    .offer-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .offer-discount {
      font-family: 'Playfair Display', serif;
      font-size: clamp(56px, 10vw, 96px);
      font-weight: 800;
      background: linear-gradient(135deg, #a5f3a8, #66BB6A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin: 8px 0 20px;
    }

    .offer-perks {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 32px;
    }

    .offer-perk {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 14px;
      font-weight: 500;
      display: flex; align-items: center; gap: 6px;
    }

    .offer-perk span { color: var(--green-light); font-size: 16px; }

    /* ============================================
       CTA BUTTON
    ============================================ */
    .btn-cta {
      display: block;
      width: 100%;
      max-width: 540px;
      margin: 0 auto 14px;
      padding: 20px 32px;
      background: var(--gradient-btn);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 18px;
      font-weight: 700;
      border: none;
      border-radius: 60px;
      cursor: pointer;
      text-align: center;
      box-shadow: 0 8px 32px rgba(46,125,50,0.45), 0 2px 8px rgba(0,0,0,0.15);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      letter-spacing: 0.3px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .btn-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 60%);
      border-radius: 60px;
    }

    .btn-cta:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 16px 48px rgba(46,125,50,0.55);
    }

    .btn-cta.blue {
      background: var(--gradient-blue);
      box-shadow: 0 8px 32px rgba(21,101,192,0.4);
    }

    .btn-cta.blue:hover { box-shadow: 0 16px 48px rgba(21,101,192,0.55); }

    .btn-cta-sub {
      color: rgba(255,255,255,0.7);
      font-size: 13px;
      text-align: center;
      margin-top: 10px;
    }

    /* ============================================
       URGENCY / ALERT BOX
    ============================================ */
    .urgency-box {
      background: linear-gradient(135deg, #fff3e0, #fff8e1);
      border: 2px solid #F59E0B;
      border-radius: 18px;
      padding: 28px 32px;
      margin: 40px 0;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      box-shadow: 0 4px 20px rgba(245,158,11,0.15);
    }

    .urgency-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }

    .urgency-box h4 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: #92400e;
      margin-bottom: 6px;
    }

    .urgency-box p { font-size: 15px; color: #78350f; line-height: 1.6; margin: 0; }

    /* ============================================
       HOW TO GET SECTION
    ============================================ */
    .steps-list {
      counter-reset: steps;
      margin-top: 32px;
    }

    .step-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 24px;
      background: #fff;
      border-radius: 16px;
      padding: 24px 26px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      border: 1px solid var(--border);
    }

    .step-num {
      flex-shrink: 0;
      width: 52px; height: 52px;
      border-radius: 50%;
      background: var(--gradient-blue);
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px var(--shadow-blue);
    }

    .step-content h4 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--blue-dark);
      margin-bottom: 6px;
    }

    .step-content p { font-size: 15px; color: var(--text-light); margin: 0; line-height: 1.6; }

    /* ============================================
       FOOTER
    ============================================ */
    .site-footer {
      background: var(--dark);
      color: rgba(255,255,255,0.6);
      padding: 48px 24px 32px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 24px;
      justify-content: center;
      margin-bottom: 36px;
    }

    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--green-light); }

    .footer-divider {
      width: 100%; height: 1px;
      background: rgba(255,255,255,0.08);
      margin: 24px 0;
    }

    .footer-disclaimer {
      font-size: 12.5px;
      line-height: 1.7;
      text-align: center;
      color: rgba(255,255,255,0.45);
      max-width: 820px;
      margin: 0 auto;
    }

    .footer-disclaimer strong { color: rgba(255,255,255,0.7); }

    .footer-disclaimer p { margin-bottom: 12px; }

    .footer-copyright {
      text-align: center;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .footer-copyright a { color: var(--green-light); }

    /* ============================================
       FLOATING BADGE / TRUST ICONS
    ============================================ */
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin: 28px 0;
    }

    .trust-item {
      background: #fff;
      border-radius: 12px;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--blue-dark);
      box-shadow: 0 3px 14px rgba(0,0,0,0.07);
      border: 1px solid var(--border);
    }

    .trust-item .t-icon { font-size: 22px; }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 768px) {
      .page-section { padding: 44px 16px; }
      .offer-box { padding: 32px 20px; }
      .lead-box { padding: 22px 20px; }
      .timeline::before { left: 26px; }
      .timeline-dot { width: 52px; height: 52px; }
      .timeline-dot .num { font-size: 18px; }
      .therapy-grid { grid-template-columns: 1fr; }
      .step-item { flex-direction: column; gap: 14px; }
      .urgency-box { flex-direction: column; gap: 12px; }
      .trust-row { gap: 10px; }
      .trust-item { font-size: 13px; padding: 10px 14px; }
      .footer-links { gap: 6px 14px; }
    }

    @media (max-width: 480px) {
      .hero-section { padding: 48px 16px 56px; }
      .hero-badge { font-size: 11px; padding: 6px 16px; }
      .btn-cta { font-size: 16px; padding: 18px 24px; }
      .timeline-item { gap: 14px; }
      .testimonial-card { padding: 24px 20px; }
      .offer-perks { flex-direction: column; align-items: center; }
    }

    /* ============================================
       UTILITY
    ============================================ */
    .mt-0 { margin-top: 0 !important; }
    .mb-0 { margin-bottom: 0 !important; }
    .text-center { text-align: center; }
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); border: 0;
    }
