/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: auto; -webkit-overflow-scrolling: touch; }
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #28A745;
    --primary-dark: #1e8e3e;
    --secondary: #f5f5f5;
    --accent: #C89B6D;
    --accent-dark: #A06C3B;
    --text: #1a1a1a;
    --text-light: #555;
    --bg: #FFFFFF;
    --success: #28A745;
    --danger: #dc3545;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: #f0f0f0;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

#app {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--bg);
    position: relative;
}

/* ===== PROGRESS BAR ===== */
.progress-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    padding: 12px 20px 8px;
    background: rgba(255,255,255,0.98);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}
.progress-bar {
    flex: 1;
    height: 8px;
    background: #e9e9e9;
    border-radius: 4px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
    will-change: transform, opacity;
}
.progress-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    min-width: 32px;
    text-align: right;
}

/* ===== SCREENS ===== */
.screen {
    display: none;
    padding: 72px 24px 40px;
    min-height: 100vh;
    animation: fadeSlideUp 0.3s ease forwards;
    will-change: transform, opacity;
    transform: translateZ(0);
}
.screen.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== WELCOME ===== */
.welcome-hero { text-align: center; padding: 10px 0; }
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #555;
    margin-bottom: 16px;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.welcome-title { font-size: 24px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; color: #1a1a1a; }
.title-highlight { color: #C89B6D; }
.welcome-subtitle { font-size: 14px; color: #999; line-height: 1.5; margin-bottom: 20px; }
.welcome-icon { margin-bottom: 16px; }
.welcome-hero-img {
    width: 100%; max-width: 100%; height: auto;
    border-radius: 0;
}
.welcome-features {
    display: flex; justify-content: center; gap: 12px;
    margin-bottom: 24px; flex-wrap: wrap;
}
.feature-pill {
    display: flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 500; color: #444;
}
.feature-pill span { font-size: 14px; }
.welcome-note {
    font-size: 13px; color: #888; margin-top: 14px; margin-bottom: 16px;
    text-align: center; line-height: 1.4;
}
.welcome-authority {
    display: block;
    margin-top: 16px;
    position: relative;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.social-proof-img { width: 100%; height: auto; display: block; border-radius: 0; }
.online-dot {
    position: absolute; top: 50%; left: -14px;
    transform: translateY(-50%);
    width: 8px; height: 8px; border-radius: 50%;
    background: #28A745;
    box-shadow: 0 0 6px #28A745, 0 0 12px rgba(40,167,69,0.4);
    animation: onlinePulse 1.5s infinite;
}
@keyframes onlinePulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}
.authority-photos { display: flex; }
.auth-photo {
    width: 32px; height: 32px; border-radius: 50%;
    object-fit: cover; border: 2px solid white;
    margin-left: -8px;
}
.auth-photo:first-child { margin-left: 0; }
.authority-text { text-align: left; }
.authority-text strong { display: block; font-size: 13px; color: var(--text); }
.authority-text span { font-size: 11px; color: #888; }

/* ===== BUTTONS ===== */
.btn-primary {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 4px rgba(40,167,69,0.15), 0 4px 12px rgba(40,167,69,0.3);
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(40,167,69,0.4); }
.btn-primary:active { transform: translateY(0); }

/* Pulse animation for main CTA */
.btn-shake {
    animation: btnPulseGlow 1.5s ease-in-out infinite;
}
@keyframes btnPulseGlow {
    0%, 100% { box-shadow: 0 0 0 4px rgba(40,167,69,0.15), 0 4px 12px rgba(40,167,69,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(40,167,69,0.25), 0 4px 20px rgba(40,167,69,0.5); }
}
.btn-primary::after {
    content: none;
}

.btn-cta {
    width: 100%;
    padding: 22px 32px;
    background: linear-gradient(135deg, #28A745, #1e8e3e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 4px rgba(40,167,69,0.15), 0 4px 16px rgba(40,167,69,0.35);
    animation: ctaPulse 2s infinite;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}
.btn-cta::after {
    content: none;
}
@keyframes ctaPulse { 0%,100%{opacity:1;} 50%{opacity:0.85;} }
.btn-cta:hover { transform: translateY(-1px); }

/* ===== QUESTIONS ===== */
.question-container { width: 100%; text-align: center; }
.question-hint {
    font-size: 12px; color: var(--primary); font-weight: 600;
    margin-bottom: 8px; letter-spacing: 0.3px;
}
.question-title { font-size: 20px; font-weight: 700; line-height: 1.35; margin-bottom: 22px; }
.options-grid { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.option-card {
    width: 100%; padding: 16px 16px;
    background: #f0faf2; border: 1.5px solid #b8e6c8;
    border-radius: 30px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.2s ease;
    text-align: left; display: flex; align-items: center; gap: 12px;
    transform: translateZ(0);
}
.option-card:hover { border-color: var(--primary); background: #e0f5e8; }
.option-card.selected { border-color: var(--primary); background: #d0f0da; box-shadow: var(--shadow); }
.option-letter {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--secondary); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px; color: var(--primary); flex-shrink: 0;
    transition: all 0.2s ease;
}
.option-card.selected .option-letter { background: var(--primary); color: white; }
.option-img {
    width: 36px; height: 36px; object-fit: contain; border-radius: 6px; flex-shrink: 0;
}

/* Image Grid (2x2) */
.options-grid.image-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.option-card-img {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 12px; border: 2px solid #e8e8e8;
    border-radius: var(--radius); cursor: pointer;
    transition: all 0.2s ease; text-align: center; background: #f9fef9;
}
.option-card-img:hover { border-color: var(--primary); background: #f0faf2; }
.option-card-img.selected { border-color: var(--primary); background: #e8f5e9; box-shadow: var(--shadow); }
.option-card-text {
    font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.3;
}

/* ===== FACE SCAN OPTIONS ===== */
.scan-header-icon { margin-bottom: 16px; }
.scan-options { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-top: 8px; }
.scan-card {
    padding: 20px 16px; border: 2px solid #e8e8e8;
    border-radius: var(--radius); cursor: pointer;
    transition: all 0.2s ease; text-align: left; position: relative;
}
.scan-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.scan-card.recommended { border-color: var(--primary); background: #f0faf2; }
.scan-card h3 { font-size: 15px; margin-bottom: 4px; }
.scan-card p { font-size: 12px; color: #888; }
.scan-card-icon { font-size: 22px; margin-bottom: 6px; }
.scan-card-badge {
    position: absolute; top: -10px; right: 14px;
    background: var(--primary);
    color: white; font-size: 10px; padding: 4px 10px;
    border-radius: 20px; font-weight: 700;
}
.scan-card-features {
    display: flex; flex-direction: column; gap: 4px; margin-top: 8px;
}
.scan-card-features span {
    font-size: 12px; color: #555;
}
.scan-privacy {
    margin-top: 20px; padding: 16px; background: #f9fef9;
    border: 1px solid #e0f0e0; border-radius: var(--radius-sm);
    text-align: left;
}
.scan-privacy h4 { font-size: 13px; margin-bottom: 8px; color: var(--text); }
.scan-privacy ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.scan-privacy li { font-size: 12px; color: #666; line-height: 1.4; padding-left: 8px; border-left: 2px solid var(--primary); }

/* ===== CAMERA ===== */
.camera-container { width: 100%; text-align: center; }
.camera-header { margin-bottom: 16px; }
.camera-label { font-size: 13px; font-weight: 700; color: var(--accent); display: block; margin-bottom: 4px; }
.camera-status { font-size: 12px; color: #888; }
.camera-viewport {
    position: relative; width: 100%; aspect-ratio: 3/4;
    border-radius: var(--radius); overflow: hidden;
    background: #1a1a1a; margin-bottom: 16px;
    transform: translateZ(0);
}
.camera-viewport video { width: 100%; height: 100%; object-fit: cover; transform: scaleX(-1); }
.camera-viewport canvas { display: none; }
.camera-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.face-guide {
    width: 65%; height: 75%; border: 2px dashed rgba(200,155,109,0.6);
    border-radius: 50%; position: relative;
}
.scan-line {
    position: absolute; top: 10%; left: 10%; width: 80%; height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    box-shadow: 0 0 15px #00ff88;
    animation: scanDown 2.5s linear infinite;
    opacity: 0;
}
.scan-line.active { opacity: 1; }
@keyframes scanDown { 0%{transform:translateY(0);} 100%{transform:translateY(250px);} }
.camera-corners { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.corner {
    position: absolute; width: 24px; height: 24px;
    border-color: var(--primary); border-style: solid;
}
.corner.tl { top: 12px; left: 12px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.corner.tr { top: 12px; right: 12px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.corner.bl { bottom: 12px; left: 12px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.corner.br { bottom: 12px; right: 12px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }
.camera-messages { margin-bottom: 16px; }
.camera-messages p { font-size: 14px; color: #666; font-weight: 500; }
.camera-tip { font-size: 12px; color: var(--primary); font-weight: 600; margin-top: 6px; }

/* ===== UPLOAD ===== */
.upload-area {
    width: 100%; padding: 44px 20px;
    border: 2px dashed var(--primary); border-radius: var(--radius);
    background: var(--secondary); cursor: pointer;
    transition: all 0.3s ease;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.upload-area:hover { background: #f0e6da; }
.upload-area p { font-size: 14px; font-weight: 500; }
.upload-formats { font-size: 11px; color: #999; }
.upload-preview {
    width: 100%; position: relative; border-radius: var(--radius);
    overflow: hidden; margin-top: 16px;
}
.upload-preview img { width: 100%; display: block; }
.upload-scan-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.heatmap-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1s ease;
}
.heatmap-overlay.active {
    opacity: 1;
    background: radial-gradient(ellipse 40% 30% at 35% 40%, rgba(255,60,60,0.3) 0%, transparent 70%),
                radial-gradient(ellipse 40% 30% at 65% 40%, rgba(255,60,60,0.3) 0%, transparent 70%),
                radial-gradient(ellipse 30% 20% at 50% 25%, rgba(255,120,0,0.2) 0%, transparent 70%),
                radial-gradient(ellipse 25% 15% at 50% 55%, rgba(255,80,80,0.25) 0%, transparent 70%);
}
.scan-line-upload {
    position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    box-shadow: 0 0 12px #00ff88; opacity: 0;
}
.scan-line-upload.active { opacity: 1; animation: scanDownUpload 2s linear infinite; }
@keyframes scanDownUpload { 0%{transform:translateY(0);} 100%{transform:translateY(300px);} }

/* ===== MANUAL FACE MARKING ===== */
.face-map {
    width: 100%; max-width: 300px; margin: 0 auto 20px;
    position: relative;
    background: linear-gradient(180deg, #fdf8f3, #fff);
    border-radius: var(--radius);
    padding: 16px 10px;
    border: 1px solid #f0ebe5;
}
.face-svg {
    width: 100%; height: auto; cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}
.face-zone { cursor: pointer; transition: all 0.3s ease; }
.face-zone:hover .zone-area { 
    fill: rgba(200,155,109,0.2); stroke: var(--primary); stroke-dasharray: none;
}
.face-zone.selected .zone-area {
    fill: rgba(220,53,69,0.2); stroke: #dc3545; stroke-width: 2.5; stroke-dasharray: none;
    animation: zonePulse 1.5s ease infinite;
}
.face-zone.selected .zone-label { fill: #dc3545; font-weight: 700; font-size: 11px; }
@keyframes zonePulse {
    0%,100% { fill: rgba(220,53,69,0.15); }
    50% { fill: rgba(220,53,69,0.3); }
}
.zone-counter {
    text-align: center; font-size: 13px; color: var(--primary);
    font-weight: 600; margin-top: 12px;
}
#manualContinueBtn:disabled {
    opacity: 0.5; cursor: not-allowed;
    transform: none !important; box-shadow: none !important;
}

/* ===== PRE-PITCH ===== */
.prepitch-subtitle {
    font-size: 16px; font-weight: 800; color: #dc3545;
    margin: 16px 0 8px; letter-spacing: 0.5px;
}
.prepitch-diagram {
    width: 100%; max-width: 300px; margin: 0 auto 24px;
}

/* ===== PROCESSING ===== */
.processing-container { text-align: center; width: 100%; padding: 20px 0; }
.processing-visual { margin-bottom: 28px; }
.ai-brain { width: 100px; height: 100px; margin: 0 auto; position: relative; }
.brain-ring {
    position: absolute; border-radius: 50%;
    border: 2px solid transparent; border-top-color: var(--primary);
}
.ring1 { width: 100%; height: 100%; top: 0; left: 0; animation: spin 2s linear infinite; }
.ring2 { width: 75%; height: 75%; top: 12.5%; left: 12.5%; animation: spinReverse 1.5s linear infinite; border-top-color: var(--primary-dark); }
.ring3 { width: 50%; height: 50%; top: 25%; left: 25%; animation: spin 1s linear infinite; border-top-color: var(--accent); }
.brain-core {
    position: absolute; width: 20px; height: 20px;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    background: var(--primary); border-radius: 50%;
    animation: corePulse 1.5s ease infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes corePulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:1;} 50%{transform:translate(-50%,-50%) scale(1.3);opacity:0.7;} }

.processing-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.processing-sub { font-size: 13px; color: #888; margin-bottom: 24px; }
.processing-steps { text-align: left; max-width: 320px; margin: 0 auto 24px; display: flex; flex-direction: column; gap: 12px; }
.proc-step {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: #bbb; transition: all 0.4s ease;
}
.proc-step.active { color: var(--text); font-weight: 500; }
.proc-step.done { color: var(--success); }
.proc-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ddd; flex-shrink: 0; transition: all 0.4s ease;
    will-change: transform, opacity;
}
.proc-step.active .proc-dot { background: var(--primary); animation: dotPulse 1s infinite; }
.proc-step.done .proc-dot { background: var(--success); }
@keyframes dotPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.4);} }
.processing-bar { width: 100%; height: 8px; background: #e9e9e9; border-radius: 4px; overflow: hidden; margin-bottom: 10px; }

/* Photo Analysis Card */
.photo-analysis-card { width: 100%; max-width: 280px; margin: 0 auto 24px; }
.pac-frame {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 0 20px rgba(40,167,69,0.3), 0 0 40px rgba(40,167,69,0.1);
    border: 2px solid rgba(40,167,69,0.4);
}
.pac-frame img { width: 100%; height: auto; display: block; }
.pac-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.pac-scanline {
    position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    box-shadow: 0 0 12px #00ff88, 0 0 24px rgba(0,255,136,0.3);
    animation: pacScanDown 2.5s linear infinite;
}
@keyframes pacScanDown { 0%{transform:translateY(0);} 100%{transform:translateY(280px);} }
.pac-point {
    position: absolute; width: 10px; height: 10px; border-radius: 50%;
    border: 2px solid #00ff88; background: rgba(0,255,136,0.2);
    opacity: 0; transition: opacity 0.5s ease;
    box-shadow: 0 0 6px #00ff88;
}
.pac-point.visible { opacity: 1; animation: pointPulse 1.5s infinite; }
@keyframes pointPulse { 0%,100%{transform:scale(1);opacity:0.8;} 50%{transform:scale(1.4);opacity:1;} }
.pac-heatzone {
    position: absolute; border-radius: 50%; opacity: 0;
    transition: opacity 1s ease;
}
.pac-heatzone.visible { opacity: 1; }
.zone-frente { top: 12%; left: 30%; width: 40%; height: 18%; background: radial-gradient(ellipse, rgba(255,165,0,0.35) 0%, transparent 70%); }
.zone-mejillas-l { top: 35%; left: 10%; width: 30%; height: 25%; background: radial-gradient(ellipse, rgba(255,80,80,0.3) 0%, transparent 70%); }
.zone-mejillas-r { top: 35%; right: 10%; width: 30%; height: 25%; background: radial-gradient(ellipse, rgba(255,80,80,0.3) 0%, transparent 70%); }
.pac-corners { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.pc { position: absolute; width: 20px; height: 20px; border-color: #00ff88; border-style: solid; }
.pc.tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.pc.tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.pc.bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.pc.br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

/* Processing complete */
.processing-complete { margin-top: 16px; text-align: center; }
.pc-done { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.pc-warning { font-size: 13px; font-weight: 600; color: #dc3545; margin-bottom: 6px; }
.pc-preparing { font-size: 12px; color: #888; font-style: italic; }
.processing-bar-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 4px; transition: width 0.4s ease;
}
.processing-percent { font-size: 14px; font-weight: 700; color: var(--primary); }

/* ===== SCAN RESULTS ===== */
.scan-success-icon { font-size: 40px; margin-bottom: 12px; }
.scan-results-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; width: 100%; }
.scan-result-card {
    padding: 14px 18px; background: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex; justify-content: space-between; align-items: center;
}
.scan-result-label { font-size: 12px; color: #888; }
.scan-result-value { font-size: 14px; font-weight: 600; color: var(--accent); }
.scan-result-value.highlight { color: var(--danger); }

/* ===== VOICE MESSAGE (WhatsApp style) ===== */
.voice-message {
    width: 100%; background: #fff; border: 1px solid #e0e0e0;
    border-radius: var(--radius); padding: 14px 16px;
    margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.vm-header {
    font-size: 14px; font-weight: 600; color: var(--text);
    margin-bottom: 12px;
}
.vm-body {
    display: flex; align-items: center; gap: 12px;
}
.vm-play {
    width: 40px; height: 40px; border-radius: 50%;
    background: #f0f0f0; display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0; transition: background 0.2s;
}
.vm-play:hover { background: #e0e0e0; }
.vm-play.playing svg { fill: var(--primary); }
.vm-waveform {
    flex: 1; display: flex; align-items: center; gap: 2px; height: 32px;
}
.vm-waveform span {
    width: 3px; border-radius: 2px; background: #ccc;
    height: 8px; transition: background 0.2s ease;
}
.vm-waveform.playing span { background: #34b7f1; }
.vm-waveform span:nth-child(1){height:6px;} .vm-waveform span:nth-child(2){height:12px;}
.vm-waveform span:nth-child(3){height:8px;} .vm-waveform span:nth-child(4){height:18px;}
.vm-waveform span:nth-child(5){height:10px;} .vm-waveform span:nth-child(6){height:22px;}
.vm-waveform span:nth-child(7){height:14px;} .vm-waveform span:nth-child(8){height:8px;}
.vm-waveform span:nth-child(9){height:20px;} .vm-waveform span:nth-child(10){height:12px;}
.vm-waveform span:nth-child(11){height:6px;} .vm-waveform span:nth-child(12){height:16px;}
.vm-waveform span:nth-child(13){height:10px;} .vm-waveform span:nth-child(14){height:24px;}
.vm-waveform span:nth-child(15){height:8px;} .vm-waveform span:nth-child(16){height:14px;}
.vm-waveform span:nth-child(17){height:18px;} .vm-waveform span:nth-child(18){height:6px;}
.vm-waveform span:nth-child(19){height:12px;} .vm-waveform span:nth-child(20){height:20px;}
.vm-waveform span:nth-child(21){height:8px;} .vm-waveform span:nth-child(22){height:16px;}
.vm-waveform span:nth-child(23){height:10px;} .vm-waveform span:nth-child(24){height:22px;}
.vm-waveform span:nth-child(25){height:6px;} .vm-waveform span:nth-child(26){height:14px;}
.vm-waveform span:nth-child(27){height:18px;} .vm-waveform span:nth-child(28){height:8px;}
.vm-waveform span:nth-child(29){height:12px;} .vm-waveform span:nth-child(30){height:10px;}
.vm-avatar {
    position: relative; flex-shrink: 0;
}
.vm-avatar img {
    width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.vm-avatar-fallback {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 12px;
}
.vm-mic {
    position: absolute; bottom: -2px; right: -2px; font-size: 14px;
    background: white; border-radius: 50%; padding: 1px;
}
.vm-time {
    font-size: 11px; color: #999; margin-top: 6px; text-align: left;
}
.vm-speed {
    display: inline-block; margin-top: 6px; margin-left: 12px;
    font-size: 11px; font-weight: 700; color: var(--primary);
    background: #e8f5e9; padding: 4px 10px; border-radius: 12px;
    cursor: pointer; user-select: none; float: right;
}

/* ===== ALERT SCREEN ===== */
.alert-container { padding: 10px 0; }
.alert-icon { font-size: 48px; margin-bottom: 12px; }
.alert-title { font-size: 28px; font-weight: 800; color: #dc3545; margin-bottom: 12px; }
.alert-text { font-size: 16px; line-height: 1.5; margin-bottom: 24px; }
.alert-text strong { color: #dc3545; background: rgba(220,53,69,0.1); padding: 2px 6px; border-radius: 4px; }
.alert-meter { width: 100%; margin-bottom: 16px; }
.alert-meter-img { width: 100%; height: auto; display: block; }
.meter-labels { display: flex; justify-content: space-between; margin-bottom: 8px; }
.meter-labels span { font-size: 10px; color: #888; font-weight: 500; }
.meter-bar {
    display: flex; height: 12px; border-radius: 6px; overflow: hidden;
    position: relative; gap: 2px;
}
.meter-segment { flex: 1; border-radius: 3px; }
.meter-segment.green { background: #28a745; }
.meter-segment.yellow { background: #ffc107; }
.meter-segment.orange { background: #fd7e14; }
.meter-segment.red { background: #dc3545; }
.meter-segment.darkred { background: #8b0000; }
.meter-indicator {
    position: absolute; top: -4px; left: 75%;
    width: 20px; height: 20px; border-radius: 50%;
    background: white; border: 3px solid var(--danger);
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(220,53,69,0.4);
    animation: indicatorPulse 1.5s infinite;
}
@keyframes indicatorPulse { 0%,100%{opacity:1;} 50%{opacity:0.7;} }
.alert-level { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.alert-level span { font-size: 14px; color: #666; }
.alert-percent { font-size: 24px; color: var(--danger); }
.alert-explanation {
    background: #dc3545; color: white;
    border: none;
    border-radius: var(--radius); padding: 20px; text-align: left;
    margin-bottom: 24px;
}
.alert-explanation p { font-size: 15px; line-height: 1.6; margin-bottom: 12px; color: white; }
.alert-explanation p:last-child { margin-bottom: 0; }
.alert-explanation strong { color: white; }

/* Alert CTA Box */
.alert-cta-box {
    background: white; border-radius: var(--radius);
    padding: 24px 20px; margin-bottom: 24px; text-align: center;
    border: 2px solid var(--primary);
}
.alert-cta-icon { font-size: 36px; margin-bottom: 8px; }
.alert-cta-text { font-size: 16px; font-weight: 600; line-height: 1.5; color: var(--text); margin-bottom: 12px; }
.alert-cta-question { font-size: 20px; font-weight: 800; color: var(--primary); }

/* Risk Bars */
.risk-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; width: 100%; }
.risk-item { text-align: left; }
.risk-label { font-size: 12px; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.risk-bar { width: 100%; height: 10px; background: #e9e9e9; border-radius: 5px; overflow: hidden; }
.risk-fill { height: 100%; border-radius: 5px; transition: width 1.5s ease; }
.risk-value { font-size: 11px; font-weight: 700; color: #dc3545; display: block; margin-top: 3px; text-align: right; }

/* ===== LEAD FORM ===== */
.lead-form { width: 100%; display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.form-group { position: relative; text-align: left; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: #666; margin-bottom: 6px; }
.form-group input {
    width: 100%; padding: 16px 18px; padding-right: 44px;
    border: 2px solid #f0ebe5; border-radius: var(--radius-sm);
    font-size: 16px; color: var(--text); transition: all 0.3s ease; background: var(--bg);
}
.form-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(200,155,109,0.1); }
.input-check {
    position: absolute; right: 16px; top: 36px;
    font-size: 16px; color: var(--success); font-weight: 700;
    opacity: 0; transition: opacity 0.3s ease;
}
.input-check.visible { opacity: 1; }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; color: #888; margin-top: 4px; }
.optional-tag { font-size: 10px; color: #999; font-weight: 400; }
.field-note { display: block; font-size: 11px; color: #999; margin-top: 4px; }

/* ===== OFFER PAGE ===== */
#screen-offer { padding: 0; min-height: auto; }
#screen-offer.active { display: block; }
.offer-page { width: 100%; overflow-x: hidden; }
.offer-section { padding: 32px 16px; border-bottom: 1px solid #eee; overflow: hidden; contain: content; }
.offer-section:last-child { border-bottom: none; }
.section-title { font-size: 22px; font-weight: 800; margin-bottom: 12px; text-align: center; line-height: 1.3; }
.section-text { font-size: 15px; color: var(--text-light); text-align: center; line-height: 1.6; margin-bottom: 20px; }

/* Highlight text (marca texto verde) */
.highlight-green {
    background: linear-gradient(180deg, transparent 50%, #b8f5c8 50%);
    padding: 0 4px;
}
/* Alert red text */
.text-danger { color: #dc3545; font-weight: 700; }
.text-alert {
    background: #dc3545; color: white; padding: 2px 8px;
    border-radius: 4px; font-weight: 700;
}

/* Result Summary */
.result-summary { background: #fff; text-align: center; padding-top: 56px; }
.result-badge {
    display: inline-block; background: var(--primary);
    color: white; font-size: 10px; font-weight: 700; padding: 6px 14px;
    border-radius: 20px; letter-spacing: 0.5px; margin-bottom: 14px;
}
.result-summary h2 { font-size: 22px; margin-bottom: 20px; }
.mini-meter { margin-bottom: 20px; }
.mini-meter-bar { height: 10px; border-radius: 5px; position: relative; background: linear-gradient(90deg, #28a745, #ffc107, #fd7e14, #dc3545, #8b0000); }
.mini-meter-fill { display: none; }
.mini-meter-dot {
    position: absolute; top: -3px; left: 75%; width: 16px; height: 16px;
    background: white; border: 3px solid var(--danger); border-radius: 50%;
    transform: translateX(-50%); box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.mini-meter-labels { display: flex; justify-content: space-between; margin-top: 6px; }
.mini-meter-labels span { font-size: 9px; color: #888; }
.result-findings { display: flex; flex-direction: column; gap: 8px; }
.finding-card {
    padding: 12px 16px; background: white; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 500; text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ===== HERO SECTION ===== */
.hero-image-container { margin-bottom: 24px; }
.hero-main-image {
    width: 100%; border-radius: var(--radius);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-main-image img.hero-woman-img {
    width: 100%; height: auto; display: block; border-radius: var(--radius);
}
.hero-factors-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}
.hero-factor {
    position: absolute; display: flex; flex-direction: column; align-items: center; gap: 4px;
    background: rgba(255,255,255,0.95); padding: 8px 12px; border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); animation: floatFactor 3s ease-in-out infinite;
}
.factor-icon { font-size: 20px; }
.factor-label { font-size: 9px; font-weight: 600; color: var(--text); }
.factor-1 { top: 12%; left: 5%; animation-delay: 0s; }
.factor-2 { top: 12%; right: 5%; animation-delay: 0.5s; }
.factor-3 { bottom: 15%; left: 5%; animation-delay: 1s; }
.factor-4 { bottom: 15%; right: 5%; animation-delay: 1.5s; }
@keyframes floatFactor { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

.explanation-cards { display: flex; flex-direction: column; gap: 12px; }
.exp-card {
    padding: 18px; background: var(--secondary); border-radius: var(--radius-sm);
    text-align: left;
}
.exp-icon { font-size: 24px; display: block; margin-bottom: 8px; }
.exp-card h4 { font-size: 14px; margin-bottom: 4px; }
.exp-card p { font-size: 12px; color: #666; line-height: 1.4; }

/* ===== PROTOCOL ===== */
.protocol-badge {
    display: inline-block; background: var(--secondary); color: var(--accent);
    font-size: 10px; font-weight: 700; padding: 6px 14px;
    border-radius: 20px; letter-spacing: 0.5px; margin-bottom: 12px;
}
.protocol-section { text-align: center; }
.doctor-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--secondary); border-radius: var(--radius);
    padding: 16px; margin-bottom: 20px; text-align: left;
}
.doctor-img {
    width: 64px; height: 64px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--primary); flex-shrink: 0;
}
.doctor-info { display: flex; flex-direction: column; gap: 2px; }
.doctor-info strong { font-size: 14px; color: var(--text); }
.doctor-info span { font-size: 11px; color: #888; }
.doctor-exp { color: var(--success) !important; font-weight: 600; }
.protocol-benefits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; text-align: left; }
.proto-benefit {
    font-size: 14px; padding: 12px 16px; background: var(--secondary);
    border-radius: var(--radius-sm);
}

/* ===== TIMELINE ===== */
.timeline-section { text-align: center; background: var(--secondary); }
.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; }
.timeline-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.timeline-bar {
    width: 32px; height: 100px; background: #e8dfd4; border-radius: 16px;
    position: relative; overflow: hidden; display: flex; align-items: flex-end;
}
.timeline-fill {
    width: 100%; background: linear-gradient(180deg, #28a745, #1e8e3e);
    border-radius: 16px; height: 0%; transition: height 1.2s ease;
}
.timeline-fill.animated { transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1); }
.timeline-percent { font-size: 13px; font-weight: 700; color: var(--success); opacity: 0; transition: opacity 0.5s ease; }
.timeline-percent.visible { opacity: 1; }
.timeline-label { font-size: 11px; font-weight: 700; color: var(--text); }
.timeline-desc { font-size: 10px; color: #888; line-height: 1.3; }

/* ===== SOCIAL PROOF ===== */
.social-section { text-align: center; }
.ba-grid-full { display: flex; flex-direction: column; gap: 16px; }
.ba-full-card {
    border-radius: 0; overflow: hidden;
    box-shadow: none; background: white; border-bottom: 1px solid #eee;
}
.ba-full-img { width: 100%; height: auto; display: block; }
.ba-info { padding: 12px 14px; text-align: left; }
.ba-info strong { font-size: 13px; display: block; }
.ba-info span { font-size: 11px; color: #888; }
.ba-stars { font-size: 11px; margin-top: 2px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { text-align: center; background: #fafafa; }
.testimonials-grid { display: flex; flex-direction: column; gap: 16px; }
.testimonial-card {
    padding: 20px; background: white; border-radius: var(--radius);
    text-align: left; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.test-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.test-avatar-img {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover; border: 2px solid #eee;
}
.test-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.test-info { display: flex; flex-direction: column; }
.test-info strong { font-size: 14px; }
.test-info span { font-size: 11px; color: #888; }
.test-stars { font-size: 13px; margin-bottom: 8px; }
.testimonial-card p { font-size: 14px; line-height: 1.6; color: #444; }

/* ===== GUARANTEE ===== */
.guarantee-section { text-align: center; background: #fff; }
.guarantee-seal { margin-bottom: 20px; display: flex; justify-content: center; }
.social-proof-img { width: 100%; height: auto; display: block; border-radius: 0; }
.seal-img {
    width: 120px; height: 120px; object-fit: contain;
    display: block; margin: 0 auto;
}
.results-banner-img { width: 100%; height: auto; display: block; border-radius: 0; }
.dra-casos-img { width: 100%; height: auto; display: block; border-radius: 0; }
.alert-meter-img { width: 100%; height: auto; display: block; max-width: 400px; margin: 0 auto; border-radius: 0; }
.prepitch-img { width: 100%; height: auto; border-radius: 0; max-width: 300px; display: block; margin: 0 auto; }
.ba-full-img { width: 100%; height: auto; display: block; border-radius: 0; }
.option-card-image { width: 100%; max-width: 90px; height: 90px; object-fit: contain; margin-bottom: 8px; border-radius: 0; }
.guarantee-stars { font-size: 20px; margin-bottom: 20px; text-align: center; }
.guarantee-blocks { display: flex; flex-direction: column; gap: 12px; }
.guarantee-block {
    padding: 18px; background: white; border-radius: var(--radius-sm);
    text-align: left; border: 1px solid #f0ebe5;
}
.guarantee-block h4 { font-size: 14px; margin-bottom: 6px; }
.guarantee-block p { font-size: 13px; color: #666; line-height: 1.5; }

/* ===== PRICING ===== */
.pricing-section { text-align: center; padding: 40px 20px; }
.pricing-card {
    background: white; border: 2px solid var(--primary); border-radius: var(--radius);
    padding: 24px 18px; box-shadow: var(--shadow-lg);
}
.pricing-header {
    background: var(--primary);
    color: white; font-size: 10px; font-weight: 700; letter-spacing: 1px;
    padding: 6px 14px; border-radius: 20px; display: inline-block; margin-bottom: 12px;
}
.pricing-product { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.pricing-prices { margin-bottom: 12px; }
.pricing-original { font-size: 18px; color: #999; text-decoration: line-through; }
.pricing-current { margin-top: 8px; }
.pricing-label { font-size: 14px; color: #666; display: block; }
.pricing-value { font-size: 52px; font-weight: 800; color: var(--success); display: block; line-height: 1.1; }
.pricing-period { font-size: 12px; color: #888; }
.pricing-savings {
    display: inline-block; margin: 12px 0 20px;
    background: rgba(40,167,69,0.1); color: var(--success);
    font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px;
}
.pricing-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
.pricing-trust span { font-size: 11px; color: #666; }

/* ===== FAQ ===== */
.faq-section { text-align: center; }
.faq-accordion { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.faq-item {
    border: 1px solid #f0ebe5; border-radius: var(--radius-sm);
    overflow: hidden; cursor: pointer; transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item.open { border-color: var(--primary); background: var(--secondary); }
.faq-question {
    padding: 16px 18px; display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; font-weight: 600;
}
.faq-arrow { font-size: 18px; color: var(--primary); transition: transform 0.3s ease; font-weight: 700; }
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 18px 16px; }
.faq-answer p { font-size: 13px; color: #666; line-height: 1.5; }

/* ===== FINAL CTA ===== */
.final-cta-section { text-align: center; background: #f9fff9; padding: 32px 20px; }

/* ===== VSL TOP ===== */
.vsl-top { text-align: center; padding-top: 56px; }
.vsl-text { font-size: 14px; color: var(--text-light); margin-bottom: 20px; line-height: 1.5; }

/* Alert Banner */
.alert-banner {
    background: #dc3545;
    border: none;
    border-radius: var(--radius);
    padding: 20px 16px;
    margin-bottom: 16px;
    color: white;
}
.alert-banner-icon { font-size: 32px; margin-bottom: 8px; }
.alert-banner-title { font-size: 16px; font-weight: 800; color: white; margin-bottom: 14px; }
.alert-mini-meter { margin-bottom: 10px; }
.amm-bar { display: flex; gap: 3px; height: 12px; position: relative; margin-bottom: 6px; }
.amm-segment { flex: 1; border-radius: 3px; }
.amm-indicator {
    position: absolute; top: -3px; left: 72%;
    width: 18px; height: 18px; border-radius: 50%;
    background: white; border: 3px solid white;
    transform: translateX(-50%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.amm-labels { display: flex; justify-content: space-between; }
.amm-labels span { font-size: 9px; color: rgba(255,255,255,0.8); }
.alert-banner-level { font-size: 14px; color: white; margin-top: 8px; }
.alert-banner-level strong { font-size: 20px; color: white; }

/* Vacancy Counter */
.vacancy-counter {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff3cd; border: 1px solid #ffc107;
    border-radius: 8px; padding: 10px 16px;
    font-size: 13px; margin-bottom: 16px;
    animation: vacancyBlink 1.5s infinite;
}
@keyframes vacancyBlink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.85; }
}
.vacancy-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #dc3545; animation: blink 1s infinite;
}
.vacancy-counter strong { color: #dc3545; font-size: 16px; }

/* ===== PRICING CARD MINI ===== */
.included-list {
    display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
    text-align: left; width: 100%;
}
.included-item {
    font-size: 14px; font-weight: 500; padding: 12px 16px;
    background: #f0faf2; border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary); color: var(--text);
}
.pricing-copy {
    text-align: center; margin-bottom: 20px;
}
.pricing-copy p {
    font-size: 13px; color: var(--text-light); line-height: 1.5; margin-bottom: 8px;
    font-style: italic;
}
.pricing-card-mini {
    border: 2px solid var(--primary); border-radius: var(--radius-sm);
    overflow: hidden; margin-bottom: 16px;
}
.pcm-header {
    background: var(--primary); color: white; font-size: 11px;
    font-weight: 700; letter-spacing: 1px; padding: 8px 12px; text-align: center;
}
.pcm-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px; background: white;
}
.pcm-name { font-size: 15px; font-weight: 700; }
.pcm-price { text-align: right; }
.pcm-discount {
    display: block; font-size: 10px; font-weight: 700;
    color: white; background: var(--primary); padding: 2px 8px;
    border-radius: 4px; margin-bottom: 4px;
}
.pcm-value { font-size: 18px; color: var(--text); }
.pcm-value strong { font-size: 26px; font-weight: 800; }

/* ===== RESULTS SECTION ===== */
.results-section { text-align: center; background: var(--secondary); }
.results-header { margin-bottom: 20px; }
.results-banner { margin-bottom: 20px; }
.results-doc-img {
    width: 80px; height: 80px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--primary); margin-bottom: 12px;
}
.dra-casos-banner { margin-bottom: 20px; }
.dra-casos-img { width: 100%; height: auto; border-radius: var(--radius); }

/* ===== SPENT SECTION ===== */
.spent-section { text-align: center; }
.spent-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; text-align: left; }
.spent-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; padding: 10px 14px; background: var(--secondary);
    border-radius: var(--radius-sm);
}
.spent-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.spent-item strong { margin-left: auto; color: #999; }
.spent-total {
    font-size: 14px; margin: 16px 0 8px; padding: 12px;
    background: #e8f5e9; border-radius: var(--radius-sm); font-weight: 500;
}
.spent-note { font-size: 13px; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }

/* Countdown Box */
.countdown-box {
    background: #fff0f0; border-radius: var(--radius);
    padding: 20px; margin-top: 16px; text-align: center;
}
.countdown-box p {
    font-size: 15px; font-weight: 600; color: var(--text);
    line-height: 1.5;
}
.countdown-timer {
    color: #dc3545; font-size: 20px; font-weight: 800;
}
.spent-urgency {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff3cd; border: 1px solid #ffc107; border-radius: 20px;
    padding: 6px 14px; font-size: 12px; margin-bottom: 16px;
}

/* ===== FEEDBACK TOAST ===== */
.feedback-toast {
    position: fixed; bottom: 20px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a1a1a; color: white;
    padding: 10px 18px; border-radius: 8px;
    font-size: 12px; font-weight: 500; z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-lg);
    max-width: 90%; text-align: center; line-height: 1.4;
}
.feedback-toast.show { transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (min-width: 481px) {
    #app { border-left: 1px solid #f0f0f0; border-right: 1px solid #f0f0f0; }
}
@media (max-width: 380px) {
    .welcome-title { font-size: 21px; }
    .question-title { font-size: 19px; }
    .screen { padding: 65px 16px 32px; }
    .timeline-grid { grid-template-columns: repeat(2, 1fr); }
    .offer-section { padding: 32px 16px; }
    .seal-img { width: 120px; height: 120px; }
    .section-title { font-size: 18px; }
}
