    :root {
      --bg: #FAF8F4;
      --bg-soft: #EEF5EA;
      --bg-warm: #EDE3DA;
      --bg-card: #FFFFFF;
      --text: #1F1F1F;
      --text-muted: #5C5C5C;
      --line: #E9ECE8;
      --primary: #5FAE4B;
      --primary-hover: #4F9A3D;
      --primary-deep: #3E7F3A;
      --primary-soft: #A9D79B;
      --max-blue: #5D7BEA;
      --danger: #C44D4D;
      --shadow-sm: 0 1px 2px rgba(31, 31, 31, 0.04);
      --shadow-md: 0 4px 16px rgba(31, 31, 31, 0.06);
      --shadow-lg: 0 12px 40px rgba(31, 31, 31, 0.08);
      --radius-sm: 8px;
      --radius: 14px;
      --radius-lg: 20px;
      --radius-xl: 28px;
    }

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

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    html { overflow-x: hidden; }

    img { max-width: 100%; height: auto; display: block; }

    a { color: inherit; text-decoration: none; }

    /* ===== ICONS ===== */
    .icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .icon-circle {
      width: 56px; height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(95, 174, 75, 0.14), rgba(95, 174, 75, 0.06));
      color: var(--primary-deep);
      padding: 14px;
      transition: transform 0.25s ease, background 0.25s ease;
    }
    .icon-circle--lg {
      width: 64px; height: 64px; padding: 16px;
      border-radius: 18px;
    }
    .icon-circle--coral {
      background: linear-gradient(135deg, rgba(255, 90, 79, 0.15), rgba(255, 90, 79, 0.05));
      color: #C8362E;
    }
    .icon-circle--soft {
      background: var(--bg-soft);
    }
    .icon-pill {
      width: 32px; height: 32px;
      padding: 6px;
      color: var(--primary-deep);
      flex-shrink: 0;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== STICKY TOP CTA (только десктоп) ===== */
    .sticky-cta {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: var(--primary-deep);
      color: #fff;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      z-index: 100;
      transform: translateY(-100%);
      transition: transform 0.3s ease;
      font-size: 14px;
      font-weight: 500;
    }
    .sticky-cta.visible { transform: translateY(0); }
    .sticky-cta a {
      background: #fff;
      color: var(--primary-deep);
      padding: 8px 18px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 13px;
    }

    /* ===== STICKY BOTTOM (только мобилка ≤768px) ===== */
    .sticky-bottom {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: saturate(180%) blur(12px);
      -webkit-backdrop-filter: saturate(180%) blur(12px);
      border-top: 1px solid rgba(31, 31, 31, 0.06);
      box-shadow: 0 -6px 20px rgba(31, 31, 31, 0.06);
      padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
      z-index: 100;
      display: none;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .sticky-bottom.visible { transform: translateY(0); }
    .sticky-bottom-inner {
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 600px;
      margin: 0 auto;
    }
    .sticky-bottom-info {
      flex-shrink: 0;
      line-height: 1.15;
    }
    .sticky-bottom-info .price {
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.01em;
    }
    .sticky-bottom-info .note {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 1px;
    }
    .sticky-bottom-cta {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      padding: 13px 16px;
      border-radius: 12px;
      min-height: 46px;
      box-shadow: 0 4px 14px rgba(95, 174, 75, 0.25);
      transition: background 0.2s ease;
    }
    .sticky-bottom-cta:hover { background: var(--primary-hover); color: #fff; }

    @media (max-width: 768px) {
      .sticky-bottom { display: block; }
      /* На мобилке прячем верхний sticky, чтобы не дублировать */
      .sticky-cta { display: none !important; }
      /* Оставляем место под фиксированной нижней панелью, чтобы не закрывала контент */
      footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
    }

    /* ===== HEADER ===== */
    header {
      padding: 24px 0;
      border-bottom: 1px solid rgba(31, 31, 31, 0.04);
    }
    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 18px;
    }
    .logo-mark {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--primary);
      color: #fff;
      display: grid; place-items: center;
      font-weight: 800;
      font-size: 14px;
    }
    .header-cta {
      font-size: 14px;
      color: var(--text-muted);
    }
    .header-cta strong { color: var(--text); }

    /* ===== HERO ===== */
    .hero {
      padding: 64px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(95, 174, 75, 0.1);
      color: var(--primary-deep);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .badge::before {
      content: "";
      width: 8px; height: 8px;
      background: var(--primary);
      border-radius: 50%;
    }
    .badge-coral {
      background: rgba(255, 90, 79, 0.12);
      color: #C8362E;
      margin-bottom: 24px;
    }
    .badge-coral::before {
      background: #FF5A4F;
    }
    .badge-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
    h1 {
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .hero-sub {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.55;
      max-width: 520px;
    }
    .hero-bullets {
      list-style: none;
      margin-bottom: 32px;
    }
    .hero-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 8px 0;
      font-size: 16px;
      color: var(--text);
    }
    .hero-bullets li::before {
      content: "";
      flex-shrink: 0;
      width: 22px; height: 22px;
      margin-top: 1px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='11' fill='%235FAE4B'/%3E%3Cpath d='M6 11L9.5 14.5L16 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
      background-size: contain;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 18px 32px;
      background: var(--primary);
      color: #fff;
      font-weight: 600;
      font-size: 17px;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(95, 174, 75, 0.25);
      text-align: center;
    }
    .btn:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(95, 174, 75, 0.35); }
    .btn:active { transform: translateY(0); }
    .btn-arrow::after { content: "→"; font-size: 18px; }
    .btn-large { padding: 22px 40px; font-size: 18px; border-radius: 16px; }
    .btn-white {
      background: #fff;
      color: var(--primary-deep);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    .btn-white:hover { background: #f5f5f5; }
    .micro-cta {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 12px;
    }

    /* ===== PRICE ANCHOR (☕ ценовой якорь) ===== */
    .price-anchor {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 16px 9px 14px;
      margin: 14px 0 0;
      background: var(--bg-warm);
      border: 1px solid rgba(180, 140, 100, 0.22);
      border-radius: 999px;
      font-size: 13.5px;
      font-weight: 500;
      line-height: 1.3;
      color: #6B4F3A;
      letter-spacing: -0.005em;
      text-align: left;
      max-width: 100%;
    }
    .price-anchor svg {
      width: 17px; height: 17px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
    /* Вариант для тёмно-зелёного фона (final CTA) */
    .price-anchor--on-dark {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.24);
      color: #FFE8D6;
    }
    @media (max-width: 540px) {
      .price-anchor { font-size: 12.5px; padding: 8px 14px 8px 12px; gap: 8px; margin-top: 12px; }
      .price-anchor svg { width: 15px; height: 15px; }
    }

    .hero-visual {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 460px;
      width: 100%;
      margin-left: auto;
    }
    .hero-card {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      padding: 24px 26px;
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 18px;
      align-items: center;
    }
    .hero-card-1 { transform: rotate(-1deg); }
    .hero-card-2 { transform: rotate(1deg); margin-left: 32px; }
    .hero-card-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, rgba(95, 174, 75, 0.18), rgba(95, 174, 75, 0.06));
      border-radius: 14px;
      display: grid; place-items: center;
      color: var(--primary-deep);
      padding: 14px;
    }
    .hero-card-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .hero-card-text { min-width: 0; }
    .hero-card h4 { font-size: 17px; margin-bottom: 4px; font-weight: 700; }
    .hero-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

    /* ===== SECTION COMMON ===== */
    section { padding: 80px 0; }
    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 48px;
    }
    .section-head h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .section-head p {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.55;
    }
    .eyebrow {
      display: inline-block;
      color: var(--primary-deep);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    /* ===== PROBLEMS ===== */
    .problems {
      background: #fff;
      border-radius: var(--radius-xl);
      padding: 72px 32px;
    }
    .problems-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 48px;
    }
    .problem-card {
      padding: 28px;
      background: var(--bg);
      border-radius: var(--radius-lg);
    }
    .problem-emoji {
      width: 52px; height: 52px;
      margin-bottom: 18px;
      padding: 13px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(255, 90, 79, 0.14), rgba(255, 90, 79, 0.04));
      color: #C8362E;
      display: grid; place-items: center;
    }
    .problem-emoji svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .problem-card h3 { font-size: 16px; margin-bottom: 8px; font-weight: 700; }
    .problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
    .problems-bottom {
      margin-top: 48px;
      padding: 28px 32px;
      background: var(--bg-warm);
      border-radius: var(--radius);
      font-size: 17px;
      line-height: 1.5;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .men-trigger {
      margin-top: 20px;
      padding: 22px 28px;
      background: var(--bg-soft);
      border: 1px solid rgba(95, 174, 75, 0.25);
      border-radius: var(--radius);
      font-size: 16px;
      line-height: 1.5;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      align-items: center;
      gap: 18px;
      text-align: left;
    }
    .men-trigger-icon {
      width: 48px; height: 48px;
      flex-shrink: 0;
      padding: 11px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(95, 174, 75, 0.18), rgba(95, 174, 75, 0.05));
      color: var(--primary-deep);
      display: grid; place-items: center;
    }
    .men-trigger-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .men-trigger strong {
      color: var(--primary-deep);
      display: block;
      margin-bottom: 4px;
    }

    /* ===== QUIZ INVITE ===== */
    .quiz-invite-section { padding: 40px 0; }
    .quiz-invite {
      background: var(--bg-warm);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .quiz-invite-text { flex: 1; min-width: 280px; }
    .quiz-invite h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text);
    }
    .quiz-invite p {
      color: var(--text-muted);
      font-size: 15px;
      margin: 0;
    }
    .btn-quiz {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 26px;
      background: #fff;
      color: var(--primary-deep);
      border-radius: 12px;
      font-weight: 600;
      font-size: 15px;
      border: 1px solid rgba(62, 127, 58, 0.18);
      transition: all 0.2s ease;
      flex-shrink: 0;
    }
    .btn-quiz:hover {
      background: var(--primary-deep);
      color: #fff;
      transform: translateY(-1px);
    }

    /* ===== SOLUTION ===== */
    .solution {
      background: var(--bg-soft);
      border-radius: var(--radius-xl);
    }
    .solution-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .solution-list {
      list-style: none;
      margin-bottom: 32px;
    }
    .solution-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(31, 31, 31, 0.06);
      font-size: 16px;
    }
    .solution-list li:last-child { border-bottom: none; }
    .solution-list li::before {
      content: "✓";
      flex-shrink: 0;
      width: 24px; height: 24px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      display: grid; place-items: center;
      font-size: 13px;
      font-weight: 700;
    }
    .solution-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .solution-cards .pill {
      background: #fff;
      border-radius: var(--radius);
      padding: 22px 20px;
      font-size: 15px;
      font-weight: 600;
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .solution-cards .pill-emoji {
      width: 32px; height: 32px;
      padding: 6px;
      border-radius: 10px;
      background: var(--bg-soft);
      color: var(--primary-deep);
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .solution-cards .pill-emoji svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

    /* ===== INSIDE ===== */
    .inside-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .inside-card {
      background: #fff;
      border: 1px solid rgba(31, 31, 31, 0.05);
      border-radius: var(--radius);
      padding: 24px 18px 20px;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .inside-card::after {
      content: "";
      position: absolute;
      bottom: -32px; right: -32px;
      width: 80px; height: 80px;
      background: radial-gradient(circle, rgba(95, 174, 75, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .inside-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(31, 31, 31, 0.07);
      border-color: rgba(95, 174, 75, 0.25);
    }
    .inside-icon {
      width: 44px; height: 44px;
      padding: 11px;
      background: linear-gradient(135deg, rgba(95, 174, 75, 0.16), rgba(95, 174, 75, 0.04));
      color: var(--primary-deep);
      border-radius: 12px;
      display: grid; place-items: center;
      margin-bottom: 14px;
      flex-shrink: 0;
      margin-left: auto;
      margin-right: auto;
    }
    .inside-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .inside-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; position: relative; z-index: 1; }
    .inside-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; position: relative; z-index: 1; }

    /* ===== STEPS ===== */
    .steps-bg {
      background: #fff;
      border-radius: var(--radius-xl);
      padding: 72px 32px;
    }
    .steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      position: relative;
    }
    .steps.steps-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .step {
      text-align: left;
      position: relative;
    }
    .step-num {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      padding: 5px 12px;
      border-radius: 999px;
      margin-bottom: 14px;
    }
    .step h3 { font-size: 16px; margin-bottom: 8px; font-weight: 700; line-height: 1.3; }
    .step p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
    .steps-cta-wrap { text-align: center; margin-top: 56px; }

    /* ===== FOR WHOM ===== */
    .forwhom-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .forwhom-card {
      padding: 36px 32px;
      border-radius: var(--radius-lg);
    }
    .forwhom-yes {
      background: var(--bg-warm);
    }
    .forwhom-no {
      background: #fff;
      border: 1px solid var(--line);
    }
    .forwhom-card h3 {
      font-size: 22px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .forwhom-card ul { list-style: none; }
    .forwhom-card li {
      padding: 10px 0;
      font-size: 15px;
      line-height: 1.5;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .forwhom-yes li::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; }
    .forwhom-no li::before { content: "✕"; color: var(--danger); font-weight: 700; flex-shrink: 0; }
    .forwhom-disclaimer {
      grid-column: 1 / -1;
      text-align: center;
      font-size: 14px;
      color: var(--text-muted);
      padding: 16px;
      margin-top: 8px;
    }

    /* ===== MAX PREVIEW ===== */
    .max-preview {
      background: var(--bg-soft);
      border-radius: var(--radius-xl);
    }
    .max-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .max-screen {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 16px;
      box-shadow: var(--shadow-md);
      text-align: center;
    }
    .max-img-placeholder {
      aspect-ratio: 9 / 19.5;
      max-height: 540px;
      max-width: 280px;
      margin-left: auto;
      margin-right: auto;
      background: linear-gradient(135deg, #f5f5f5 0%, #eaeaea 100%);
      border-radius: var(--radius);
      margin-bottom: 16px;
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
    }
    .max-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
    .max-img-placeholder .ph-text { color: #aaa; font-size: 12px; padding: 12px; text-align: center; }
    .max-screen h4 { font-size: 16px; margin-bottom: 6px; font-weight: 700; }
    .max-screen p { font-size: 13px; color: var(--text-muted); padding: 0 8px 8px; }
    .max-note {
      margin-top: 32px;
      padding: 18px 24px;
      background: #fff;
      border-radius: var(--radius);
      font-size: 14px;
      text-align: center;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      color: var(--text-muted);
    }
    .max-note strong { color: var(--text); }

    /* ===== REVIEWS ===== */
    .reviews-disclaimer {
      text-align: center;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 36px;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .review {
      background: var(--bg-warm);
      border-radius: var(--radius-lg);
      padding: 24px;
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 24px;
      align-items: center;
    }
    .review-photo {
      width: 220px;
      aspect-ratio: 1;
      border-radius: 14px;
      background: #ddd;
      overflow: hidden;
      position: relative;
      cursor: zoom-in;
      border: none;
      padding: 0;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .review-photo:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    .review-photo img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .review-photo .ph-text {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: #888;
      font-size: 11px;
      text-align: center;
      padding: 6px;
    }
    .zoom-icon {
      position: absolute;
      top: 8px; right: 8px;
      width: 30px; height: 30px;
      background: rgba(31, 31, 31, 0.6);
      color: #fff;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 14px;
      pointer-events: none;
      backdrop-filter: blur(4px);
    }
    .reviews-hint {
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 24px;
    }

    /* ===== LIGHTBOX ===== */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(15, 15, 15, 0.92);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 200;
      padding: 24px;
      cursor: zoom-out;
      opacity: 0;
      transition: opacity 0.2s ease;
    }
    .lightbox.open { display: flex; opacity: 1; }
    .lightbox-content {
      max-width: 96vw;
      max-height: 92vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .lightbox-content img {
      max-width: 100%;
      max-height: 80vh;
      width: auto; height: auto;
      border-radius: 12px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    }
    .lightbox-caption {
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      text-align: center;
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 999px;
    }
    .lightbox-close,
    .lightbox-nav {
      position: absolute;
      width: 48px; height: 48px;
      background: rgba(255, 255, 255, 0.15);
      border: none;
      color: #fff;
      font-size: 24px;
      border-radius: 50%;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: background 0.2s ease;
    }
    .lightbox-close { top: 24px; right: 24px; }
    .lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 28px; }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
    .lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
    @media (max-width: 540px) {
      .lightbox-nav { width: 42px; height: 42px; font-size: 22px; }
      .lightbox-prev { left: 8px; }
      .lightbox-next { right: 8px; }
    }
    .review-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .review-result {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 12px;
    }
    .review-text { font-size: 14px; line-height: 1.6; color: var(--text); }

    /* ===== PRICE ===== */
    .price-bg {
      background: #fff;
      border-radius: var(--radius-xl);
      padding: 72px 32px;
    }
    .price-card {
      max-width: 560px;
      margin: 0 auto;
      background: var(--bg);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      text-align: center;
      border: 2px solid var(--primary);
      box-shadow: 0 16px 40px rgba(95, 174, 75, 0.12);
    }
    .price-amount {
      font-size: 64px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 8px;
    }
    .price-amount .currency { font-size: 36px; }
    .price-note {
      color: var(--text-muted);
      font-size: 15px;
      margin-bottom: 28px;
    }
    .price-list {
      list-style: none;
      text-align: left;
      margin: 28px 0;
      padding: 24px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .price-list li {
      padding: 6px 0;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 15px;
    }
    .price-list li::before {
      content: "✓";
      color: var(--primary);
      font-weight: 700;
      flex-shrink: 0;
    }
    .price-trust {
      display: flex;
      gap: 24px;
      justify-content: center;
      margin-top: 16px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .price-trust span::before {
      content: "";
      display: inline-block;
      width: 14px; height: 14px;
      background: var(--primary);
      border-radius: 50%;
      margin-right: 6px;
      vertical-align: middle;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 7L6 10L11 4' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
      mask-size: 12px;
    }

    /* ===== TRUST ROW: способы оплаты ===== */
    .pay-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }
    .pay-row-label {
      width: 100%;
      text-align: center;
      font-size: 11px;
      color: #B5B5AC;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .pay-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 30px;
      min-width: 56px;
      padding: 0 11px;
      border-radius: 7px;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.02em;
      line-height: 1;
      white-space: nowrap;
      border: 1px solid transparent;
    }
    /* МИР — фирменный градиент бирюза → зелёный */
    .pay-mir {
      background: linear-gradient(135deg, #00B5BC 0%, #009E51 100%);
      color: #fff;
      font-style: italic;
      letter-spacing: 0.06em;
    }
    /* СберPay — фирменный зелёный */
    .pay-sber {
      background: #21A038;
      color: #fff;
    }
    .pay-sber-mark {
      display: inline-block;
      width: 14px; height: 14px;
      margin-right: 5px;
      background: #fff;
      border-radius: 50%;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M5 7l-1.5 5L8 10M19 7l1.5 5-4.5-2M12 4v16'/%3E%3C/svg%3E") no-repeat center;
      mask-size: contain;
    }
    /* T-Pay — фирменный жёлтый Тинькофф */
    .pay-tinkoff {
      background: #FFDD2D;
      color: #1A1A1A;
    }
    /* СБП — фирменные малиновый+бирюзовый */
    .pay-sbp {
      background: #fff;
      color: #1A1A1A;
      border-color: #E5E5DD;
      gap: 6px;
    }
    .pay-sbp::before {
      content: "";
      width: 14px; height: 14px;
      border-radius: 3px;
      background: conic-gradient(from 45deg, #E63950 0deg, #FF8C00 90deg, #FFC700 180deg, #2BB7B6 270deg, #E63950 360deg);
    }
    @media (max-width: 540px) {
      .pay-badge { height: 28px; font-size: 11px; min-width: 50px; padding: 0 9px; }
      .pay-row { gap: 6px; }
    }

    /* ===== FAQ ===== */
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid var(--line);
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 24px 56px 24px 0;
      text-align: left;
      font-size: 17px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      position: relative;
      font-family: inherit;
      line-height: 1.4;
    }
    .faq-q::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--bg-soft);
      color: var(--primary-deep);
      display: grid;
      place-items: center;
      font-size: 22px;
      font-weight: 400;
      transition: transform 0.2s;
    }
    .faq-item.open .faq-q::after { content: "−"; }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .faq-item.open .faq-a { max-height: 4000px; padding: 0 8px 24px 0; }
    .faq-a p { margin-bottom: 12px; }
    .faq-a p:last-child { margin-bottom: 0; }
    .faq-a strong { color: var(--text); font-weight: 600; }

    /* ===== FINAL CTA ===== */
    .final-cta {
      background: var(--primary-deep);
      color: #fff;
      border-radius: var(--radius-xl);
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: "";
      position: absolute;
      width: min(500px, 60vw); height: min(500px, 60vw);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      top: -20%; right: -15%;
      pointer-events: none;
    }
    .final-cta::after {
      content: "";
      position: absolute;
      width: min(300px, 45vw); height: min(300px, 45vw);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      bottom: -15%; left: -12%;
      pointer-events: none;
    }
    .final-cta-inner {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
    }
    .final-cta h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 20px;
      color: #fff;
    }
    .final-cta p {
      font-size: 18px;
      opacity: 0.92;
      margin-bottom: 32px;
      line-height: 1.5;
    }
    .final-cta .micro-cta {
      color: rgba(255, 255, 255, 0.75);
      margin-top: 16px;
    }

    /* ===== FOOTER ===== */
    footer {
      padding: 48px 0 24px;
      border-top: 1px solid var(--line);
      margin-top: 80px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 32px;
    }
    .footer-col h4 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      margin-bottom: 14px;
      font-weight: 600;
    }
    .footer-col p, .footer-col a {
      font-size: 14px;
      color: var(--text);
      display: block;
      padding: 4px 0;
      line-height: 1.5;
    }
    .footer-col a:hover { color: var(--primary-deep); }
    .footer-disclaimer {
      padding: 24px;
      background: var(--bg-warm);
      border-radius: var(--radius);
      font-size: 13px;
      color: var(--text);
      text-align: center;
      line-height: 1.55;
    }
    .footer-legal {
      margin-top: 18px;
      padding: 14px 18px;
      font-size: 11px;
      color: #BFBFB8;
      line-height: 1.55;
      text-align: center;
    }
    .footer-legal a {
      color: #A8A89F;
      border-bottom: 1px dotted #D5D5CC;
    }
    .footer-bottom {
      margin-top: 8px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      font-size: 11px;
      color: #C5C5BD;
      text-align: center;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 980px) {
      .hero-grid, .solution-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual {
        max-width: 100%;
        margin-left: 0;
      }
      .hero-card-2 { margin-left: 0; }
      .hero-card { transform: none; }
      .problems-grid, .inside-grid { grid-template-columns: repeat(2, 1fr); }
      .steps, .steps.steps-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .forwhom-grid, .reviews-grid, .max-grid, .footer-grid { grid-template-columns: 1fr; }
      section { padding: 56px 0; }
      .problems, .steps-bg, .price-bg, .solution, .max-preview, .final-cta { padding: 48px 24px; }
      .price-card { padding: 36px 24px; }
      .review {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
        text-align: center;
      }
      .review-photo {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
      }
      .review-result, .review-name { text-align: center; }
      .quiz-invite { padding: 28px 24px; flex-direction: column; text-align: center; }
      .quiz-invite-text { min-width: 0; }
      .men-trigger { flex-direction: column; text-align: center; padding: 20px 22px; }
    }
    @media (max-width: 540px) {
      .container { padding: 0 16px; }
      body { font-size: 15px; }

      /* sticky-bar короче на телефоне; кнопка ≥44px (Apple HIG / Material) */
      .sticky-cta { padding: 10px 14px; gap: 12px; font-size: 13px; }
      .sticky-cta a { padding: 12px 18px; font-size: 14px; min-height: 44px; display: inline-flex; align-items: center; }
      .sticky-cta-long { display: none; }

      header { padding: 16px 0; }
      .hero { padding: 32px 0 40px; }
      .header-cta { display: none; }
      .logo { font-size: 16px; }

      /* типографика */
      h1 { font-size: 28px; line-height: 1.15; }
      .hero-sub { font-size: 16px; margin-bottom: 24px; }
      .badge { font-size: 12px; padding: 6px 12px; margin-bottom: 18px; }
      .section-head { margin-bottom: 32px; }
      .section-head h2 { font-size: 24px; }
      .section-head p { font-size: 15px; }
      .eyebrow { font-size: 11px; }

      /* секции — снизим вертикальный воздух */
      section { padding: 40px 0; }
      .quiz-invite-section { padding: 24px 0; }
      .problems, .steps-bg, .price-bg, .solution, .max-preview, .final-cta { padding: 36px 18px; border-radius: 18px; }
      .problems-grid, .inside-grid { grid-template-columns: 1fr; gap: 10px; }
      .inside-card { padding: 18px 18px 16px; }
      .inside-icon { width: 40px; height: 40px; padding: 9px; margin-bottom: 12px; }
      .steps, .steps.steps-3 { grid-template-columns: 1fr; gap: 18px; }
      .problem-card { padding: 22px 22px; text-align: center; }
      .problem-emoji { margin-left: auto; margin-right: auto; }
      .inside-card { padding: 22px 20px; }
      .step { padding: 0; }

      /* кнопки */
      .btn { font-size: 16px; padding: 16px 24px; border-radius: 12px; }
      .btn-large { padding: 18px 24px; font-size: 16px; width: 100%; border-radius: 14px; }

      /* hero */
      .hero-card { padding: 18px 20px; grid-template-columns: 48px 1fr; gap: 14px; }
      .hero-card-icon { width: 48px; height: 48px; font-size: 22px; }
      .hero-card h4 { font-size: 16px; }
      .hero-card p { font-size: 13px; }

      /* problems-bottom & men-trigger — компактнее */
      .problems-bottom { padding: 20px 22px; font-size: 15px; margin-top: 28px; }
      .men-trigger { padding: 18px 22px; font-size: 14px; }
      .men-trigger-icon { font-size: 28px; }

      /* solution */
      .solution-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
      .solution-cards .pill { font-size: 13px; padding: 14px 12px; gap: 8px; }
      .solution-cards .pill-emoji { font-size: 20px; }

      /* for-whom */
      .forwhom-card { padding: 26px 22px; }
      .forwhom-card h3 { font-size: 18px; }
      .forwhom-card li { font-size: 14px; }

      /* MAX preview */
      .max-screen { padding: 12px; }
      .max-img-placeholder { max-height: 420px; }
      .max-screen h4 { font-size: 14px; }
      .max-screen p { font-size: 12px; }
      .max-note { font-size: 13px; padding: 14px 18px; }

      /* reviews */
      .review { padding: 18px; }
      .review-photo { max-width: 280px; }
      .review-name { font-size: 14px; }
      .review-text { font-size: 13.5px; }
      .reviews-hint { font-size: 12px; }

      /* price */
      .price-card { padding: 28px 20px; }
      .price-amount { font-size: 44px; }
      .price-amount .currency { font-size: 26px; }
      .price-list li { font-size: 14px; }
      .price-trust { flex-direction: column; gap: 8px; font-size: 12px; }

      /* FAQ */
      .faq-q { font-size: 15px; padding: 18px 44px 18px 0; }
      .faq-q::after { width: 26px; height: 26px; font-size: 18px; }
      .faq-item.open .faq-a { padding-right: 44px; padding-bottom: 18px; font-size: 14px; }

      /* final cta */
      .final-cta { padding: 48px 22px; }
      .final-cta h2 { font-size: 26px; }
      .final-cta p { font-size: 15px; margin-bottom: 24px; }

      /* quiz */
      .quiz-invite { padding: 22px 20px; gap: 16px; }
      .quiz-invite h3 { font-size: 18px; }
      .quiz-invite p { font-size: 13px; }
      .btn-quiz { padding: 12px 20px; font-size: 14px; width: 100%; justify-content: center; }

      /* footer — мельче (item 3) */
      footer { padding: 32px 0 18px; margin-top: 48px; }
      .footer-grid { gap: 24px; margin-bottom: 20px; }
      .footer-col h4 { font-size: 11px; margin-bottom: 8px; }
      .footer-col p, .footer-col a { font-size: 12px; padding: 3px 0; line-height: 1.4; }
      .footer-disclaimer { font-size: 12px; padding: 16px 18px; }
      .footer-bottom { font-size: 11px; margin-top: 16px; padding-top: 16px; }

      /* item 19: центрирование заголовков на мобильном */
      h1, h2, h3, h4,
      .section-head h2,
      .section-head p,
      .hero-content,
      .hero-bullets,
      .hero-content > a,
      .hero-content > p {
        text-align: center;
      }
      .hero-bullets li { text-align: left; }
      .badge { display: inline-flex; }
      .hero-content { display: flex; flex-direction: column; align-items: center; }
      .hero-bullets { width: 100%; max-width: 380px; margin-left: auto; margin-right: auto; }
      .solution h2 { text-align: center; }
      .solution-list { max-width: 480px; margin-left: auto; margin-right: auto; }
      .step { text-align: center; }
      .step-num { display: inline-block; }
      .forwhom-card { text-align: left; }
      .forwhom-card h3 { justify-content: center; }
      .review-text { text-align: center; }

      /* footer — выравнивание по левому краю на мобиле для читаемости */
      .footer-col { text-align: center; }
      .footer-disclaimer { text-align: center; }
    }

    @media (max-width: 380px) {
      h1 { font-size: 24px; }
      .section-head h2 { font-size: 22px; }
      .price-amount { font-size: 38px; }
      .solution-cards { grid-template-columns: 1fr; }
      .sticky-cta strong { display: none; }
    }

/* ===== SKIP LINK (accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--primary-deep);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== QUIZ PAGE ===== */
.quiz-page { min-height: 100vh; background: var(--bg); display: flex; }
.quiz-sidebar { display: none; }
@media (min-width: 1024px) {
  .quiz-sidebar {
    display: flex; width: 45%; position: relative;
    background: var(--primary-deep); flex-direction: column;
    justify-content: flex-end; padding: 48px; color: #fff;
  }
}
.quiz-content {
  width: 100%; display: flex; align-items: center;
  justify-content: center; padding: 24px 16px;
}
.quiz-header { margin-bottom: 32px; }
.quiz-header h1 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; }
.quiz-step-num { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.progress-bar { width: 100%; height: 6px; background: var(--line); border-radius: 99px; margin-bottom: 32px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary); border-radius: 99px; transition: width 0.3s ease; }
.quiz-card { background: #fff; border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-md); }
.quiz-question { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  border: 2px solid var(--line); border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s; font-size: 16px; font-weight: 500; background: #fff;
}
.quiz-option:hover { border-color: var(--primary-soft); background: var(--bg-soft); }
.quiz-option.selected { border-color: var(--primary); background: var(--bg-soft); }
.quiz-option .radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line);
  flex-shrink: 0; display: grid; place-items: center; transition: all 0.2s;
}
.quiz-option.selected .radio { border-color: var(--primary); background: var(--primary); }
.quiz-option.selected .radio::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 700; }
.quiz-option .checkbox {
  width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--line);
  flex-shrink: 0; display: grid; place-items: center; transition: all 0.2s;
}
.quiz-option.selected .checkbox { border-color: var(--primary); background: var(--primary); }
.quiz-option.selected .checkbox::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 700; }
.quiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line);
}
.quiz-nav .btn-back {
  display: flex; align-items: center; gap: 8px; padding: 16px 20px;
  border: none; background: none; color: var(--text-muted); font-weight: 600;
  cursor: pointer; font-size: 15px; font-family: inherit; transition: color 0.2s;
}
.quiz-nav .btn-back:hover { color: var(--text); }
.quiz-nav .btn-back:disabled { opacity: 0.3; cursor: default; }
.quiz-nav .btn-next {
  display: flex; align-items: center; gap: 8px; padding: 16px 32px;
  background: #F97316; color: #fff; border: none; border-radius: var(--radius-lg);
  font-weight: 700; font-size: 17px; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.25); font-family: inherit;
}
.quiz-nav .btn-next:hover { background: #EA580C; }
.quiz-nav .btn-next:disabled { opacity: 0.4; cursor: default; }
@media (max-width: 540px) {
  .quiz-card { padding: 24px 20px; }
  .quiz-question { font-size: 18px; }
  .quiz-option { padding: 14px 16px; font-size: 15px; }
  .quiz-nav .btn-next { width: 100%; justify-content: center; }
  .quiz-nav .btn-back { padding: 12px 16px; }
}

/* ===== RESULT PAGE ===== */
.result-page { min-height: 100vh; background: var(--bg); }
.result-hero {
  position: relative; height: 240px; background: var(--primary-deep);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.result-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3); border-radius: 999px;
  color: #fff; font-weight: 600; font-size: 14px;
}
.result-content { max-width: 680px; margin: -80px auto 0; padding: 0 16px; position: relative; z-index: 1; }
.result-main-card {
  background: #fff; border-radius: var(--radius-xl); padding: 48px 40px;
  text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.result-range {
  font-size: clamp(48px, 8vw, 72px); font-weight: 800; color: var(--primary);
  letter-spacing: -0.02em; line-height: 1;
}
.result-timeframe { font-size: 22px; font-weight: 700; margin-top: 12px; color: var(--text); }
.result-summary { font-size: 17px; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }
.result-insights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.result-insight { padding: 24px; border-radius: var(--radius-lg); text-align: left; }
.result-insight--problem { background: #FFF5F5; border: 1px solid #FED7D7; }
.result-insight--solution { background: var(--bg-soft); border: 1px solid rgba(95,174,75,0.2); }
.result-insight h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.result-insight p { font-size: 15px; color: var(--text); line-height: 1.6; }
.result-cta-card {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--primary-deep), #4ade80);
  border-radius: var(--radius-xl); padding: 48px 40px; text-align: center; color: #fff;
}
.result-cta-card h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: #fff; }
.result-cta-card p { font-size: 17px; opacity: 0.9; margin-top: 12px; max-width: 480px; margin-left: auto; margin-right: auto; }
.result-cta-card .btn { margin-top: 32px; }
.result-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  padding: 16px; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); z-index: 50;
}
@media (max-width: 768px) {
  .result-mobile-cta { display: block; }
  .result-insights { grid-template-columns: 1fr; }
  .result-content { margin-top: -60px; }
  .result-main-card { padding: 32px 24px; }
  .result-cta-card { padding: 32px 24px; }
  .result-page { padding-bottom: 80px; }
}

/* ===== LEGAL PAGES ===== */
.legal-page { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-page h1 { font-size: clamp(24px, 4vw, 32px); font-weight: 800; margin-bottom: 32px; }
.legal-page h2 { font-size: 20px; font-weight: 700; margin-top: 32px; margin-bottom: 12px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 12px; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px;
  color: var(--primary-deep); font-weight: 600; font-size: 14px;
}
