
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --green: #2e7d32;
      --green-light: #43a047;
      --green-bright: #4caf50;
      --gold: #c8a84b;
      --gold-light: #e8c96a;
      --dark: #1a1a1a;
      --dark2: #2a2a2a;
      --cream: #faf8f3;
      --warm: #f5f0e8;
      --red: #b71c1c;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      background: var(--cream);
      color: var(--dark);
      width: 100%;
      overflow-x: hidden;
    }

    /* ─── LAYOUT ─── */
    .full-w {
      width: 100%;
    }

    .page-wrap {
      width: 100%;
      max-width: 980px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .narrow {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
    }

    /* ─── BARS ─── */
    .advertorial-bar {
      background: var(--dark);
      color: #888;
      text-align: center;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 8px 16px;
      border-bottom: 1px solid #333;
      width: 100%;
    }

    .logo-bar {
      background: #fff;
      border-bottom: 3px solid var(--green);
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
      width: 100%;
    }

    .logo-wordmark {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 4vw, 30px);
      font-weight: 900;
      color: var(--dark);
      letter-spacing: -0.5px;
      line-height: 1;
    }

    .logo-wordmark .g {
      color: var(--green);
    }

    .logo-wordmark .gold {
      color: var(--gold);
    }

    .logo-domain {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 700;
      text-align: center;
      display: block;
      margin-top: 3px;
    }

    .urgency-bar {
      background: #b71c1c;
      color: #fff;
      text-align: center;
      padding: 11px 20px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.3px;
      width: 100%;
    }

    .urgency-bar span {
      color: #ffcdd2;
    }

    /* ─── HERO ─── */
    .hero {
      background: linear-gradient(160deg, #111 0%, #1e2a1e 40%, #1a1a1a 100%);
      padding: 52px 24px 44px;
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 50%;
      background: radial-gradient(ellipse at 80% 40%, rgba(46, 125, 50, 0.18) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 5vw, 54px);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 22px;
      max-width: 820px;
    }

    .hero-h1 em {
      color: var(--green-bright);
      font-style: normal;
    }

    .hero-lead {
      font-family: 'Source Serif 4', serif;
      font-size: clamp(15px, 2.5vw, 18px);
      color: #ccc;
      line-height: 1.75;
      margin-bottom: 30px;
      max-width: 680px;
    }

    .byline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 50px;
      padding: 9px 18px;
      margin-bottom: 32px;
    }

    .byline-dot {
      width: 8px;
      height: 8px;
      background: var(--green-bright);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .byline-txt {
      font-size: 12.5px;
      color: #ccc;
    }

    .byline-txt strong {
      color: #fff;
    }

    /* ─── CTA BUTTON ─── */
    .cta-btn {
      display: block;
      width: 100%;
      max-width: 640px;
      background: linear-gradient(135deg, #1b5e20 0%, var(--green) 30%, var(--green-light) 65%, var(--green) 100%);
      color: #fff;
      font-size: clamp(15px, 2.5vw, 19px);
      font-weight: 700;
      text-align: center;
      padding: 20px 28px;
      border-radius: 6px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 6px 28px rgba(46, 125, 50, 0.45);
      position: relative;
      overflow: hidden;
      line-height: 1.3;
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 55%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
      transition: left 0.55s ease;
    }

    .cta-btn:hover::before {
      left: 160%;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(46, 125, 50, 0.6);
    }

    .cta-sub {
      font-size: 12px;
      margin-top: 6px;
      opacity: 0.82;
      font-weight: 400;
    }

    .cta-gold {
      background: linear-gradient(135deg, #8d6e18 0%, var(--gold) 40%, var(--gold-light) 65%, var(--gold) 100%);
      color: var(--dark);
      box-shadow: 0 6px 28px rgba(200, 168, 75, 0.45);
    }

    .cta-gold:hover {
      box-shadow: 0 10px 36px rgba(200, 168, 75, 0.6);
    }

    /* ─── STOCK BAR ─── */
    .stock-wrap {
      margin-top: 18px;
      max-width: 640px;
    }

    .stock-label {
      font-size: 13px;
      color: #ef9a9a;
      font-weight: 700;
      margin-bottom: 7px;
    }

    .stock-track {
      height: 9px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 5px;
      overflow: hidden;
    }

    .stock-fill {
      height: 100%;
      width: 23%;
      background: linear-gradient(90deg, #c62828, #ef5350);
      border-radius: 5px;
    }

    .hero {
      text-align: center;
    }

    .hero .page-wrap {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-h1,
    .hero-lead {
      margin-left: auto;
      margin-right: auto;
    }

    .byline {
      margin-left: auto;
      margin-right: auto;
    }

    .cta-btn,
    .stock-wrap {
      margin-left: auto;
      margin-right: auto;
    }

    .stock-label {
      text-align: center;
    }

    /* ─── DISCOUNT BADGE ─── */
    .disc-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--gold);
      color: var(--dark);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 4px;
      margin-bottom: 18px;
    }

    /* ─── CONTENT ─── */
    .section-block {
      padding: 44px 0 40px;
      border-bottom: 1px solid #e4dfd5;
    }

    .section-block:last-child {
      border-bottom: none;
    }

    .section-label {
      display: block;
      font-size: 11px;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 700;
      margin-bottom: 12px;
    }

    .section-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 4vw, 34px);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.25;
      margin-bottom: 22px;
    }

    .section-h2 .accent {
      color: var(--green);
    }

    .section-h2.light {
      color: #fff;
    }

    .section-h2.light .accent {
      color: var(--green-bright);
    }

    .body-p {
      font-family: 'Source Serif 4', serif;
      font-size: clamp(15px, 2.2vw, 17px);
      line-height: 1.82;
      color: #2d2d2d;
      margin-bottom: 18px;
    }

    .body-p strong {
      color: var(--dark);
      font-family: 'DM Sans', sans-serif;
    }

    .body-p em {
      font-style: italic;
      color: #444;
    }

    .body-p.light {
      color: #bbb;
    }

    .body-p.light strong {
      color: #fff;
    }

    /* ─── IMAGES ─── */
    .img-wrap {
      width: 100%;
      border-radius: 10px;
      overflow: hidden;
      margin: 30px 0;
      box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
      display: block;
      line-height: 0;
    }

    .img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .img-caption {
      text-align: center;
      font-size: 12px;
      color: #999;
      margin-top: -14px;
      margin-bottom: 16px;
      font-style: italic;
    }

    /* ─── PULL QUOTE ─── */
    .pull-quote {
      border-left: 5px solid var(--green);
      background: #f0f7f0;
      padding: 22px 26px;
      margin: 30px 0;
      border-radius: 0 8px 8px 0;
    }

    .pull-quote p {
      font-family: 'Playfair Display', serif;
      font-size: clamp(17px, 2.8vw, 21px);
      font-style: italic;
      color: var(--dark);
      line-height: 1.65;
    }

    .pull-quote cite {
      display: block;
      margin-top: 12px;
      font-size: 13px;
      color: #555;
      font-style: normal;
      font-weight: 600;
    }

    /* ─── WARNING ─── */
    .warning-box {
      background: #fff8e1;
      border: 1px solid #f9a825;
      border-left: 5px solid #f9a825;
      border-radius: 0 8px 8px 0;
      padding: 20px 24px;
      margin: 26px 0;
    }

    .warning-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #e65100;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .warning-box p {
      font-size: 15px;
      color: #4a3200;
      line-height: 1.7;
    }

    /* ─── FEATURES ─── */
    .feature-card {
      background: #fff;
      border: 1px solid #ddd8ce;
      border-radius: 10px;
      padding: 22px 24px;
      margin-bottom: 16px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .feat-icon {
      width: 48px;
      height: 48px;
      background: #e8f5e9;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }

    .feat-title {
      font-weight: 700;
      font-size: 15px;
      color: var(--dark);
      margin-bottom: 5px;
    }

    .feat-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    /* ─── TIMELINE ─── */
    .timeline-item {
      display: flex;
      gap: 18px;
      margin-bottom: 26px;
      align-items: flex-start;
    }

    .t-marker {
      background: var(--green);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.5px;
      padding: 6px 12px;
      border-radius: 5px;
      white-space: nowrap;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .t-text {
      font-family: 'Source Serif 4', serif;
      font-size: 15.5px;
      line-height: 1.75;
      color: #333;
      font-style: italic;
    }

    /* ─── TESTIMONIALS ─── */
    .testi-bg {
      background: #f0f7f0;
      padding: 52px 0;
      width: 100%;
    }

    .testi-card {
      background: #fff;
      border: 1px solid #ddd8ce;
      border-radius: 12px;
      padding: 28px 26px;
      margin-bottom: 28px;
      box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
    }

    .testi-stars {
      color: #f9a825;
      font-size: 20px;
      margin-bottom: 14px;
      letter-spacing: 3px;
    }

    .testi-text {
      font-family: 'Source Serif 4', serif;
      font-size: 16px;
      line-height: 1.8;
      color: #333;
      font-style: italic;
      margin-bottom: 16px;
    }

    .testi-author {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
    }

    .testi-verified {
      font-size: 11.5px;
      color: var(--green);
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-top: 3px;
    }

    /* ─── OFFER BOX ─── */
    .offer-section {
      background: var(--warm);
      padding: 52px 0;
      width: 100%;
    }

    .offer-box {
      background: linear-gradient(150deg, #111 0%, #1e2a1e 50%, #111 100%);
      border-radius: 14px;
      padding: 40px 36px;
      margin: 0 0 32px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(76, 175, 80, 0.25);
    }

    .offer-box::before {
      content: '';
      position: absolute;
      top: -40%;
      left: -10%;
      width: 50%;
      height: 180%;
      background: radial-gradient(ellipse, rgba(46, 125, 50, 0.22) 0%, transparent 65%);
      pointer-events: none;
    }

    .offer-h {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 3.5vw, 32px);
      font-weight: 900;
      color: #fff;
      margin-bottom: 6px;
    }

    .offer-sub {
      color: #999;
      font-size: 14px;
      margin-bottom: 24px;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .price-was {
      font-size: 22px;
      color: #666;
      text-decoration: line-through;
    }

    .price-now {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 6vw, 54px);
      font-weight: 900;
      color: var(--green-bright);
      line-height: 1;
    }

    .price-lbl {
      font-size: 14px;
      color: #aaa;
    }

    .offer-list {
      list-style: none;
      margin-bottom: 30px;
    }

    .offer-list li {
      color: #ccc;
      font-size: 15px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .offer-list li:last-child {
      border-bottom: none;
    }

    .offer-list li::before {
      content: '✅';
      font-size: 16px;
      flex-shrink: 0;
    }

    .stock-wrap-dark {
      margin-top: 20px;
    }

    .stock-label-r {
      font-size: 13px;
      color: #ef9a9a;
      font-weight: 700;
      margin-bottom: 7px;
    }

    .stock-track-d {
      height: 9px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      overflow: hidden;
    }

    .stock-fill-d {
      height: 100%;
      width: 23%;
      background: linear-gradient(90deg, #c62828, #ef5350);
      border-radius: 5px;
    }

    /* ─── CLOSING DARK ─── */
    .closing-dark {
      background: var(--dark);
      padding: 52px 0;
      width: 100%;
    }

    .update-box {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 22px 26px;
      margin: 28px 0;
    }

    .update-box p {
      color: #aaa;
      font-size: 14px;
      line-height: 1.75;
    }

    .update-box strong {
      color: #fff;
    }

    /* ─── FOOTER ─── */
    footer {
      background: #0d0d0d;
      color: #555;
      padding: 36px 24px;
      width: 100%;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      margin-bottom: 28px;
    }

    .footer-links a {
      color: #777;
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--green-bright);
    }

    .footer-disc {
      font-size: 11.5px;
      line-height: 1.75;
      max-width: 720px;
      margin: 0 auto 14px;
      color: #444;
      text-align: center;
    }

    .footer-copy {
      font-size: 12px;
      color: #333;
      text-align: center;
      margin-top: 20px;
    }

    /* ─── STICKY MOBILE CTA ─── */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--dark);
      border-top: 2px solid var(--green);
      padding: 12px 16px;
      z-index: 300;
      display: none;
    }

    @media (max-width: 768px) {
      .sticky-cta {
        display: block;
      }
    }

    /* ─── FANCY DIVIDER ─── */
    .divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 34px 0;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
    }

    .divider::before {
      background: linear-gradient(90deg, transparent, #ccc8be);
    }

    .divider::after {
      background: linear-gradient(90deg, #ccc8be, transparent);
    }

    .divider-icon {
      color: var(--gold);
      font-size: 17px;
    }

    /* Pulse */
    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .88
      }
    }

    .pulse {
      animation: pulse 2.5s ease-in-out infinite;
    }

    /* Highlight */
    .hl {
      background: linear-gradient(120deg, rgba(76, 175, 80, .22) 0%, rgba(76, 175, 80, .1) 100%);
      padding: 1px 5px;
      border-radius: 3px;
    }

    @media(max-width:600px) {
      .offer-box {
        padding: 28px 20px;
      }

      .feature-card {
        flex-direction: column;
      }
    }

    .logo-bar img {
      width: 300px !important;
    }
