@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

    * { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:       #0b1209;
      --bg2:      #0f1a0d;
      --card:     #131f10;
      --card2:    #172014;
      --border:   #1e3019;
      --border2:  #253d1f;
      --cream:    #f0ede0;
      --cream2:   #d4cebc;
      --muted:    #7a8a72;
      --muted2:   #4a5a42;
      --gold:     #c8a96e;
      --gold2:    #e0c288;
      --teal:     #4a9e8a;
      --white:    #ffffff;
      --serif:    'DM Serif Display', Georgia, serif;
      --sans:     'Inter', -apple-system, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--cream);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 48px;
      background: rgba(11,18,9,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: var(--serif);
      font-size: 20px;
      color: var(--cream);
      letter-spacing: 0.3px;
    }

    .logo em { color: var(--gold); font-style: normal; }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--cream); }

    .nav-cta {
      background: var(--gold);
      color: var(--bg) !important;
      padding: 10px 22px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: background 0.2s;
    }

    .nav-cta:hover { background: var(--gold2) !important; color: var(--bg) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 420px;
      padding-top: 80px;
      border-bottom: 1px solid var(--border);
    }

    .hero-left {
      padding: 80px 60px 80px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid var(--border);
    }

    .hero-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }

    .hero-h1 {
      font-family: var(--serif);
      font-size: clamp(48px, 6vw, 80px);
      line-height: 1.05;
      color: var(--cream);
      margin-bottom: 32px;
      letter-spacing: -0.5px;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 16px;
      color: var(--muted);
      max-width: 480px;
      line-height: 1.8;
      margin-bottom: 48px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--bg);
      padding: 15px 32px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--gold2);
      transform: translateY(-1px);
    }

    .btn-ghost {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      border-bottom: 1px solid var(--muted2);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-ghost:hover { color: var(--cream); border-color: var(--cream2); }

    /* HERO RIGHT PANEL */
    .hero-right {
      display: flex;
      flex-direction: column;
      background: var(--card);
    }

    .hero-panel-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted2);
      padding: 24px 28px 16px;
      border-bottom: 1px solid var(--border);
    }

    .hero-stat-list {
      list-style: none;
      flex: 1;
    }

    .hero-stat-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 28px;
      border-bottom: 1px solid var(--border);
      transition: background 0.15s;
    }

    .hero-stat-item:hover { background: var(--card2); }

    .hero-stat-label {
      font-size: 13px;
      color: var(--muted);
    }

    .hero-stat-value {
      font-family: var(--serif);
      font-size: 18px;
      color: var(--cream);
    }

    .hero-stat-value.gold { color: var(--gold); }

    .hero-audit-box {
      margin: 24px 28px;
      padding: 20px;
      border: 1px solid var(--border2);
      border-radius: 8px;
      background: var(--bg2);
    }

    .audit-score-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .audit-score-label { font-size: 12px; color: var(--muted); }

    .audit-score-grade {
      font-family: var(--serif);
      font-size: 32px;
      color: var(--gold);
    }

    .audit-bar-wrap {
      height: 4px;
      background: var(--border);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 8px;
    }

    .audit-bar {
      height: 100%;
      width: 38%;
      background: var(--gold);
      border-radius: 10px;
    }

    .audit-bar-note {
      font-size: 11px;
      color: var(--muted2);
    }

    .audit-items { margin-top: 16px; }

    .audit-item {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      padding: 6px 0;
      border-bottom: 1px solid var(--border);
      color: var(--muted);
    }

    .audit-item:last-child { border-bottom: none; }
    .audit-item .miss { color: #b45050; }
    .audit-item .hit  { color: var(--teal); }

    /* ── STATS BAR ── */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 1px solid var(--border);
    }

    .stat-cell {
      padding: 40px 48px;
      border-right: 1px solid var(--border);
    }

    .stat-cell:last-child { border-right: none; }

    .stat-num {
      font-family: var(--serif);
      font-size: 44px;
      color: var(--cream);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-num em { color: var(--gold); font-style: normal; }

    .stat-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── VIDEO ── */
    .video-section {
      padding: 80px 48px;
      border-bottom: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .video-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .video-heading {
      font-family: var(--serif);
      font-size: clamp(28px, 3.5vw, 44px);
      color: var(--cream);
      text-align: center;
      margin-bottom: 48px;
      letter-spacing: -0.3px;
    }

    .video-wrap {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      aspect-ratio: 16 / 9;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border2);
      background: #000;
    }

    .video-wrap iframe {
      width: 100%;
      height: 100%;
      display: block;
    }

    @media (max-width: 640px) {
      .video-section { padding: 48px 24px; }
    }

    /* ── PROBLEM ── */
    .problem {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid var(--border);
    }

    .problem-left {
      padding: 80px 60px 80px 48px;
      border-right: 1px solid var(--border);
    }

    .problem-left .section-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: block;
    }

    .problem-left h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 50px);
      color: var(--cream);
      line-height: 1.1;
      letter-spacing: -0.3px;
    }

    .problem-right {
      padding: 80px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .problem-right p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 24px;
    }

    .problem-right p:last-child { margin-bottom: 0; }

    /* ── HOW IT WORKS ── */
    .how {
      padding: 80px 48px;
      border-bottom: 1px solid var(--border);
    }

    .how-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
    }

    .how-header h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 50px);
      color: var(--cream);
      letter-spacing: -0.3px;
    }

    .how-header p {
      font-size: 13px;
      color: var(--muted);
      max-width: 260px;
      text-align: right;
      line-height: 1.6;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .step {
      padding: 36px 32px;
      border-right: 1px solid var(--border);
      border-top: 1px solid var(--border);
    }

    .step:last-child { border-right: none; }

    .step-num {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--muted2);
      margin-bottom: 20px;
    }

    .step h3 {
      font-family: var(--serif);
      font-size: 22px;
      color: var(--cream);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .step p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ── PRICING ── */
    .pricing {
      border-bottom: 1px solid var(--border);
    }

    .pricing-header {
      padding: 72px 48px 48px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .pricing-header h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 50px);
      color: var(--cream);
      letter-spacing: -0.3px;
    }

    .pricing-header p {
      font-size: 13px;
      color: var(--muted);
      max-width: 280px;
      text-align: right;
      line-height: 1.6;
    }

    .tiers {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .tier {
      padding: 48px 40px;
      border-right: 1px solid var(--border);
      position: relative;
      transition: background 0.2s;
      display: flex;
      flex-direction: column;
    }

    .tier:last-child { border-right: none; }

    .tier:hover { background: var(--card); }

    .tier.featured {
      background: var(--card);
      border-top: 2px solid var(--gold);
    }

    .tier-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted2);
      margin-bottom: 20px;
    }

    .tier.featured .tier-tag { color: var(--gold); }

    .tier-price {
      font-family: var(--serif);
      font-size: 52px;
      color: var(--cream);
      line-height: 1;
      margin-bottom: 4px;
      letter-spacing: -1px;
    }

    .tier-price sup {
      font-family: var(--sans);
      font-size: 20px;
      font-weight: 300;
      vertical-align: top;
      margin-top: 12px;
      display: inline-block;
    }

    .tier-per {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .tier-min {
      font-size: 12px;
      color: var(--muted2);
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }

    .tier-outcome {
      font-size: 14px;
      color: var(--cream2);
      line-height: 1.6;
      margin-bottom: 28px;
      font-style: italic;
      font-family: var(--serif);
    }

    .features {
      list-style: none;
      margin-bottom: 36px;
      flex: 1;
    }

    .features li {
      font-size: 13px;
      color: var(--muted);
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }

    .features li:last-child { border-bottom: none; }

    .check { color: var(--teal); flex-shrink: 0; }

    .tier-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 13px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: all 0.2s;
    }

    .tier-btn.outline {
      border: 1px solid var(--border2);
      color: var(--cream2);
    }

    .tier-btn.outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .tier-btn.solid {
      background: var(--gold);
      color: var(--bg);
    }

    .tier-btn.solid:hover { background: var(--gold2); }

    /* ── TESTIMONIALS ── */
    .testimonials {
      border-bottom: 1px solid var(--border);
    }

    .testimonials-header {
      padding: 72px 48px 48px;
      border-bottom: 1px solid var(--border);
    }

    .testimonials-header .section-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }

    .testimonials-header h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 50px);
      color: var(--cream);
      letter-spacing: -0.3px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-card {
      padding: 48px 40px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .testimonial-card:last-child { border-right: none; }

    .testimonial-score {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .t-score-before {
      font-family: var(--serif);
      font-size: 32px;
      color: var(--muted2);
      line-height: 1;
    }

    .t-score-arrow {
      font-size: 16px;
      color: var(--muted2);
    }

    .t-score-after {
      font-family: var(--serif);
      font-size: 32px;
      color: var(--teal);
      line-height: 1;
    }

    .t-score-label {
      font-size: 11px;
      color: var(--muted2);
      letter-spacing: 0.3px;
      width: 100%;
    }

    .testimonial-quote {
      font-size: 15px;
      color: var(--cream2);
      line-height: 1.8;
      font-style: italic;
      flex: 1;
      quotes: none;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--card2);
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      flex-shrink: 0;
      letter-spacing: 0.5px;
    }

    .t-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 3px;
    }

    .t-role {
      font-size: 11px;
      color: var(--muted2);
      line-height: 1.4;
    }

    @media (max-width: 1024px) {
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonial-card { border-right: none; border-bottom: 1px solid var(--border); }
      .testimonial-card:last-child { border-bottom: none; }
    }

    @media (max-width: 640px) {
      .testimonials-header { padding: 48px 24px 32px; }
      .testimonial-card { padding: 40px 24px; }
    }

    /* ── NICHES ── */
    .niches {
      padding: 72px 48px;
      border-bottom: 1px solid var(--border);
    }

    .niches-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
    }

    .niches h2 {
      font-family: var(--serif);
      font-size: clamp(24px, 3vw, 38px);
      color: var(--cream);
      letter-spacing: -0.3px;
    }

    .niche-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .niche-tag {
      border: 1px solid var(--border2);
      color: var(--muted);
      padding: 9px 18px;
      border-radius: 2px;
      font-size: 13px;
      letter-spacing: 0.2px;
      transition: all 0.2s;
      cursor: default;
    }

    .niche-tag:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ── CTA ── */
    .cta-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid var(--border);
    }

    .cta-left {
      padding: 80px 60px 80px 48px;
      border-right: 1px solid var(--border);
    }

    .cta-left .section-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: block;
    }

    .cta-left h2 {
      font-family: var(--serif);
      font-size: clamp(30px, 4vw, 48px);
      color: var(--cream);
      line-height: 1.1;
      letter-spacing: -0.3px;
      margin-bottom: 20px;
    }

    .cta-left p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .cta-note {
      font-size: 12px;
      color: var(--muted2);
      margin-top: 14px;
    }

    .cta-right {
      padding: 80px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }

    .cta-feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }

    .cta-feature:last-child { border-bottom: none; }

    .cta-feature-icon {
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .cta-feature-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .cta-feature-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── CONTACT FORM ── */
    .contact-section {
      display: grid;
      grid-template-columns: 400px 1fr;
      border-bottom: 1px solid var(--border);
    }

    .contact-left {
      padding: 80px 48px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .contact-left .section-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
    }

    .contact-left h2 {
      font-family: var(--serif);
      font-size: clamp(30px, 3.5vw, 46px);
      color: var(--cream);
      line-height: 1.1;
      letter-spacing: -0.3px;
      margin-bottom: 16px;
    }

    .contact-left > p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .contact-options {
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1;
    }

    .contact-option {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }

    .contact-option:first-child { border-top: 1px solid var(--border); }

    .contact-option-icon {
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--muted2);
    }

    .contact-option-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .contact-option-desc {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
    }

    .contact-cal-link {
      display: inline-block;
      margin-top: 28px;
      font-size: 13px;
      color: var(--teal);
      text-decoration: none;
      border-bottom: 1px solid rgba(74,158,138,0.3);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .contact-cal-link:hover { color: var(--gold); border-color: rgba(200,169,110,0.3); }

    .contact-right {
      padding: 64px 56px;
      display: flex;
      align-items: flex-start;
    }

    .contact-form {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--cream2);
      letter-spacing: 0.2px;
    }

    .form-required { color: var(--gold); }

    .form-input {
      background: var(--card);
      border: 1px solid var(--border2);
      color: var(--cream);
      padding: 13px 16px;
      border-radius: 4px;
      font-size: 14px;
      font-family: var(--sans);
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      width: 100%;
    }

    .form-input::placeholder { color: var(--muted2); }
    .form-input:focus { border-color: var(--gold); background: var(--card2); }

    .form-textarea {
      resize: vertical;
      min-height: 110px;
      line-height: 1.6;
    }

    .form-radio-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .form-radio {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      font-size: 13px;
      color: var(--muted);
      padding: 9px 14px;
      border: 1px solid var(--border2);
      border-radius: 4px;
      transition: all 0.15s;
      user-select: none;
    }

    .form-radio input[type="radio"] { display: none; }

    .radio-box {
      width: 14px;
      height: 14px;
      border: 1px solid var(--border2);
      border-radius: 50%;
      flex-shrink: 0;
      transition: all 0.15s;
      position: relative;
    }

    .form-radio input[type="radio"]:checked ~ .radio-box,
    .form-radio:has(input[type="radio"]:checked) .radio-box {
      border-color: var(--gold);
      background: var(--gold);
    }

    .form-radio:has(input[type="radio"]:checked) {
      border-color: var(--gold);
      color: var(--cream);
      background: rgba(200,169,110,0.06);
    }

    .form-submit {
      background: var(--gold);
      color: var(--bg);
      border: none;
      padding: 15px 36px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 700;
      font-family: var(--sans);
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.15s;
      align-self: flex-start;
    }

    .form-submit:hover { background: var(--gold2); transform: translateY(-1px); }
    .form-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

    .form-note {
      font-size: 12px;
      color: var(--muted2);
      margin-top: -12px;
    }

    .form-success {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 40px;
      text-align: center;
      gap: 16px;
      border: 1px solid var(--border2);
      border-radius: 8px;
      background: var(--card);
    }

    .form-success-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(74,158,138,0.12);
      border: 1px solid rgba(74,158,138,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--teal);
    }

    .form-success-title {
      font-family: var(--serif);
      font-size: 24px;
      color: var(--cream);
    }

    .form-success-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      max-width: 360px;
    }

    @media (max-width: 1024px) {
      .contact-section { grid-template-columns: 1fr; }
      .contact-left { border-right: none; border-bottom: 1px solid var(--border); }
    }

    @media (max-width: 640px) {
      .contact-left { padding: 48px 24px; }
      .contact-right { padding: 48px 24px; }
      .form-row { grid-template-columns: 1fr; }
      .form-radio-group { flex-direction: column; }
      .form-radio { width: 100%; }
    }

    /* ── BLOG ── */
    .blog-section {
      border-bottom: 1px solid var(--border);
    }

    .blog-header {
      padding: 72px 48px 48px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .blog-header h2 {
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 50px);
      color: var(--cream);
      letter-spacing: -0.3px;
    }

    .blog-header a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      border-bottom: 1px solid var(--muted2);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .blog-header a:hover { color: var(--cream); border-color: var(--cream2); }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .blog-card {
      padding: 40px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: background 0.2s;
    }

    .blog-card:nth-child(3n) { border-right: none; }
    .blog-card:nth-child(n+4) { border-top: 1px solid var(--border); }
    .blog-card:hover { background: var(--card); }

    .blog-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .blog-card h3 {
      font-family: var(--serif);
      font-size: 22px;
      color: var(--cream);
      line-height: 1.25;
      letter-spacing: -0.2px;
    }

    .blog-excerpt {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.8;
      flex: 1;
    }

    .blog-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      font-size: 11px;
      color: var(--muted2);
    }

    .blog-read {
      font-size: 12px;
      color: var(--teal);
      text-decoration: none;
      font-weight: 500;
      letter-spacing: 0.2px;
      transition: color 0.2s;
    }

    .blog-read:hover { color: var(--gold); }

    /* ── FAQ ── */
    .faq-section {
      display: grid;
      grid-template-columns: 340px 1fr;
      border-bottom: 1px solid var(--border);
    }

    .faq-left {
      padding: 80px 48px;
      border-right: 1px solid var(--border);
    }

    .faq-left .section-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: block;
    }

    .faq-left h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 42px);
      color: var(--cream);
      line-height: 1.1;
      letter-spacing: -0.3px;
      margin-bottom: 20px;
    }

    .faq-left p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
    }

    .faq-right {
      padding: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      cursor: pointer;
    }

    .faq-item:last-child { border-bottom: none; }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 28px 48px;
      font-size: 15px;
      color: var(--cream);
      font-weight: 500;
      gap: 24px;
      transition: color 0.2s;
    }

    .faq-question:hover { color: var(--gold); }

    .faq-question .faq-icon {
      width: 20px;
      height: 20px;
      border: 1px solid var(--border2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
      color: var(--muted2);
      transition: all 0.2s;
      line-height: 1;
    }

    .faq-item.open .faq-question { color: var(--gold); }
    .faq-item.open .faq-icon { background: var(--gold-bg); border-color: var(--gold); color: var(--gold); }

    .faq-answer {
      display: none;
      padding: 0 48px 28px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.9;
      max-width: 620px;
    }

    .faq-item.open .faq-answer { display: block; }

    /* ── SUBSCRIBE ── */
    .subscribe-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid var(--border);
    }

    .subscribe-left {
      padding: 80px 60px 80px 48px;
      border-right: 1px solid var(--border);
    }

    .subscribe-left .section-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: block;
    }

    .subscribe-left h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 44px);
      color: var(--cream);
      line-height: 1.1;
      letter-spacing: -0.3px;
      margin-bottom: 16px;
    }

    .subscribe-left p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 36px;
      max-width: 440px;
    }

    .subscribe-form {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .subscribe-input {
      flex: 1;
      min-width: 220px;
      background: var(--card);
      border: 1px solid var(--border2);
      color: var(--cream);
      padding: 14px 18px;
      border-radius: 4px;
      font-size: 14px;
      font-family: var(--sans);
      outline: none;
      transition: border-color 0.2s;
    }

    .subscribe-input::placeholder { color: var(--muted2); }
    .subscribe-input:focus { border-color: var(--gold); }

    .subscribe-btn {
      background: var(--gold);
      color: var(--bg);
      border: none;
      padding: 14px 28px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 700;
      font-family: var(--sans);
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .subscribe-btn:hover { background: var(--gold2); }

    .subscribe-note {
      font-size: 11px;
      color: var(--muted2);
      margin-top: 12px;
    }

    .subscribe-right {
      padding: 80px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
    }

    .subscribe-proof-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
    }

    .subscribe-proof-item:first-child { padding-top: 0; }
    .subscribe-proof-item:last-child { border-bottom: none; padding-bottom: 0; }

    .proof-num {
      font-family: var(--serif);
      font-size: 32px;
      color: var(--gold);
      line-height: 1;
      flex-shrink: 0;
      width: 72px;
    }

    .proof-body-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .proof-body-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── FOOTER ── */
    footer {
      padding: 32px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--muted2);
      flex-wrap: wrap;
      gap: 12px;
    }

    footer a {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    footer a:hover { color: var(--cream); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .problem { grid-template-columns: 1fr; }
      .problem-left { border-right: none; border-bottom: 1px solid var(--border); }
      .cta-section { grid-template-columns: 1fr; }
      .cta-left { border-right: none; border-bottom: 1px solid var(--border); }
      .tiers { grid-template-columns: 1fr; }
      .tier { border-right: none; border-bottom: 1px solid var(--border); }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .stats-bar { grid-template-columns: 1fr; }
      .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
      .blog-grid { grid-template-columns: 1fr; }
      .blog-card { border-right: none; border-bottom: 1px solid var(--border); }
      .faq-section { grid-template-columns: 1fr; }
      .faq-left { border-right: none; border-bottom: 1px solid var(--border); }
      .subscribe-section { grid-template-columns: 1fr; }
      .subscribe-left { border-right: none; border-bottom: 1px solid var(--border); }
    }

    @media (max-width: 640px) {
      nav { padding: 18px 24px; }
      .nav-links { display: none; }
      .hero-left { padding: 60px 24px; }
      .how { padding: 60px 24px; }
      .how-header { flex-direction: column; align-items: flex-start; gap: 12px; }
      .how-header p { text-align: left; max-width: 100%; }
      .steps { grid-template-columns: 1fr; }
      .step:last-child { border-bottom: none; }
      .step { border-right: none; }
      .pricing-header { flex-direction: column; align-items: flex-start; gap: 12px; padding: 48px 24px 32px; }
      .pricing-header p { text-align: left; max-width: 100%; }
      .tier { padding: 40px 24px; }
      .niches { padding: 48px 24px; }
      .niches-inner { flex-direction: column; align-items: flex-start; }
      .problem-left, .problem-right { padding: 48px 24px; }
      .cta-left, .cta-right { padding: 48px 24px; }
      .stat-cell { padding: 32px 24px; }
      .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 48px 24px 32px; }
      .blog-card { padding: 32px 24px; }
      .faq-left { padding: 48px 24px; }
      .faq-question { padding: 20px 24px; }
      .faq-answer { padding: 0 24px 20px; }
      .subscribe-left, .subscribe-right { padding: 48px 24px; }
      footer { padding: 24px; }
    }