/* =============================================
   DIAGNÓSTICO PATRIMONIAL — Folha de Estilos
   ============================================= */

/* ---- CUSTOM PROPERTIES ---- */
:root {
    --gold:        #D4AF37;
    --gold-light:  #F4E4BA;
    --gold-dark:   #B8962E;
    --gold-glow:   rgba(212, 175, 55, 0.25);
    --gold-subtle: rgba(212, 175, 55, 0.08);
    --gold-border: rgba(212, 175, 55, 0.2);
  
    --bg-base:     #09090b;
    --bg-surface:  #18181b;
    --bg-card:     #1c1c1f;
    --bg-elevated: #27272a;
    --bg-border:   #3f3f46;
  
    --text-primary:   #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted:     #71717a;
  
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
  
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --radius-pill: 9999px;
  
    --transition: 0.2s ease;
    --transition-slow: 0.7s ease-out;
  }
  
  /* ---- RESET ---- */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--bg-surface); }
  ::-webkit-scrollbar-thumb { background: var(--bg-border); border-radius: 4px; }
  
  /* =============================================
     ANIMATIONS
     ============================================= */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInScreen {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
  }
  
  @keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  
  @keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
  
  @keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
  }
  
  .pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
  .spin  { animation: spin 1.5s linear infinite; }
  
  /* =============================================
     UTILITY
     ============================================= */
  .gold-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
  }
  
  .text-gold  { color: rgba(212, 175, 55, 0.9); }
  .text-amber { color: var(--gold); }
  
  /* =============================================
     SCREENS
     ============================================= */
  .screen {
    min-height: 100dvh;
    min-height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .screen.active {
    display: flex;
    animation: fadeInScreen 0.45s ease forwards;
  }
  
  .screen-result {
    display: block;
    min-height: auto;
  }
  
  .screen-result.active {
    display: block;
  }
  
  /* =============================================
     BACKGROUND GLOWS
     ============================================= */
  .bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
    z-index: 0;
  }
  
  .bg-glow-tl {
    top: 20%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.05);
  }
  
  .bg-glow-br {
    bottom: 20%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(184, 150, 46, 0.05);
  }
  
  .bg-glow-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  }
  
  /* =============================================
     BTN GOLD — Botão principal
     ============================================= */
  .btn-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    width: 100%;
    max-width: 420px;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-base);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.28);
    transition: all var(--transition);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }
  
  .btn-gold svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
    flex-shrink: 0;
  }
  
  .btn-gold:hover {
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px) scale(1.01);
  }
  
  .btn-gold:hover svg { transform: translateX(4px); }
  
  .btn-gold:active { transform: scale(0.97); }
  
  @media (min-width: 640px) {
    .btn-gold {
      font-size: 1.1rem;
      padding: 20px 40px;
      border-radius: var(--radius-lg);
    }
  }
  
  /* =============================================
     WELCOME SCREEN
     ============================================= */
  #screen-welcome {
    padding: 32px 20px;
  }
  
  .welcome-wrapper {
    position: relative;
    z-index: 10;
    max-width: 520px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  
  .welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(39, 39, 42, 0.85);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 28px;
  }
  
  .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
  }
  
  .welcome-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
  }
  
  .welcome-icon-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(184,150,46,0.2));
    border-radius: var(--radius-md);
    filter: blur(20px);
  }
  
  .welcome-icon-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-base));
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 48px rgba(212,175,55,0.1);
  }
  
  .welcome-icon-inner svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
  }
  
  .welcome-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 14px;
  }
  
  .welcome-sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 28px;
  }
  
  .welcome-sub strong {
    color: rgba(212,175,55,0.9);
    font-weight: 500;
  }
  
  .trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 28px;
  }
  
  .trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
  }
  
  .trust-item svg {
    width: 14px;
    height: 14px;
    color: rgba(212,175,55,0.65);
  }
  
  .welcome-footer {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 14px;
  }
  
  /* =============================================
     QUESTION SCREEN
     ============================================= */
  #screen-question {
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    min-height: 100dvh;
  }
  
  .question-container {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    min-height: 100vh;
    padding: 20px 18px;
  }
  
  @media (min-width: 640px) {
    .question-container {
      padding: 32px 24px;
      justify-content: center;
      min-height: 100vh;
    }
  }
  
  /* Progress */
  .progress-area {
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  
  .progress-meta {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 7px;
  }
  
  .progress-meta span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(212,175,55,0.8);
  }
  
  .progress-track {
    height: 4px;
    background: rgba(39,39,42,0.6);
    border-radius: var(--radius-pill);
    overflow: hidden;
  }
  
  @media (min-width: 640px) {
    .progress-track { height: 5px; }
  }
  
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: var(--radius-pill);
    transition: width var(--transition-slow);
    position: relative;
    overflow: hidden;
  }
  
  .progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    animation: shimmer 2s infinite;
  }
  
  /* Question header */
  .question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  
  .question-step {
    font-size: 12px;
    color: var(--text-muted);
  }
  
  .question-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(212,175,55,0.8);
    background: rgba(39,39,42,0.5);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
  }
  
  /* Question body */
  .question-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .question-text {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 3.5vw, 1.4rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 24px;
  }
  
  .options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  /* Option button */
  .option-btn {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: rgba(24,24,27,0.6);
    border: 1px solid var(--bg-elevated);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    -webkit-tap-highlight-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
  }
  
  @media (min-width: 640px) {
    .option-btn { padding: 18px 20px; gap: 16px; }
  }
  
  .option-btn:hover {
    border-color: rgba(212,175,55,0.35);
    background: rgba(39,39,42,0.55);
  }
  
  .option-btn:active { transform: scale(0.985); }
  
  .option-btn.selected {
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(184,150,46,0.18));
    border-color: rgba(212,175,55,0.5);
  }
  
  .option-btn.disabled {
    opacity: 0.45;
    pointer-events: none;
  }
  
  .option-letter {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    transition: all var(--transition);
  }
  
  @media (min-width: 640px) {
    .option-letter { width: 32px; height: 32px; font-size: 13px; border-radius: 8px; }
  }
  
  .option-btn:hover .option-letter {
    background: rgba(212,175,55,0.18);
    color: var(--gold);
  }
  
  .option-btn.selected .option-letter {
    background: var(--gold);
    color: var(--bg-base);
  }
  
  .option-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    flex: 1;
    padding-top: 4px;
    padding-right: 28px;
    transition: color var(--transition);
  }
  
  @media (min-width: 640px) {
    .option-text { font-size: 15px; padding-right: 36px; }
  }
  
  .option-btn:hover .option-text { color: var(--text-primary); }
  .option-btn.selected .option-text { color: rgba(250,240,210,1); }
  
  .option-check {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gold);
    animation: scaleIn 0.25s ease;
    flex-shrink: 0;
  }
  
  .question-hint {
    text-align: center;
    font-size: 11px;
    color: rgba(113,113,122,0.55);
    padding: 18px 0 12px;
    flex-shrink: 0;
  }
  
  /* =============================================
     LOADING SCREEN
     ============================================= */
  #screen-loading {
    padding: 32px 20px;
  }
  
  .loading-wrapper {
    position: relative;
    z-index: 10;
    max-width: 420px;
    width: 100%;
    text-align: center;
  }
  
  /* Spinner */
  .loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 36px;
  }
  
  @media (min-width: 640px) {
    .loading-spinner { width: 96px; height: 96px; margin-bottom: 48px; }
  }
  
  .spinner-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(212,175,55,0.18);
  }
  
  .spinner-active {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    animation: spin 1.4s linear infinite;
  }
  
  .spinner-core {
    position: absolute;
    inset: 14px;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-base));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .spinner-core svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
  }
  
  @media (min-width: 640px) {
    .spinner-core svg { width: 32px; height: 32px; }
  }
  
  .loading-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
  }
  
  .loading-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 36px;
    padding: 0 8px;
  }
  
  @media (min-width: 640px) {
    .loading-subtitle { font-size: 14px; margin-bottom: 48px; }
  }
  
  /* Loading bar */
  .loading-bar-wrap { margin-bottom: 24px; }
  
  .loading-bar-track {
    height: 7px;
    background: rgba(39,39,42,0.55);
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin-bottom: 10px;
  }
  
  .loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: var(--radius-pill);
    transition: width var(--transition-slow);
    position: relative;
    overflow: hidden;
  }
  
  .loading-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    animation: shimmer 2s infinite;
  }
  
  .loading-bar-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
  }
  
  .loading-bar-meta span:first-child { color: var(--text-muted); }
  .loading-bar-meta span:last-child  { color: var(--gold); font-weight: 600; }
  
  .loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  
  .loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg-elevated);
    transition: background 0.4s ease, transform 0.4s ease;
  }
  
  .loading-dot.active {
    background: var(--gold);
    transform: scale(1.1);
  }
  
  /* =============================================
     TRANSITION SCREEN
     ============================================= */
  #screen-transition {
    padding: 32px 20px;
  }
  
  .transition-wrapper {
    position: relative;
    z-index: 10;
    max-width: 500px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .transition-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  
  .transition-badge svg { color: var(--gold); }
  
  .transition-headline {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 24px;
  }
  
  .transition-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
    margin-bottom: 28px;
  }
  
  .transition-card {
    background: rgba(24,24,27,0.6);
    border: 1px solid var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  @media (min-width: 640px) {
    .transition-card { padding: 28px 36px; }
  }
  
  .transition-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
  }
  
  @media (min-width: 640px) {
    .transition-card p { font-size: 14px; }
  }
  
  .transition-card strong { color: var(--text-primary); }
  
  .transition-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 16px;
  }
  
  .transition-footer svg {
    width: 14px;
    height: 14px;
    color: rgba(212,175,55,0.45);
  }
  
  /* =============================================
     RESULT SCREEN
     ============================================= */
  
  /* Hero do resultado */
  .result-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 20px 52px;
  }
  
  @media (min-width: 640px) {
    .result-hero { padding: 56px 24px 72px; }
  }
  
  .result-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, transparent 100%);
    pointer-events: none;
  }
  
  .result-hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }
  
  .result-container {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto;
  }
  
  .result-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .result-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
  }
  
  .result-headline {
    text-align: center;
    margin-bottom: 28px;
  }
  
  .result-headline h1 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 10px;
  }
  
  .result-headline p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: rgba(212,175,55,0.9);
  }
  
  /* Cards reutilizáveis */
  .r-card {
    background: rgba(24,24,27,0.85);
    border: 1px solid var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 22px;
    backdrop-filter: blur(8px);
  }
  
  @media (min-width: 640px) {
    .r-card { padding: 28px 36px; }
  }
  
  .r-card-gold {
    border-color: rgba(212,175,55,0.25);
    background: linear-gradient(135deg, rgba(24,24,27,0.9), rgba(24,24,27,0.6));
  }
  
  .r-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin-bottom: 16px;
  }
  
  .r-card-header svg { width: 18px; height: 18px; flex-shrink: 0; }
  
  /* Sections do resultado */
  .result-section {
    max-width: 620px;
    margin: 0 auto;
    padding: 28px 20px;
  }
  
  @media (min-width: 640px) {
    .result-section { padding: 36px 24px; }
  }
  
  .result-section-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
  }
  
  /* Check list */
  .check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  
  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  
  @media (min-width: 640px) {
    .check-list li { font-size: 14px; gap: 12px; }
  }
  
  .check-list li svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
  }
  
  /* Arrow list */
  .arrow-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  
  .arrow-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  
  @media (min-width: 640px) {
    .arrow-list li { font-size: 14px; }
  }
  
  .arrow-list .arr { color: var(--gold); font-weight: 700; flex-shrink: 0; }
  
  /* Section divider label */
  .section-label-centered {
    text-align: center;
    margin-bottom: 16px;
  }
  
  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  
  /* Mid CTA */
  .mid-cta {
    text-align: center;
    padding: 12px 0 0;
  }
  
  /* Product section */
  .product-section {
    background: linear-gradient(180deg, var(--bg-base), rgba(24,24,27,0.5), var(--bg-base));
    padding: 40px 20px 56px;
  }
  
  @media (min-width: 640px) {
    .product-section { padding: 56px 24px 72px; }
  }
  
  .product-inner {
    max-width: 620px;
    margin: 0 auto;
  }
  
  .product-header {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .product-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
  }
  
  .product-header p {
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  @media (min-width: 640px) {
    .product-header p { font-size: 15px; }
  }
  
  /* Modules card */
  .modules-card {
    background: rgba(24,24,27,0.85);
    border: 1px solid var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 20px;
  }
  
  @media (min-width: 640px) {
    .modules-card { padding: 28px 36px; }
  }
  
  .modules-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  
  .modules-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  
  .mod-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-base);
    font-size: 12px;
    font-weight: 700;
  }
  
  @media (min-width: 640px) {
    .mod-num { width: 32px; height: 32px; font-size: 13px; border-radius: 8px; }
  }
  
  .modules-list span {
    font-size: 13px;
    color: var(--text-secondary);
    padding-top: 4px;
    line-height: 1.5;
  }
  
  @media (min-width: 640px) {
    .modules-list span { font-size: 14px; }
  }
  
  /* Bonuses card */
  .bonuses-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(184,150,46,0.05));
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 20px;
  }
  
  @media (min-width: 640px) {
    .bonuses-card { padding: 28px 36px; }
  }
  
  .bonuses-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
  }
  
  .bonuses-header svg { width: 18px; height: 18px; }
  
  .bonuses-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  
  .bonuses-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  
  @media (min-width: 640px) {
    .bonuses-list li { font-size: 14px; }
  }
  
  /* Author card */
  .author-card {
    background: rgba(24,24,27,0.85);
    border: 1px solid var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .author-card img {
    width: 110px;
    height: 148px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(212,175,55,0.3);
    margin: 0 auto 16px;
    display: block;
  }
  
  .author-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
  }
  
  .author-card .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
  }
  
  .author-card .author-role {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-style: italic;
  }
  
  .author-card .author-bio {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
  }
  
  @media (min-width: 640px) {
    .author-card .author-bio { font-size: 13px; }
  }
  
  .author-card .author-quote {
    font-size: 12px;
    color: rgba(212,175,55,0.9);
    font-weight: 500;
  }
  
  /* Pricing card */
  .pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  @media (min-width: 640px) {
    .pricing-card { padding: 32px 40px; }
  }
  
  .pricing-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  }
  
  .pricing-old {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-decoration: line-through;
  }
  
  .pricing-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
  }
  
  .pricing-currency {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
  }
  
  .pricing-value {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 10vw, 3.8rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
  }
  
  .pricing-cents {
    font-size: 1.2rem;
    color: var(--text-secondary);
  }
  
  .pricing-installment {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 28px;
  }
  
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-top: 20px;
  }
  
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
  }
  
  .trust-badge svg {
    width: 14px;
    height: 14px;
    color: rgba(212,175,55,0.65);
  }
  
  /* Testimonial */
  .testimonial-section {
    max-width: 620px;
    margin: 0 auto;
    padding: 8px 20px 28px;
  }
  
  @media (min-width: 640px) {
    .testimonial-section { padding: 8px 24px 36px; }
  }
  
  .testimonial-card {
    background: rgba(24,24,27,0.55);
    border: 1px solid var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 24px;
  }
  
  @media (min-width: 640px) {
    .testimonial-card { padding: 28px 36px; }
  }
  
  .testimonial-card svg {
    width: 28px;
    height: 28px;
    color: rgba(212,175,55,0.25);
    margin-bottom: 14px;
    display: block;
  }
  
  .testimonial-card blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 14px;
  }
  
  .testimonial-author {
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
  }
  
  /* Objections */
  .objections-section {
    max-width: 620px;
    margin: 0 auto;
    padding: 8px 20px 56px;
  }
  
  @media (min-width: 640px) {
    .objections-section { padding: 8px 24px 72px; }
  }
  
  .objections-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 20px;
  }
  
  .objections-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  
  .objection-card {
    background: rgba(24,24,27,0.55);
    border: 1px solid var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 16px 18px;
  }
  
  @media (min-width: 640px) {
    .objection-card { padding: 20px 24px; }
    .objection-row { display: flex; gap: 28px; }
    .objection-row > div { flex: 1; }
  }
  
  .objection-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  
  .objection-label.thought { color: var(--text-muted); }
  .objection-label.truth   { color: rgba(212,175,55,0.8); }
  
  .objection-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.55;
  }
  
  @media (min-width: 640px) {
    .objection-text { font-size: 13px; }
  }
  
  .objection-spacer { height: 12px; }
  
  @media (min-width: 640px) {
    .objection-spacer { display: none; }
  }
  
  /* Final CTA */
  .final-cta {
    text-align: center;
  }
  
  .final-cta-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
  }
  
  /* Result footer */
  .result-footer {
    border-top: 1px solid rgba(39,39,42,0.5);
    padding: 28px 20px;
    text-align: center;
  }
  
  .result-footer p {
    font-size: 11px;
    color: rgba(113,113,122,0.55);
  }
  
  /* =============================================
     RESPONSIVE — Mobile tweaks
     ============================================= */
  @media (max-width: 400px) {
    .welcome-headline { font-size: 1.3rem; }
    .btn-gold { padding: 15px 24px; font-size: 0.95rem; }
  }