  :root {
    --ink: #0d0a14;
    --parchment: #f5ede0;
    --gold: #c9a84c;
    --gold-light: #e8cb7a;
    --rose: #a0556a;
    --violet: #2e1f4a;
    --mist: #cdc8d8;
    --card-bg: #1a1228;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Raleway', system-ui, sans-serif; background: var(--ink); color: var(--parchment); min-height: 100vh; overflow-x: hidden; }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 10%, rgba(46,31,74,0.8) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 80%, rgba(160,85,106,0.15) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 50%, rgba(13,10,20,1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
  }

  .stars {
    position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
    background-image:
      radial-gradient(circle, rgba(232,203,122,0.55) 1px, transparent 1px),
      radial-gradient(circle, rgba(232,203,122,0.35) 1px, transparent 1px),
      radial-gradient(circle, rgba(232,203,122,0.2) 1px, transparent 1px);
    background-size: 180px 180px, 120px 120px, 80px 80px;
    background-position: 0 0, 40px 60px, 90px 30px;
  }
  .star { display: none; }
  @keyframes twinkle { 0%, 100% { opacity: 0; } 50% { opacity: var(--bright, 0.6); } }

  .step { display: none; position: relative; z-index: 1; min-height: 100vh; padding: 40px 20px 60px; flex-direction: column; align-items: center; justify-content: center; animation: fadeUp 0.6s ease forwards; }
  .step.active { display: flex; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  .hero-ornament { font-size: 52px; margin-bottom: 16px; filter: drop-shadow(0 0 20px rgba(201,168,76,0.5)); animation: float 4s ease-in-out 3; }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  .hero-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; opacity: 0.8; }

  h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 8vw, 48px); font-weight: 300; line-height: 1.2; text-align: center; color: var(--parchment); margin-bottom: 20px; max-width: 340px; }
  h1 em { font-style: italic; color: var(--gold-light); }

  .hero-sub { font-size: 15px; line-height: 1.7; color: var(--mist); text-align: center; max-width: 320px; margin-bottom: 36px; font-weight: 300; }
  .hero-divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 28px; }

  .btn-primary { display: block; width: 100%; max-width: 300px; padding: 18px 24px; background: linear-gradient(135deg, #c9a84c 0%, #a07830 100%); color: var(--ink); font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; text-align: center; position: relative; overflow: hidden; transition: all 0.3s ease; }
  .btn-primary::before { content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%; background: rgba(255,255,255,0.2); transform: skewX(-20deg); animation: shimmer 3s ease-in-out 5; }
  @keyframes shimmer { 0% { left: -60%; } 100% { left: 160%; } }
  .btn-primary:active { transform: scale(0.97); }

  .time-note { margin-top: 14px; font-size: 12px; color: var(--mist); letter-spacing: 1px; opacity: 0.7; }

  .step-indicator { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 28px; opacity: 0.6; }
  .question-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 6vw, 28px); font-weight: 400; line-height: 1.35; text-align: center; color: var(--parchment); margin-bottom: 32px; max-width: 300px; }

  .options { width: 100%; max-width: 340px; display: flex; flex-direction: column; gap: 12px; }
  .option-btn { width: 100%; padding: 16px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); color: var(--parchment); font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.5; text-align: left; cursor: pointer; transition: all 0.25s ease; }
  .option-btn::before { content: '◆'; font-size: 8px; color: var(--gold); margin-right: 10px; opacity: 0.5; transition: opacity 0.25s; }
  .option-btn:active, .option-btn.selected { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.6); }
  .option-btn.selected::before { opacity: 1; }

  .ritual-symbol { font-size: 64px; margin-bottom: 24px; animation: pulse-glow 3s ease-in-out 4; }
  @keyframes pulse-glow { 0%, 100% { filter: drop-shadow(0 0 10px rgba(201,168,76,0.3)); } 50% { filter: drop-shadow(0 0 30px rgba(201,168,76,0.7)); } }
  .ritual-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--gold-light); text-align: center; margin-bottom: 20px; font-style: italic; }
  .ritual-text { font-size: 15px; line-height: 1.8; color: var(--mist); text-align: center; max-width: 300px; margin-bottom: 36px; font-weight: 300; }

  .cards-label { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--parchment); text-align: center; margin-bottom: 8px; }
  .cards-hint { font-size: 12px; letter-spacing: 2px; color: var(--mist); text-align: center; margin-bottom: 36px; opacity: 0.7; }
  .cards-row { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; }

  .tarot-card { will-change: transform; width: 90px; height: 150px; cursor: pointer; position: relative; transition: transform 0.3s ease; }
  .tarot-card:active { transform: scale(0.96); }
  .card-inner { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1); }
  .card-inner.flipped { transform: rotateY(180deg); }
  .card-face, .card-back { position: absolute; inset: 0; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 4px; }
  .card-back { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
  .card-back-pattern { width: 70%; height: 70%; border: 1px solid rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; font-size: 28px; color: rgba(201,168,76,0.4); }
  .card-glow { position: absolute; inset: -3px; background: linear-gradient(135deg, rgba(201,168,76,0.3), transparent, rgba(201,168,76,0.3)); border-radius: 6px; opacity: 0; transition: opacity 0.3s; z-index: -1; }
  .tarot-card:hover .card-glow { opacity: 1; }
  .tarot-card:hover .card-back { border-color: rgba(201,168,76,0.7); }
  .card-face { transform: rotateY(180deg); background: linear-gradient(160deg, #1e1535 0%, #0d0a14 100%); border: 1px solid rgba(201,168,76,0.5); display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 10px 6px; }
  .card-face-icon { font-size: 36px; margin-bottom: 8px; }
  .card-face-name { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: var(--gold-light); text-align: center; letter-spacing: 1px; line-height: 1.3; }

  .reveal-card-display { width: 120px; height: 200px; background: linear-gradient(160deg, #1e1535 0%, #0d0a14 100%); border: 1px solid rgba(201,168,76,0.6); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-direction: column; margin-bottom: 28px; padding: 16px; box-shadow: 0 0 40px rgba(201,168,76,0.2); }
  .reveal-card-icon { font-size: 48px; margin-bottom: 10px; }
  .reveal-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--parchment); text-align: center; margin-bottom: 16px; }
  .reveal-text { font-size: 15px; line-height: 1.8; color: var(--mist); text-align: center; max-width: 300px; margin-bottom: 32px; font-weight: 300; }

  .curiosity-block { width: 100%; max-width: 340px; background: rgba(46,31,74,0.4); border: 1px solid rgba(201,168,76,0.15); padding: 24px 20px; margin-bottom: 28px; }
  .curiosity-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--gold-light); text-align: center; margin-bottom: 20px; font-style: italic; }
  .curiosity-items { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .curiosity-items li { font-size: 14px; color: var(--parchment); font-weight: 300; line-height: 1.5; }

  .lead-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 7vw, 32px); font-weight: 300; color: var(--parchment); text-align: center; margin-bottom: 12px; max-width: 300px; line-height: 1.3; }
  .lead-sub { font-size: 14px; color: var(--mist); text-align: center; margin-bottom: 32px; max-width: 280px; line-height: 1.7; font-weight: 300; }

  .phone-input-wrap { width: 100%; max-width: 300px; position: relative; margin-bottom: 16px; }
  .phone-input { width: 100%; padding: 18px 20px 18px 50px; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.3); border-radius: 0; color: var(--parchment); font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 300; outline: none; transition: border-color 0.3s; -webkit-appearance: none; }
  .phone-input:focus { border-color: rgba(201,168,76,0.7); }
  .phone-input::placeholder { color: rgba(139,127,160,0.5); }
  .phone-prefix { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 16px; font-weight: 400; }
  .privacy-note { font-size: 11px; color: #4a4458; text-align: center; opacity: 0.6; margin-top: 12px; max-width: 280px; line-height: 1.6; }

  .otp-wrap { display: flex; gap: 10px; margin-bottom: 20px; justify-content: center; }
  .otp-single { width: 160px; height: 64px; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.3); color: var(--parchment); font-family: 'Cormorant Garamond', serif; font-size: 32px; text-align: center; letter-spacing: 10px; outline: none; transition: border-color 0.3s; -webkit-appearance: none; border-radius: 0; }
  .otp-single:focus { border-color: rgba(201,168,76,0.8); }
  .otp-resend { font-size: 13px; color: var(--mist); text-align: center; opacity: 0.7; cursor: pointer; margin-top: 10px; }
  .otp-resend span { color: var(--gold); text-decoration: underline; cursor: pointer; }

  .report-header { text-align: center; margin-bottom: 32px; }
  .report-symbol { font-size: 40px; margin-bottom: 12px; }
  .report-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--gold-light); font-style: italic; margin-bottom: 8px; }
  .report-subtitle { font-size: 12px; letter-spacing: 3px; color: var(--mist); text-transform: uppercase; opacity: 0.6; }
  .report-section { width: 100%; max-width: 360px; margin-bottom: 24px; padding: 24px 20px; background: rgba(255,255,255,0.03); border-left: 2px solid rgba(201,168,76,0.4); }
  .report-section-num { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; opacity: 0.6; }
  .report-section-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--parchment); margin-bottom: 12px; line-height: 1.3; }
  .report-section-text { font-size: 14px; line-height: 1.85; color: var(--mist); font-weight: 300; }
  .report-card-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); padding: 4px 12px; font-size: 11px; color: var(--gold-light); letter-spacing: 1px; margin-bottom: 12px; }
  .report-advice { width: 100%; max-width: 360px; background: linear-gradient(135deg, rgba(46,31,74,0.6), rgba(13,10,20,0.4)); border: 1px solid rgba(201,168,76,0.3); padding: 28px 24px; text-align: center; margin-bottom: 32px; }
  .report-advice-icon { font-size: 32px; margin-bottom: 12px; }
  .report-advice-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--gold-light); font-style: italic; margin-bottom: 12px; }
  .report-advice-text { font-size: 14px; line-height: 1.85; color: var(--mist); font-weight: 300; }

  .btn-secondary { display: block; width: 100%; max-width: 300px; padding: 16px; background: transparent; border: 1px solid rgba(201,168,76,0.4); color: var(--gold-light); font-family: 'Raleway', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; text-align: center; transition: all 0.3s; margin-bottom: 12px; }
  .btn-secondary:active { background: rgba(201,168,76,0.1); }

  .progress-dots { display: flex; gap: 6px; justify-content: center; margin-bottom: 32px; }
  .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(201,168,76,0.2); transition: all 0.3s; }
  .dot.done { background: rgba(201,168,76,0.5); }
  .dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

  .gold-line { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 24px; }

  #deck-arena { width: 100px; height: 160px; position: relative; margin: 0 auto 24px; perspective: 600px; }
  .deck-card { position: absolute; width: 90px; height: 148px; background: var(--card-bg); border: 1px solid rgba(201,168,76,0.28); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: rgba(201,168,76,0.35); top: 0; left: 5px; transform-origin: center bottom; will-change: transform; box-shadow: 0 2px 8px rgba(0,0,0,0.5); transform: translateY(calc(var(--i, 0) * -0.8px)) translateX(calc(var(--i, 0) * 0.3px)); }

  @keyframes shuffle-left { 0% { transform: translateY(0) translateX(0) rotate(0deg); } 35% { transform: translateX(-130px) translateY(-30px) rotate(-22deg); } 70% { transform: translateX(-130px) translateY(-30px) rotate(-22deg); } 100% { transform: translateY(0) translateX(0) rotate(0deg); } }
  @keyframes shuffle-right { 0% { transform: translateY(0) translateX(0) rotate(0deg); } 35% { transform: translateX(130px) translateY(-30px) rotate(22deg); } 70% { transform: translateX(130px) translateY(-30px) rotate(22deg); } 100% { transform: translateY(0) translateX(0) rotate(0deg); } }
  .deck-card.fly-left  { animation: shuffle-left  var(--sd, 0.55s) ease-in-out forwards; }
  .deck-card.fly-right { animation: shuffle-right var(--sd, 0.55s) ease-in-out forwards; }

  @keyframes deal-out-left   { 0% { transform: translateY(0) translateX(0) rotate(0); opacity:0.9; } 60% { transform: translateY(-80px) translateX(-115px) rotate(-10deg); opacity:1; } 100% { transform: translateY(0) translateX(-115px) rotate(0); opacity:1; } }
  @keyframes deal-out-center { 0% { transform: translateY(0) translateX(0) rotate(0); opacity:0.9; } 60% { transform: translateY(-90px) translateX(0) rotate(0); opacity:1; } 100% { transform: translateY(0) translateX(0) rotate(0); opacity:1; } }
  @keyframes deal-out-right  { 0% { transform: translateY(0) translateX(0) rotate(0); opacity:0.9; } 60% { transform: translateY(-80px) translateX(115px) rotate(10deg); opacity:1; } 100% { transform: translateY(0) translateX(115px) rotate(0); opacity:1; } }
  .deck-card.deal-left   { animation: deal-out-left   0.6s cubic-bezier(0.23,1,0.32,1) forwards; }
  .deck-card.deal-center { animation: deal-out-center 0.6s cubic-bezier(0.23,1,0.32,1) forwards; }
  .deck-card.deal-right  { animation: deal-out-right  0.6s cubic-bezier(0.23,1,0.32,1) forwards; }

  @keyframes slide-in-card { from { opacity:0; transform: translateY(-40px) scale(0.85); } to { opacity:1; transform: translateY(0) scale(1); } }
  #pick-row .tarot-card { will-change: transform; opacity: 0; animation: none; }
  #pick-row .tarot-card.appear { animation: slide-in-card 0.5s cubic-bezier(0.23,1,0.32,1) forwards; }

  .loading-overlay { display: none; position: fixed; inset: 0; background: rgba(13,10,20,0.92); z-index: 100; flex-direction: column; align-items: center; justify-content: center; }
  .loading-overlay.show { display: flex; }
  .loading-orb { width: 60px; height: 60px; border: 1px solid rgba(201,168,76,0.3); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 20px; }
  @keyframes spin { to { transform: rotate(360deg); } }
  .loading-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--mist); font-style: italic; animation: blink 2s ease-in-out infinite; }
  @keyframes blink { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

  .cards-reveal-row { display: flex; gap: 14px; justify-content: center; align-items: flex-end; margin-bottom: 28px; }
  .mini-card { width: 76px; height: 120px; border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; position: relative; }
  .mini-card--revealed { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.6); box-shadow: 0 0 20px rgba(201,168,76,0.2); transform: scale(1.08); }
  .mini-card--hidden { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
  .mini-card-icon { font-size: 28px; line-height: 1; }
  .mini-card--hidden .mini-card-icon { font-size: 22px; color: rgba(139,127,160,0.4); }
  .mini-card-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); opacity: 0.7; }
  .mini-card--hidden .mini-card-label { color: var(--mist); opacity: 0.4; }

  .reveal-tease { width: 100%; max-width: 320px; background: rgba(160,85,106,0.06); border: 1px solid rgba(160,85,106,0.2); border-left: 2px solid var(--rose); padding: 16px 18px; margin-bottom: 24px; }
  .reveal-tease-label { font-size: 10px; letter-spacing: 2px; color: var(--rose); text-transform: uppercase; margin-bottom: 10px; opacity: 0.9; }
  .reveal-tease-text { font-size: 14px; color: var(--mist); line-height: 1.75; font-weight: 300; }
  .reveal-tease-text strong { color: var(--parchment); font-weight: 500; }

  .three-cards-preview { display: flex; gap: 10px; justify-content: center; align-items: flex-end; margin-bottom: 24px; }
  .preview-card { width: 80px; height: 128px; border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; position: relative; }
  .preview-card--open { background: var(--card-bg); border: 1px solid rgba(201,168,76,0.55); box-shadow: 0 0 24px rgba(201,168,76,0.18); transform: scale(1.06); }
  .preview-card--locked { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); }
  .preview-card--locked::after { content: '🔒'; position: absolute; top: 6px; right: 6px; font-size: 10px; opacity: 0.4; }
  .preview-card-icon { font-size: 26px; line-height: 1; }
  .preview-card--locked .preview-card-icon { font-size: 18px; color: rgba(139,127,160,0.3); }
  .preview-card-name { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: var(--gold-light); text-align: center; }
  .preview-card--locked .preview-card-name { color: var(--mist); opacity: 0.35; }
  .preview-card-tag { font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--mist); opacity: 0.5; text-align: center; margin-top: 2px; }
  .preview-card--open .preview-card-tag { color: var(--gold); opacity: 0.7; }

  .social-proof-bar { display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
  .sp-count { font-size: 13px; color: var(--mist); font-weight: 300; letter-spacing: 0.5px; }
  .sp-count #sp-counter { color: var(--gold-light); font-weight: 500; }

  .testimonial-block { margin-top: 28px; max-width: 300px; width: 100%; padding: 20px 18px; background: rgba(255,255,255,0.03); border-left: 2px solid rgba(201,168,76,0.3); }
  .testimonial-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
  .testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: var(--parchment); line-height: 1.6; margin-bottom: 10px; font-weight: 300; }
  .testimonial-author { font-size: 11px; color: var(--mist); opacity: 0.7; letter-spacing: 1px; }

  .lead-urgency-badge { display: inline-block; font-size: 11px; letter-spacing: 2px; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 6px 14px; margin-bottom: 20px; text-transform: uppercase; animation: pulse-glow 3s ease-in-out infinite; }

  .ai-report-block {
    width: 100%;
    max-width: 360px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    border-left: 2px solid rgba(201,168,76,0.5);
    padding: 28px 24px;
    margin-bottom: 40px;
  }

  .ai-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .ai-report-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.9;
    color: var(--parchment);
    font-weight: 300;
    white-space: pre-wrap;
  }

  .reviews-block {
    width: 100%;
    max-width: 300px;
    margin: 28px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .review-card {
    padding: 16px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.1);
    border-left: 2px solid rgba(201,168,76,0.35);
  }

  .review-stars {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .review-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--parchment);
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .review-text {
    font-size: 12px;
    color: var(--mist);
    line-height: 1.65;
    font-weight: 300;
  }

  .review-author {
    font-size: 10px;
    color: var(--mist);
    opacity: 0.5;
    margin-top: 8px;
    letter-spacing: 0.5px;
  }

  .consent-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 14px 16px;
    margin-top: 14px;
    cursor: pointer;
  }

  .consent-box input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .consent-checkmark {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(201,168,76,0.5);
    background: rgba(255,255,255,0.03);
    margin-top: 1px;
    position: relative;
    transition: all 0.2s;
  }

  .consent-box input:checked ~ .consent-checkmark {
    background: var(--gold);
    border-color: var(--gold);
  }

  .consent-box input:checked ~ .consent-checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: 2px solid var(--ink);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
  }

  .consent-text {
    font-size: 11px;
    color: var(--mist);
    line-height: 1.6;
    font-weight: 300;
  }

  .otp-legal {
    margin-top: 28px;
    width: 100%;
    max-width: 360px;
    font-size: 10px;
    color: #4a4458;
    opacity: 0.6;
    line-height: 1.7;
    text-align: left;
    padding: 0 4px 40px;
    font-weight: 300;
  }

  #step-9 { justify-content: flex-start; padding-top: 28px; }
  #step-10 { justify-content: flex-start; padding-top: 32px; }
  #step-9 .lead-title { font-size: 16px; margin-bottom: 8px; }
  #step-9 .three-cards-preview { gap: 8px; margin: 12px 0 14px; }
  #step-9 .preview-card { width: 68px; height: 108px; }
  #step-9 .preview-card-icon { font-size: 22px; }
  #step-9 .preview-card-name { font-size: 10px; }
  #step-9 .preview-card-tag { font-size: 7px; }
  #step-9 .lead-sub { font-size: 13px; line-height: 1.45; margin-bottom: 14px; max-width: 250px; }
  #step-9 .lead-urgency-badge { font-size: 10px; letter-spacing: 1.5px; padding: 5px 10px; margin-bottom: 14px; }
  /* 16px обязателен: iOS Safari зумит страницу при фокусе на поле меньше 16px */
  #step-9 .phone-input { padding: 15px 18px 15px 44px; font-size: 16px; }
  #step-9 .phone-prefix { left: 16px; font-size: 15px; }
  #step-9 .btn-primary { padding: 16px 20px; font-size: 13px; }
  #step-9 .curiosity-block { padding: 12px 14px; margin-bottom: 16px; }
  #step-9 .curiosity-title { font-size: 12px; margin-bottom: 10px; }
  #step-9 .curiosity-items { gap: 8px; }
  #step-9 .curiosity-items li { font-size: 12px; }

  .survey-desc { font-size: 13px; color: var(--mist); text-align: center; max-width: 300px; margin: -20px 0 24px; line-height: 1.6; font-weight: 300; }
  .survey-textarea { width: 100%; max-width: 320px; padding: 14px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.3); border-radius: 0; color: var(--parchment); font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 300; outline: none; resize: vertical; margin-bottom: 24px; }
  .survey-textarea:focus { border-color: rgba(201,168,76,0.7); }
  .survey-actions { display: flex; gap: 12px; width: 100%; max-width: 320px; justify-content: center; margin-top: 8px; }
  .survey-actions .survey-btn { margin-bottom: 0; }
  .survey-actions .btn-primary:disabled, #cards-next-btn:disabled { opacity: 0.4; cursor: default; transform: none; }

  .cards-row { flex-wrap: wrap; }
  .card-img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; min-width: 0; min-height: 0; object-fit: cover; border-radius: 4px; display: block; flex: 0 0 auto; }
  .card-face .card-face-name { word-break: break-word; }
  .tarot-card .card-check { display: flex; position: absolute; top: 6px; right: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); color: var(--ink); font-size: 12px; line-height: 1; align-items: center; justify-content: center; z-index: 2; transform: rotateY(0deg); }
  .tarot-card.selected .card-face { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 0 18px rgba(201,168,76,0.25); }
  .cards-row--limit .tarot-card.selected .card-face { box-shadow: 0 0 0 2px var(--gold); }
  .cards-status { font-size: 12px; letter-spacing: 1px; color: var(--mist); text-align: center; margin-top: 16px; opacity: 0.8; }
  #cards-next-btn { max-width: 300px; }

  .mini-card-img { width: 48px; height: 72px; object-fit: cover; border-radius: 3px; }
  .mini-card--revealed .mini-card-label { max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .preview-card-img { width: 52px; height: 78px; object-fit: cover; border-radius: 3px; }
  .preview-card-name { max-width: 74px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  
  .phone-input { padding-left: 20px; }
  #step-9 .phone-input { padding-left: 18px; }
