    .payment-method-option:has(input:checked) {
      border-color: #D65A3A;
      background: #FDF6F3;
    }

    /* ===== Reset (was provided by Tailwind preflight) ===== */
    *, *::before, *::after { box-sizing: border-box; }
    h1, h2, h3, h4, h5, h6, p { margin: 0; }

    /* ===== Responsive utilities ===== */
    .only-desktop { display: none; }
    .only-mobile { display: block; }
    @media (min-width: 768px) {
      .only-desktop { display: block; }
      .only-mobile { display: none; }
    }

    /* ===== Design System: CSS Variables ===== */
    :root {
      --color-bg: #FFFFFF;
      --color-bg-alt: #F7F7F5;
      --color-bg-warm: #F3EDE9;
      --color-bg-dark: #2E3330;
      --color-accent: #D65A3A;
      --color-accent-hover: #B94A2F;
      --color-accent-active: #A8412A;
      --color-text: #1A1A1A;
      --color-text-secondary: #5C5C5C;
      --color-text-muted: #9A9A9A;
      --color-text-on-dark: #FFFFFF;
      --color-text-on-dark-secondary: #B0B8B3;
      --color-border: #EBEBEB;
      --color-label-bg: #FAE8E1;
      --color-label-text: #D65A3A;
      --color-check: #2D8B4E;
      --color-check-dark: #4ADE80;
    }

    /* ===== Global Styles ===== */
    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }
    body {
      font-family: 'Manrope', sans-serif;
      font-size: 17px;
      line-height: 1.6;
      color: var(--color-text);
    }
    @media (min-width: 768px) {
      body { font-size: 18px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ===== Section defaults ===== */
    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 72px 16px;
    }
    @media (min-width: 768px) {
      .section-container { padding: 120px 40px; }
      #why .section-container { padding-top: 72px; }
    }

    /* ===== Utility Classes ===== */
    .btn-primary {
      display: inline-block;
      background: var(--color-accent);
      color: var(--color-text-on-dark);
      padding: 16px 32px;
      border-radius: 60px;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .btn-primary:hover {
      background: var(--color-accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(214, 90, 58, 0.3);
    }
    .btn-primary:active {
      background: var(--color-accent-active);
      transform: scale(0.98);
    }

    .btn-secondary {
      display: inline-block;
      background: transparent;
      color: var(--color-text);
      padding: 16px 32px;
      border-radius: 60px;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      border: 1.5px solid #DCDCDC;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .btn-secondary:hover {
      border-color: var(--color-text);
      transform: translateY(-2px);
    }
    .btn-secondary:active {
      transform: scale(0.98);
    }

    .section-label {
      display: inline-block;
      background: var(--color-label-bg);
      color: var(--color-label-text);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 6px 14px;
      border-radius: 100px;
    }

    .card {
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
      transition: all 0.3s ease;
    }
    @media (max-width: 767px) {
      .card { padding: 24px; }
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .fade-in {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .microcopy {
      font-size: 15px;
      color: #6B6B6B;
      text-align: center;
      margin-top: 8px;
    }
    .h1-accent { font-weight: 400; color: var(--color-accent); }
    .h1-mid { font-weight: 400; }
    .h1-light { font-weight: 400; color: #5C5C5C; }
    @media (max-width: 767px) {
      .btn-primary, .btn-secondary { width: 100%; }
    }

    /* ===== Navigation ===== */
    .nav-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 64px;
      z-index: 100;
      background: transparent;
      transition: all 0.3s ease;
    }
    @media (min-width: 768px) {
      .nav-header { height: 72px; }
    }
    .nav-header.scrolled {
      background: var(--color-bg);
      border-bottom: 1px solid var(--color-border);
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }
    @media (min-width: 768px) {
      .nav-inner { padding: 0 40px; }
    }
    .nav-logo {
      font-size: 18px;
      font-weight: 700;
      color: var(--color-text);
      text-decoration: none;
      white-space: nowrap;
    }
    .nav-links {
      display: none;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 28px;
      align-items: center;
    }
    @media (min-width: 768px) {
      .nav-links { display: flex; }
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--color-text-secondary);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--color-accent);
    }
    .nav-cta {
      display: none;
    }
    @media (min-width: 768px) {
      .nav-cta {
        display: inline-block;
        padding: 10px 24px;
      }
    }

    /* Burger icon */
    .burger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }
    @media (min-width: 768px) {
      .burger { display: none; }
    }
    .burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--color-text);
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .burger span:nth-child(1) { margin-bottom: 5px; }
    .burger span:nth-child(2) { margin-bottom: 5px; }
    .burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger.open span:nth-child(2) {
      opacity: 0;
    }
    .burger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile overlay */
    .mobile-overlay {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      background: var(--color-bg);
      z-index: 99;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: right 0.3s ease;
    }
    .mobile-overlay.open {
      right: 0;
    }
    .mobile-overlay ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
    }
    .mobile-overlay li {
      margin-bottom: 24px;
    }
    .mobile-overlay a {
      font-size: 24px;
      font-weight: 600;
      color: var(--color-text);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .mobile-overlay a:hover {
      color: var(--color-accent);
    }
    .mobile-overlay .mobile-cta {
      margin-top: 16px;
      width: 280px;
    }

    /* ===== Hero ===== */
    .hero {
      padding-top: calc(64px + 48px);
      padding-bottom: 72px;
      padding-left: 16px;
      padding-right: 16px;
    }
    @media (min-width: 768px) {
      .hero {
        padding-top: calc(72px + 48px);
        padding-bottom: 72px;
        padding-left: 40px;
        padding-right: 40px;
      }
    }
    .hero-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }
    @media (min-width: 768px) {
      .hero-grid {
        grid-template-columns: 3fr 2fr;
        gap: 48px;
      }
    }
    .hero h1 {
      font-size: 38px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--color-text);
    }
    @media (min-width: 768px) {
      .hero h1 {
        font-size: 56px;
        max-width: 600px;
      }
    }
    .hero-subtitle {
      font-size: 17px;
      font-weight: 400;
      color: var(--color-text-secondary);
      margin-top: 16px;
    }
    @media (min-width: 768px) {
      .hero-subtitle { font-size: 20px; }
    }
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
    }
    @media (max-width: 767px) {
      .hero-buttons { flex-direction: column; gap: 12px; }
    }
    .hero-start-banner {
      margin-top: 24px;
      background: linear-gradient(135deg, #FAE8E1 0%, #FDF6F3 100%);
      border: 1.5px solid #F0C9BB;
      border-radius: 16px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-start-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
    .hero-start-info { display: flex; align-items: center; gap: 14px; }
    .hero-start-date-block { display: flex; flex-direction: column; }
    .hero-start-label { font-size: 13px; color: #B94A2F; font-weight: 500; }
    .hero-start-date { font-size: 18px; font-weight: 700; color: #D65A3A; }
    .hero-start-divider { width: 1px; height: 36px; background: #E0D5CF; flex-shrink: 0; }
    .hero-start-features { display: flex; flex-direction: column; gap: 3px; }
    .hero-start-feature { font-size: 13px; color: #9A7A6E; display: flex; align-items: center; gap: 5px; }
    .hero-start-dot { width: 4px; height: 4px; border-radius: 50%; background: #D65A3A; flex-shrink: 0; }
    .hero-start-countdown { text-align: center; padding-left: 12px; flex-shrink: 0; }
    .hero-countdown-num { font-size: 22px; font-weight: 800; color: #D65A3A; display: block; }
    .hero-countdown-label { font-size: 11px; color: #B94A2F; display: block; }
    @media (max-width: 767px) {
      .hero-start-info { flex-direction: column; align-items: flex-start; gap: 10px; }
      .hero-start-divider { width: 100%; height: 1px; }
      .hero-start-banner { flex-direction: column; align-items: flex-start; }
      .hero-start-countdown { padding-left: 0; display: flex; align-items: center; gap: 6px; }
      .hero-countdown-num { font-size: 18px; }
    }
    #hero-discount {
      margin-top: 16px;
      margin-bottom: 8px;
    }
    .hero-discount-btn {
      background: #D65A3A;
      color: #fff;
      border-radius: 20px;
      padding: 20px 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      width: 100%;
      transition: background 0.2s;
    }
    .hero-discount-btn:hover {
      background: #C04E30;
    }
    .hero-discount-left {
      flex: 1;
    }
    .hero-discount-title {
      font-size: 17px;
      font-weight: 700;
    }
    .hero-discount-sub {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      margin-top: 4px;
    }
    .hero-discount-prices {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }
    .hero-discount-tier {
      background: rgba(255,255,255,0.15);
      padding: 8px 14px;
      border-radius: 10px;
      text-align: center;
    }
    .hero-discount-tier-label {
      font-size: 10px;
      opacity: 0.7;
      margin-bottom: 2px;
    }
    .hero-discount-tier-new {
      font-size: 18px;
      font-weight: 800;
    }
    .hero-discount-tier-old {
      font-size: 10px;
      text-decoration: line-through;
      opacity: 0.5;
    }
    @media (max-width: 767px) {
      .hero-discount-btn {
        flex-direction: column;
        gap: 14px;
        text-align: center;
      }
      .hero-discount-prices {
        width: 100%;
        justify-content: center;
      }
    }
    .hero-photo {
      background: #F0F0EE;
      border: 2px dashed #DCDCDC;
      border-radius: 24px;
      aspect-ratio: 4/5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #9A9A9A;
      gap: 12px;
    }
    @media (max-width: 767px) {
      .hero-photo {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16/9;
        border-radius: 16px;
        margin: 24px 0 0;
        order: 7;
      }
    }
    .hero-photo picture img {
      aspect-ratio: 4/5;
    }
    @media (max-width: 767px) {
      .hero-photo picture img {
        aspect-ratio: 16/9;
        border-radius: 16px;
      }
    }

    /* ===== Block headings ===== */
    .block-heading {
      text-align: center;
      margin-bottom: 48px;
    }
    .block-heading .section-label {
      margin-bottom: 16px;
    }
    .block-heading h2 {
      font-size: 28px;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }
    @media (min-width: 768px) {
      .block-heading h2 { font-size: 40px; }
    }
    .block-heading .block-subtitle {
      color: var(--color-text-secondary);
      max-width: 720px;
      margin: 16px auto 0;
    }

    /* ===== Video placeholder ===== */
    .video-placeholder {
      aspect-ratio: 16/9;
      background: #E8E8E5;
      border: 2px dashed #D0D0D0;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #9A9A9A;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .video-placeholder:hover {
      background: #EAE9E6;
    }
    .play-circle {
      width: 64px;
      height: 64px;
      background: var(--color-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .play-circle svg {
      width: 24px;
      height: 24px;
      fill: #fff;
      margin-left: 3px;
    }

    /* ===== Card grid helpers ===== */
    .cards-grid-3 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 768px) {
      .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
    }
    .cards-grid-3 .card {
      background: var(--color-bg-alt);
      border-top: 3px solid var(--color-accent);
    }
    .cards-grid-3 .card .why-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }
    .cards-grid-3 .card h3 {
      font-size: 20px;
      font-weight: 700;
    }
    .cards-grid-3 .card p {
      line-height: 1.6;
    }
    .cards-grid-2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: stretch;
    }
    @media (min-width: 768px) {
      .cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
    }
    .cards-grid-2 .card,
    .cards-grid-2 .card-warm {
      display: flex;
      flex-direction: column;
    }
    .cards-grid-2 .card .card-text,
    .cards-grid-2 .card-warm .card-text {
      flex-grow: 1;
    }
    .cards-grid-2 .card .card-placeholder,
    .cards-grid-2 .card-warm .card-placeholder {
      flex-shrink: 0;
      margin-top: auto;
    }
    .card h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .card p {
      color: var(--color-text-secondary);
    }
    .card-icon {
      font-size: 28px;
      margin-bottom: 12px;
    }

    /* ===== Included block ===== */
    .included-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      overflow: hidden;
      max-width: 1040px;
      margin: 0 auto;
    }
    @media (max-width: 767px) {
      .included-strip { grid-template-columns: repeat(2, 1fr); }
    }
    .included-strip-item {
      padding: 32px 24px;
      text-align: center;
      border-right: 1px solid var(--color-border);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: background 0.15s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .included-strip-item:last-child { border-right: none; }
    .included-strip-item:hover { background: var(--color-bg-alt); }
    @media (max-width: 767px) {
      .included-strip-item { padding: 20px 14px; }
      .included-strip-item:nth-child(2) { border-right: none; }
      .included-strip-item:nth-child(1),
      .included-strip-item:nth-child(2) { border-bottom: 1px solid var(--color-border); }
    }
    .included-strip-num {
      font-size: 46px;
      font-weight: 600;
      color: var(--color-accent);
      display: block;
      line-height: 1;
      margin-bottom: 10px;
    }
    .included-strip-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--color-text);
      display: block;
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .included-strip-desc {
      font-size: 13px;
      color: var(--color-text-secondary);
      line-height: 1.45;
      display: block;
    }
    .included-strip-badge {
      display: inline-block;
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 100px;
      font-weight: 600;
      margin-top: 10px;
    }
    .badge-accent {
      background: var(--color-label-bg);
      color: var(--color-label-text);
    }
    .badge-green {
      background: #EFF6E8;
      color: #3B6D11;
    }

    /* Drilling card (warm highlight) */
    .card-warm {
      background: var(--color-bg-warm);
      border: none;
      border-radius: 20px;
      padding: 32px;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    @media (max-width: 767px) {
      .card-warm { padding: 24px; }
    }
    .card-warm:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .card-warm h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
    .card-warm p { color: var(--color-text-secondary); }

    /* Drilling card full-width layout */
    .card-warm-full {
      background: var(--color-bg-warm);
      border: none;
      border-radius: 20px;
      padding: 32px;
      transition: all 0.3s ease;
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    @media (min-width: 768px) {
      .card-warm-full {
        flex-direction: row;
        align-items: center;
        gap: 32px;
      }
    }
    .card-warm-full:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .card-warm-full .card-text { flex-grow: 1; }
    .card-warm-full .card-text h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
    .card-warm-full .card-text p { color: var(--color-text-secondary); }
    .card-warm-full .card-player-wrap {
      flex-shrink: 0;
      width: 100%;
    }
    @media (min-width: 768px) {
      .card-warm-full .card-player-wrap { min-width: 280px; width: 280px; }
    }

    /* Course heading with badge */
    .course-heading-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    @media (min-width: 768px) {
      .course-heading-row {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
      }
    }
    .course-time-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--color-bg-alt);
      border: 1px solid var(--color-border);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--color-text-secondary);
      white-space: nowrap;
    }

    /* Topics accordion */
    .topics-accordion {
      margin-top: 32px;
    }
    .topics-accordion-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 20px 24px;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      cursor: pointer;
      font-family: inherit;
      font-size: 16px;
      font-weight: 600;
      color: var(--color-text);
      transition: all 0.2s;
    }
    .topics-accordion-btn:hover { background: var(--color-bg-alt); }
    .topics-accordion-icon {
      font-size: 20px;
      color: var(--color-text-secondary);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .topics-accordion.open .topics-accordion-icon {
      transform: rotate(45deg);
    }
    .topics-accordion.open .topics-accordion-btn {
      border-radius: 16px 16px 0 0;
    }
    .topics-accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-top: none;
      border-radius: 0 0 16px 16px;
    }
    .topics-accordion-content .topics-table {
      margin: 0;
    }
    .topics-accordion-content .topics-table td,
    .topics-accordion-content .topics-table th {
      padding: 12px 24px;
      font-size: 15px;
    }
    @media (max-width: 767px) {
      .topics-accordion-content .topics-table td,
      .topics-accordion-content .topics-table th { padding: 10px 16px; font-size: 14px; }
    }

    /* Screenshot placeholder */
    .screenshot-placeholder {
      background: #F0F0EE;
      border: 2px dashed #D0D0D0;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #9A9A9A;
      font-size: 14px;
      margin-top: 16px;
      overflow: hidden;
    }
    .screenshot-placeholder svg { width: 32px; height: 32px; }
    .screenshot-placeholder.ratio-16-10 { aspect-ratio: 16/10; }
    .screenshot-placeholder.ratio-4-3 { aspect-ratio: 4/3; }

    /* Mini player placeholder */
    .mini-player {
      height: 56px;
      width: 100%;
      border-radius: 12px;
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 12px;
      margin-top: 16px;
      cursor: pointer;
      border: none;
    }
    .mini-player.warm { background: #E8E0DA; }
    .mini-player.warm .mp-play { background: #D4C8BE; }
    .mini-player.warm .mp-bar { background: #D4C8BE; }
    .mini-player.warm .mp-bar::after { background: #B0A498; }
    .mini-player.warm .mp-time { color: #A09488; }
    .mini-player.neutral { background: #EAEAEA; }
    .mini-player .mp-play {
      width: 36px;
      height: 36px;
      background: var(--color-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .mini-player .mp-play svg {
      width: 14px;
      height: 14px;
      fill: #fff;
      margin-left: 2px;
    }
    .mini-player .mp-bar {
      flex-grow: 1;
      height: 4px;
      background: #DCDCDC;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
    }
    .mini-player .mp-bar::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 25%;
      height: 100%;
      background: #9A9A9A;
      border-radius: 2px;
    }
    .mini-player .mp-time {
      font-size: 14px;
      color: #9A9A9A;
      flex-shrink: 0;
    }

    /* Phone mockup placeholder */
    .phone-mockup {
      max-width: 280px;
      margin: 32px auto 0;
    }
    .phone-mockup-inner {
      aspect-ratio: 9/16;
      border-radius: 28px;
      border: 4px solid #D0D0D0;
      background: #F0F0EE;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #9A9A9A;
      font-size: 14px;
    }

    /* Legacy audio placeholder (removed - now using .mini-player) */

    /* ===== Topics table ===== */
    .topics-table-wrap {
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      overflow: hidden;
      margin-top: 40px;
    }
    .topics-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }
    .topics-table th {
      padding: 14px 20px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: var(--color-text-secondary);
      border-bottom: 1px solid var(--color-border);
      background: var(--color-bg-alt);
    }
    .topics-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--color-border);
      font-size: 16px;
    }
    .topics-table tr:hover td { background: var(--color-bg-alt); transition: background 0.2s; }
    .topics-table td:nth-child(2) { font-weight: 500; color: var(--color-text-secondary); text-align: center; width: 80px; }
    .topics-table td:nth-child(3) { color: var(--color-text-secondary); }
    @media (max-width: 767px) {
      .topics-table th, .topics-table td { font-size: 14px; padding: 12px 14px; }
    }
    .topics-table tr:last-child td {
      border-bottom: none;
    }
    .topics-table td:first-child {
      font-weight: 600;
    }
    @media (max-width: 767px) {
      .topics-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .topics-table { min-width: 520px; }
    }

    /* ===== Weekly items ===== */
    .weekly-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 768px) {
      .weekly-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    }
    .weekly-item {
      display: flex;
      gap: 16px;
    }
    .weekly-item-icon {
      font-size: 28px;
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: var(--color-label-bg);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .weekly-item h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .weekly-item p {
      color: var(--color-text-secondary);
      font-size: 16px;
    }

    /* ===== Topic pills ===== */
    .topic-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 32px;
    }
    .topic-pill {
      background: var(--color-bg-alt);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
    }

    /* Weekly bottom: pills + screenshot side by side */
    .weekly-bottom {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 40px;
    }
    @media (min-width: 768px) {
      .weekly-bottom {
        grid-template-columns: 1fr 280px;
        gap: 32px;
        align-items: start;
      }
    }
    .weekly-screenshot {
      width: 200px;
      aspect-ratio: 1/1;
      border-radius: 16px;
      border: 2px dashed #D0D0D0;
      background: #F0F0EE;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #9A9A9A;
      font-size: 14px;
      margin: 20px auto 0;
    }
    @media (min-width: 768px) {
      .weekly-screenshot { width: 280px; margin: 0; }
    }
    .weekly-bottom-pills-label {
      font-size: 15px;
      font-weight: 600;
      color: var(--color-text-secondary);
      margin-bottom: 16px;
    }
    .weekly-bottom-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .weekly-bottom-quote {
      font-size: 15px;
      color: var(--color-text-secondary);
      font-style: italic;
      margin-top: 24px;
    }
    .weekly-phone-mockup {
      width: 280px;
      margin: 0 auto;
    }
    @media (max-width: 767px) {
      .weekly-phone-mockup {
        max-width: 200px;
        margin: 0 auto;
      }
    }
    .weekly-phone-mockup-inner {
      aspect-ratio: 9/16;
      border-radius: 32px;
      border: 4px solid #D0D0D0;
      background: #F0F0EE;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #9A9A9A;
      font-size: 14px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
    @media (max-width: 767px) {
      .weekly-phone-mockup-inner { max-height: 360px; }
    }

    /* Song mini-player with note icon */
    .song-player {
      height: 56px;
      width: 100%;
      border-radius: 12px;
      background: #EAEAEA;
      border: none;
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 12px;
      margin-top: 16px;
      cursor: pointer;
    }
    .song-player .sp-note {
      width: 36px;
      height: 36px;
      background: #DCDCDC;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .song-player .sp-note svg {
      width: 14px;
      height: 14px;
      fill: #fff;
    }
    .song-player .sp-bar {
      flex-grow: 1;
      height: 4px;
      background: #D0D0D0;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
    }
    .song-player .sp-bar::after {
      content: '';
      position: absolute;
      left: 0; top: 0;
      width: 25%;
      height: 100%;
      background: #A0A0A0;
      border-radius: 2px;
    }
    .song-player .sp-label {
      font-size: 13px;
      color: #9A9A9A;
      flex-shrink: 0;
      white-space: nowrap;
    }

    /* Custom audio player */
    .custom-player {
      width: 100%;
      border-radius: 16px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      box-sizing: border-box;
    }
    .custom-player.warm { background: #E8E0DA; }
    .custom-player.neutral { background: #F0F0EE; }
    .cp-play {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--color-accent);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.2s;
      padding: 0;
    }
    .cp-play:hover { transform: scale(1.08); }
    .cp-play svg { margin-left: 2px; }
    .cp-center { flex-grow: 1; min-width: 0; }
    .cp-progress-wrap {
      width: 100%;
      height: 16px;
      display: flex;
      align-items: center;
      cursor: pointer;
    }
    .cp-progress-bar {
      width: 100%;
      height: 4px;
      background: #DCDCDC;
      border-radius: 2px;
      overflow: hidden;
    }
    .custom-player.warm .cp-progress-bar { background: #D4C8BE; }
    .cp-progress-fill {
      width: 0%;
      height: 100%;
      background: var(--color-accent);
      border-radius: 2px;
      transition: width 0.1s linear;
    }
    .cp-label {
      display: block;
      font-size: 13px;
      color: var(--color-text-muted);
      margin-top: 4px;
    }
    .cp-time {
      font-size: 14px;
      font-weight: 500;
      color: var(--color-text-secondary);
      flex-shrink: 0;
      white-space: nowrap;
    }

    /* Large screenshot placeholder */
    .large-placeholder {
      background: #F0F0EE;
      border: 2px dashed #DCDCDC;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9A9A9A;
      font-size: 14px;
      height: 240px;
      margin-top: 40px;
    }

    .text-bold-center {
      text-align: center;
      margin-top: 32px;
    }
    .time-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 100px;
      padding: 10px 20px;
      font-size: 15px;
      font-weight: 600;
      color: var(--color-text);
    }
    .time-badge-alt { background: var(--color-bg-alt); }

    /* ===== Step cards (format) ===== */
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media (min-width: 768px) {
      .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    }
    .step-card {
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 20px;
      padding: 28px 24px;
    }
    .step-number {
      width: 32px;
      height: 32px;
      background: var(--color-accent);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }
    .step-card h3 { font-size: 18px; font-weight: 600; }
    .step-card p { font-size: 15px; color: var(--color-text-secondary); margin-top: 8px; line-height: 1.5; }
    .step-card:nth-child(1) { background: #FEF5F2; border-color: #F0C9BB; }
    .step-card:nth-child(2) { background: #F0F7FF; border-color: #B5D4F4; }
    .step-card:nth-child(3) { background: #EEEDFE; border-color: #CECBF6; }
    .step-card:nth-child(4) { background: #EFF6E8; border-color: #C0DD97; }

    /* ===== Audience ===== */
    .audience-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    @media (min-width: 768px) {
      .audience-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    }
    .audience-card {
      border-radius: 20px;
      padding: 24px;
    }
    @media (min-width: 768px) {
      .audience-card { padding: 32px; }
    }
    .audience-card.yes-card {
      background: #F0FAF0;
      border: 1px solid #C8E6C8;
    }
    .audience-card.no-card {
      background: #F5F5F5;
      border: 1px solid #E0E0E0;
    }
    .audience-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .audience-item {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .audience-item:last-child { margin-bottom: 0; }
    .audience-check {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
      border-radius: 50%;
      margin-top: 2px;
    }
    .audience-check.yes {
      color: #fff;
      background: var(--color-check);
    }
    .audience-check.no {
      color: #9A9A9A;
      background: #DCDCDC;
    }
    .audience-card.no-card .audience-item span {
      color: var(--color-text-secondary);
    }

    /* ===== Review cards ===== */
    .reviews-scroll {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 20px;
      padding: 0 20px 16px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .reviews-scroll::-webkit-scrollbar { display: none; }
    .review-card {
      flex-shrink: 0;
      scroll-snap-align: start;
      background: #fff;
      border-radius: 24px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      height: 380px;
      overflow: hidden;
      transition: all 0.25s ease;
      cursor: pointer;
      -webkit-mask-image: -webkit-radial-gradient(white, black);
      border: 1px solid #f0f0ee;
    }
    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .review-card.card-wide { width: 440px; }
    .review-card.card-medium { width: 400px; }
    .review-card.card-narrow { width: 300px; }
    .review-quote {
      font-size: 48px;
      color: #D65A3A;
      opacity: 0.15;
      line-height: 1;
      margin-bottom: -8px;
      user-select: none;
    }
    .review-title {
      font-size: 17px;
      font-weight: 700;
      color: #1A1A1A;
      line-height: 1.3;
      margin-bottom: 12px;
    }
    .review-text-wrapper {
      position: relative;
      flex: 1;
      min-height: 0;
      overflow: hidden;
    }
    .review-text {
      font-size: 15px;
      color: #4A4A4A;
      line-height: 1.6;
      margin: 0;
    }
    .review-text-wrapper.has-overflow::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 70px;
      background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 90%);
      pointer-events: none;
    }
    .review-author {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid #F0F0EE;
      font-size: 15px;
      font-weight: 600;
      color: #1A1A1A;
    }
    @media (max-width: 767px) {
      .review-card {
        width: 85vw !important;
        height: 340px;
        padding: 24px;
        scroll-snap-align: center;
      }
      .review-title { font-size: 16px; }
      .review-text { font-size: 14px; }
    }
    .review-modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s;
      z-index: 10001;
    }
    .review-modal.active {
      opacity: 1;
      pointer-events: all;
    }
    .review-modal-content {
      background: #fff;
      border-radius: 24px;
      padding: 40px 32px;
      max-width: 520px;
      width: calc(100% - 32px);
      max-height: 80vh;
      overflow-y: auto;
      position: relative;
    }
    .review-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #999;
    }
    .review-modal-title {
      font-size: 20px;
      font-weight: 700;
      color: #1A1A1A;
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .review-modal-text {
      font-size: 16px;
      color: #4A4A4A;
      line-height: 1.65;
    }
    .review-modal-author {
      margin-top: 24px;
      padding-top: 16px;
      border-top: 1px solid #F0F0EE;
      font-size: 15px;
      font-weight: 600;
      color: #1A1A1A;
    }

    /* Chat screenshots scroll */
    .rv-screenshots {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 0 16px 8px;
      margin-top: 40px;
      scrollbar-width: none;
    }
    .rv-screenshots::-webkit-scrollbar { display: none; }
    .rv-screenshots img {
      width: 240px;
      height: 240px;
      object-fit: cover;
      border-radius: 16px;
      flex-shrink: 0;
      scroll-snap-align: start;
    }

    /* ===== Pricing (dark) ===== */
    .pricing-section {
      background: var(--color-bg-dark);
    }
    .section-label-dark {
      display: inline-block;
      background: rgba(214, 90, 58, 0.2);
      color: var(--color-accent);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 6px 14px;
      border-radius: 100px;
    }
    .pricing-card {
      background: #363D39;
      border: 1px solid #4A534E;
      border-radius: 24px;
      padding: 32px 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      display: flex;
      flex-direction: column;
    }
    @media (min-width: 768px) {
      /* Dropped !important so single-card inline grid-template-columns:1fr wins while
         support tier is dormant. When support returns, change inline to 1fr 1fr. */
      .pricing-grid-2 { grid-template-columns: 1fr 1fr; align-items: stretch; }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    @media (max-width: 767px) {
      .pricing-card { padding: 32px 24px; }
    }
    @media (max-width: 640px) {
      #pricing .pricing-card { padding: 28px 22px !important; }
      #pricing #discount-fire-badge { right: 16px !important; font-size: 12px !important; }
    }
    .pricing-card .pricing-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-accent);
      margin: 0;
    }
    .pricing-card .pricing-name {
      font-size: 24px;
      font-weight: 700;
      color: var(--color-text-on-dark);
      margin: 4px 0 0;
    }
    .pricing-features {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .pricing-feature {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 14px;
    }
    .pricing-feature .check {
      color: var(--color-check-dark);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .pricing-feature span {
      color: var(--color-text-on-dark);
    }
    .pricing-feature .coming-soon {
      color: var(--color-text-on-dark-secondary);
      font-style: italic;
    }
    .pricing-amount {
      margin-top: 32px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    .pricing-amount .price {
      font-size: 48px;
      font-weight: 700;
      color: var(--color-text-on-dark);
      line-height: 1;
    }
    .pricing-amount .period {
      font-size: 20px;
      font-weight: 400;
      color: var(--color-text-on-dark-secondary);
    }
    .pricing-anchor {
      color: var(--color-text-on-dark-secondary);
      margin-top: 8px;
    }
    .pricing-guarantee {
      margin-top: 24px;
      font-size: 16px;
      font-weight: 500;
      color: var(--color-text-on-dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .discount-badge {
      display: none;
      background: #D65A3A;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      margin-left: 10px;
      vertical-align: middle;
    }
    [data-price-old] {
      text-decoration: line-through;
      color: rgba(255,255,255,0.5);
      font-size: 18px;
      margin-left: 10px;
    }
    .pricing-buttons {
      margin-top: auto;
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .pricing-buttons .btn-primary {
      width: 100%;
      display: block;
      font-size: 16px;
    }
    .btn-secondary-dark {
      display: block;
      width: 100%;
      background: transparent;
      color: var(--color-text-on-dark);
      padding: 16px 32px;
      border-radius: 60px;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.25);
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .btn-secondary-dark:hover {
      border-color: #fff;
      transform: translateY(-2px);
    }

    /* ===== FAQ Accordion ===== */
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid var(--color-border);
      padding: 24px 0;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      width: 100%;
      text-align: left;
      font-size: 18px;
      font-weight: 600;
      color: var(--color-text);
      font-family: inherit;
      line-height: 1.4;
    }
    .faq-icon {
      font-size: 24px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
      line-height: 1;
      color: var(--color-text-secondary);
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-answer-inner {
      padding-top: 16px;
      font-size: 16px;
      font-weight: 400;
      color: var(--color-text-secondary);
      line-height: 1.6;
    }

    /* ===== Final CTA ===== */
    .final-cta {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }
    .final-cta h2 {
      font-size: 32px;
      font-weight: 800;
      line-height: 1.15;
    }
    @media (min-width: 768px) {
      .final-cta h2 { font-size: 44px; }
    }
    .final-cta .final-sub {
      color: var(--color-text-secondary);
      margin-top: 16px;
    }
    .final-cta .final-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
      justify-content: center;
    }
    @media (max-width: 767px) {
      .final-cta .final-buttons { flex-direction: column; gap: 12px; }
    }
    .final-cta .final-note {
      font-size: 14px;
      color: var(--color-text-muted);
      margin-top: 16px;
    }

    /* ===== Support cards ===== */
    .support-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    @media (max-width: 767px) {
      .support-grid { grid-template-columns: 1fr; }
      .support-card-song { grid-column: span 1 !important; }
    }
    .support-card {
      padding: 28px 24px;
      border-radius: 16px;
      transition: all 0.15s ease;
    }
    .support-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    }
    .support-card-webinar { background: #EEEDFE; border: 1px solid #CECBF6; }
    .support-card-hw { background: #EFF6E8; border: 1px solid #C0DD97; }
    .support-card-check { background: #FAE8E1; border: 1px solid #F0C9BB; }
    .support-card-voice { background: #FFF8E6; border: 1px solid #F2D87A; }
    .support-card-partner { background: #E6F1FB; border: 1px solid #B5D4F4; }
    .support-card-song { background: #F5F0FF; border: 1px solid #D4C4F7; }
    .support-emoji { font-size: 28px; margin-bottom: 14px; display: block; }
    .support-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
    .support-card p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.55; }
    .support-detail { font-size: 14px; font-weight: 500; color: #6B5AC8; margin-top: 10px; }
    .support-dates { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
    .support-date {
      font-size: 12px;
      padding: 4px 12px;
      border-radius: 100px;
      background: rgba(107,90,200,0.15);
      color: #6B5AC8;
      font-weight: 600;
    }
    .support-badge {
      display: inline-block;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 100px;
      font-weight: 600;
      margin-top: 12px;
    }
    .support-badge-all { background: rgba(45,139,78,0.12); color: #3B6D11; }
    .support-badge-pro { background: rgba(214,90,58,0.12); color: #D65A3A; }

    /* ===== Results cards ===== */
    .results-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 1040px;
      margin: 0 auto;
    }
    @media (max-width: 767px) {
      .results-grid { grid-template-columns: 1fr; }
    }
    .result-card {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--color-border);
      transition: all 0.2s ease;
    }
    .result-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .result-img {
      height: 180px;
      background: var(--color-bg-warm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      border-bottom: 1px solid var(--color-border);
    }
    .result-body { padding: 20px 24px 24px; }
    .result-body h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
    .result-body p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.5; }

    /* ===== Author Timeline ===== */
    .author-grid {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 36px;
      align-items: start;
      max-width: 860px;
      margin: 0 auto;
    }
    @media (max-width: 767px) {
      .author-grid { grid-template-columns: 1fr; gap: 24px; }
    }
    .author-left { position: sticky; top: 100px; }
    @media (max-width: 767px) {
      .author-left { position: static; display: flex; flex-direction: column; align-items: center; }
    }
    .author-photo {
      width: 240px;
      border-radius: 20px;
      overflow: hidden;
    }
    @media (max-width: 767px) {
      .author-photo { width: 100%; height: auto; aspect-ratio: auto; }
    }
    .author-tg-link {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      font-size: 14px;
      font-weight: 600;
      color: var(--color-accent);
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 10px;
      background: #FDF6F3;
      border: 1px solid #F0C9BB;
      transition: all 0.15s ease;
    }
    .author-tg-link:hover { background: var(--color-label-bg); transform: translateY(-1px); }
    @media (max-width: 767px) {
      .author-tg-link { width: 100%; max-width: 240px; justify-content: center; }
    }
    .author-timeline { position: relative; padding-left: 28px; }
    .author-timeline::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 12px;
      bottom: 12px;
      width: 2px;
      background: linear-gradient(to bottom, #F0C9BB, #D65A3A, #F0C9BB);
      border-radius: 1px;
    }
    .author-tl-item { position: relative; padding-bottom: 28px; }
    .author-tl-item:last-child { padding-bottom: 0; }
    .author-tl-dot {
      position: absolute;
      left: -28px;
      top: 4px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid var(--color-accent);
      z-index: 1;
    }
    .author-tl-dot-filled { background: var(--color-accent); }
    .author-tl-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--color-accent);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 4px;
    }
    .author-tl-text { font-size: 15px; color: var(--color-text-secondary); line-height: 1.55; }
    .author-tl-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
    .author-tl-tag {
      font-size: 12px;
      padding: 3px 10px;
      border-radius: 100px;
      background: var(--color-bg-alt);
      color: var(--color-text-secondary);
      border: 1px solid var(--color-border);
    }
    .author-quote {
      margin-top: 28px;
      padding: 20px 24px;
      background: linear-gradient(135deg, #FAE8E1, #FDF6F3);
      border-radius: 14px;
      border-left: 4px solid var(--color-accent);
      position: relative;
    }
    .author-quote-mark {
      font-size: 36px;
      color: var(--color-accent);
      opacity: 0.2;
      line-height: 1;
      position: absolute;
      top: 12px;
      left: 20px;
    }
    .author-quote-text {
      font-size: 15px;
      color: #7A5A4E;
      line-height: 1.55;
      font-style: italic;
      padding-left: 4px;
    }

    /* ===== Footer ===== */
    .site-footer {
      background: var(--color-bg-dark);
      padding: 48px 40px;
    }
    @media (max-width: 767px) {
      .site-footer { padding: 32px 16px; }
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }
    @media (max-width: 767px) {
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
    }
    .footer-copy {
      font-size: 14px;
      color: rgba(255,255,255,0.35);
    }
    .footer-socials {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-bottom: 20px;
    }
    .footer-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }
    .footer-socials a svg {
      width: 24px;
      height: 24px;
      stroke: rgba(255,255,255,0.4);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .footer-socials a:hover svg { stroke: rgba(255,255,255,0.7); }
    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    @media (min-width: 768px) {
      .footer-links { flex-direction: row; gap: 8px; justify-content: center; flex-wrap: wrap; }
    }
    .footer-links li:not(:last-child)::after {
      content: '·';
      margin-left: 8px;
      color: rgba(255,255,255,0.15);
    }
    @media (max-width: 767px) {
      .footer-links li::after { display: none; }
    }
    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-links a:hover {
      color: rgba(255,255,255,0.6);
    }

    /* ===== Sticky Mobile CTA ===== */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: var(--color-bg);
      border-top: 1px solid var(--color-border);
      box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
      padding: 16px;
      padding-bottom: max(16px, env(safe-area-inset-bottom));
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .sticky-cta.visible {
      opacity: 1;
      pointer-events: auto;
    }
    @media (min-width: 768px) {
      .sticky-cta { display: none; }
    }
    .sticky-cta .btn-primary {
      width: 100%;
    }
    .sticky-cta .sticky-note {
      font-size: 12px;
      color: var(--color-text-muted);
      text-align: center;
      margin-top: 6px;
    }

    @media (max-width: 767px) {
      #cookie-banner { display: none !important; }
    }
    @media (min-width: 769px) {
      #cookie-banner {
        left: auto !important;
        right: 20px !important;
        bottom: 20px !important;
        width: auto !important;
        max-width: 380px !important;
        border-radius: 16px !important;
      }
    }

    .cookie-inline {
      font-size: 12px;
      color: #999;
      text-align: center;
      margin-bottom: 6px;
      display: block;
    }
    @media (min-width: 769px) {
      .cookie-inline { display: none !important; }
    }

    /* Mobile body padding for sticky CTA */
    @media (max-width: 767px) {
      body { padding-bottom: 80px; }
    }

    /* Single-card pricing layout (active while support is dormant).
       Overrides base .pricing-amount sizing. When support returns, the second
       card will not carry .pricing-card-single, so these rules won't apply. */
    #pricing .pricing-card-single .pricing-amount {
      margin-top: 18px;
      margin-bottom: 26px;
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
    }
    #pricing .pricing-card-single .pricing-amount .price {
      font-size: 72px !important;
      line-height: 1;
      font-weight: 800;
    }
    #pricing .pricing-card-single .pricing-amount .period {
      font-size: 32px;
      line-height: 1;
      font-weight: 700;
      margin-left: 6px;
    }

    /* Discount-mode old price (scoped to pricing card so it can't affect anything else) */
    #pricing .pricing-old-price {
      color: rgba(255, 255, 255, 0.35) !important;
      text-decoration: line-through;
      text-decoration-thickness: 2px;
      text-decoration-color: rgba(255, 255, 255, 0.35);
      font-size: 28px;
      font-weight: 700;
      margin-left: 14px;
      vertical-align: baseline;
    }

    /* ==================== pricing-card-single final spacing ==================== */

    #pricing .pricing-card-single .pricing-name {
      margin: 0 0 14px !important;
    }

    #pricing .pricing-card-single .pricing-meta-row {
      margin: 0 !important;
      padding: 0 !important;
      min-height: 0 !important;
    }

    #pricing .pricing-card-single .pricing-amount-single {
      margin: 20px 0 24px !important;
      padding: 0 !important;
      min-height: 0 !important;
      height: auto !important;
      display: flex !important;
      align-items: baseline !important;
      flex-wrap: wrap !important;
      gap: 14px !important;
    }

    #pricing .pricing-card-single .pricing-amount-single .price {
      font-size: 72px !important;
      line-height: 1 !important;
      font-weight: 800 !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    #pricing .pricing-card-single .pricing-amount-single .period {
      font-size: 32px !important;
      line-height: 1 !important;
      font-weight: 700 !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    #pricing .pricing-card-single .pricing-features-single {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }
