@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #f8fafc;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --primary-red: #e11d48;
    --primary-dark-red: #be123c;
    --primary-green: #10b981;
    --primary-blue: #2563eb;
    --border-color: #f1f5f9;
    --border-hover: #cbd5e1;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 8px -1px rgba(15, 23, 42, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 20px;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
}

/* Dark Theme Steps */
.dark-theme-step {
    --bg-primary: #090d16;
    --bg-card: #111827;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: #1f2937;
    --border-hover: #374151;
    --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow-x: hidden;
    transition: background-color var(--transition-normal) ease, color var(--transition-normal) ease;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}

/* Center card wrapper - App Frame */
.app-container {
    width: 100%;
    max-width: 440px;
    min-height: 100vh;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: none;
    transition: background var(--transition-normal) ease;
}

@media (min-width: 440px) {
    body {
        padding: 20px 0;
        background-image: radial-gradient(circle at 50% 0%, #ffffff 0%, #e2e8f0 100%);
    }
    .app-container {
        min-height: calc(100vh - 40px);
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        border: 1px solid rgba(226, 232, 240, 0.8);
    }
}

/* Premium Header styling */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background var(--transition-normal) ease, border var(--transition-normal) ease;
}

.dark-theme-step header {
    background: rgba(17, 24, 39, 0.85);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo-icon {
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.security-badge {
    font-size: 0.7rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Progress bar styling */
.progress-container {
    width: 100%;
    height: 5px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 4%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, #34d399 100%);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-text {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: right;
    letter-spacing: 0.5px;
}

/* Quiz content area */
.quiz-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    justify-content: flex-start;
}

/* Step Cards */
.step-card {
    display: none;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
}

.step-card.active {
    display: flex;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Titles and description formatting */
.step-title {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-align: center;
}

.step-title.urgente {
    color: var(--primary-red);
    font-size: 1.35rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.step-description {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 400;
}

/* Option inputs styling */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.option-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.option-btn:hover {
    border-color: var(--border-hover);
    background: var(--bg-primary);
    transform: translateY(-1px);
}

.option-btn:active {
    transform: translateY(1px);
}

/* Radio Indicator inside option-btn */
.radio-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid #94a3b8; /* slate-400 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast) ease;
    flex-shrink: 0;
    background: #ffffff;
}

.radio-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    transform: scale(0);
    transition: transform var(--transition-fast) ease;
}

/* Selected option-btn state */
.option-btn.selected {
    border-color: var(--primary-green) !important;
    background: rgba(16, 185, 129, 0.03) !important;
}

.option-btn.selected .radio-indicator {
    background: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
}

.option-btn.selected .radio-indicator::after {
    transform: scale(1);
}

.option-btn-icon {
    display: none !important;
}

/* Custom Checkbox tiles styling */
.checkbox-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: var(--bg-card);
    cursor: pointer;
    transition: all var(--transition-fast) ease;
    user-select: none;
    box-shadow: var(--shadow-sm);
}

.checkbox-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-primary);
}

.checkbox-card input[type="checkbox"] {
    display: none;
}

.checkbox-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid #94a3b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast) ease;
    flex-shrink: 0;
    background: #ffffff;
}

.checkbox-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    display: block;
    transform: scale(0);
    transition: transform var(--transition-fast) ease;
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-indicator {
    background: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-indicator::after {
    transform: scale(1);
}

.checkbox-card.selected {
    border-color: var(--primary-green) !important;
    background: rgba(16, 185, 129, 0.03) !important;
}

.checkbox-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Submit Action Buttons */
.action-btn {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.2);
    transition: all var(--transition-fast) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.action-btn:hover {
    background: #059669;
    box-shadow: 0 12px 24px -4px rgba(16, 185, 129, 0.35);
    transform: translateY(-1px);
}

.action-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px -4px rgba(16, 185, 129, 0.2);
}

/* SVGs Side-by-side */
.prostate-illustrations {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 10px 0;
}

.prostate-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: rgba(248, 250, 252, 0.6);
    text-align: center;
}

.prostate-card svg {
    width: 100%;
    max-width: 90px;
    height: auto;
}

.prostate-card-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* G1 News Mockup Styling */
.g1-container {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.g1-header {
    background: #c4170c;
    color: white;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -1px;
}

.g1-header-dots {
    display: flex;
    gap: 3px;
}

.g1-dot {
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
}

.g1-content {
    padding: 18px;
}

.g1-category {
    color: #c4170c;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.g1-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.g1-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 12px;
}

.g1-meta {
    font-size: 0.68rem;
    color: #94a3b8;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
    margin-bottom: 14px;
}

.g1-image-container {
    margin-bottom: 14px;
    background: #f8fafc;
    padding: 4px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #e2e8f0;
}

.g1-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.g1-caption {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 6px;
    line-height: 1.35;
    padding: 0 4px;
}

.g1-paragraph {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 12px;
}

.g1-quote {
    border-left: 3px solid #c4170c;
    padding-left: 12px;
    font-style: italic;
    color: #475569;
    margin: 16px 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Audio Player Simulator Styling */
.audio-simulator {
    background: #f8fafc;
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border-color);
}

.dark-theme-step .audio-simulator {
    background: #1f2937;
}

.audio-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-green);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all var(--transition-fast) ease;
    flex-shrink: 0;
}

.audio-play-btn:hover {
    transform: scale(1.05);
}

.audio-play-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.audio-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.audio-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.audio-author {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.audio-duration {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.audio-track-container {
    width: 100%;
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.dark-theme-step .audio-track-container {
    background: #4b5563;
}

.audio-track-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 3px;
    position: relative;
}

.audio-track-handle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-green);
    position: absolute;
    right: -6px;
    top: -3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Testimonial Section */
.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dark-theme-step .testimonial-card {
    background: #1f2937;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.testimonial-body {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.testimonial-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-green);
    background: rgba(16, 185, 129, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.12);
}

/* WhatsApp Simulator Mockup Styling */
.whatsapp-chat-container {
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: #efeae2; /* WhatsApp authentic cream */
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.whatsapp-header {
    background: #075e54;
    color: white;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.whatsapp-header-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.whatsapp-contact-name {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.whatsapp-contact-status {
    font-size: 0.72rem;
    opacity: 0.85;
}

.whatsapp-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 240px;
    max-height: 280px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.whatsapp-bubble {
    max-width: 82%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.whatsapp-bubble.received {
    background: #ffffff;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.whatsapp-bubble.sent {
    background: #e1ffc7;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.whatsapp-time {
    font-size: 0.65rem;
    color: #8c8c8c;
    text-align: right;
    margin-top: 3px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2px;
}

.whatsapp-double-check {
    width: 13px;
    height: 13px;
    fill: #34b7f1;
}

/* Typing animation bubble */
.whatsapp-bubble.typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    min-width: 50px;
}

.typing-dot {
    width: 5px;
    height: 5px;
    background: #9ca3af;
    border-radius: 50%;
    animation: typingBounce 1.3s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* G1 Meta and Share Bar Styles */
.g1-meta-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.75rem;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.g1-author {
    font-weight: 700;
    color: #334155;
}

.g1-date {
    color: #64748b;
}

.g1-share-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.share-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f1f5f9;
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: background-color 0.2s;
}

.share-icon:hover {
    background-color: #e2e8f0;
}

.share-icon.fb {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%231877f2" xmlns="http://www.w3.org/2000/svg"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>');
}

.share-icon.tw {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%231da1f2" xmlns="http://www.w3.org/2000/svg"><path d="M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z"/></svg>');
}

.share-icon.wa {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%2325d366" xmlns="http://www.w3.org/2000/svg"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L0 24l6.335-1.662c1.746.953 3.71 1.458 5.705 1.459h.008c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413"/></svg>');
}

.share-icon.ln {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%230e76a8" xmlns="http://www.w3.org/2000/svg"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>');
}

/* WhatsApp Mock Input Bar Styling */
.whatsapp-input-bar {
    background: #f0f2f5;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #e9edef;
}

.whatsapp-emoji-btn {
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%238696a0" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9c.83 0 1.5-.67 1.5-1.5S7.83 8 7 8s-1.5.67-1.5 1.5S6.17 11 7 11zm10 0c.83 0 1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5S16.17 11 17 11zm-5 5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"/></svg>');
    cursor: pointer;
}

.whatsapp-text-input {
    flex-grow: 1;
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: #8696a0;
    user-select: none;
}

.whatsapp-attach-btn {
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%238696a0" xmlns="http://www.w3.org/2000/svg"><path d="M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-3.31 2.69-6 6-6s6 2.69 6 6v10.5c0 4.42-3.58 8-8 8s-8-3.58-8-8V4h2v11.5c0 3.31 2.69 6 6 6s6-2.69 6-6V5c0-2.21-1.79-4-4-4s-4 1.79-4 4v12.5c0 1.1.9 2 2 2s2-.9 2-2V6h2z"/></svg>');
    cursor: pointer;
}

.whatsapp-mic-btn {
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%238696a0" xmlns="http://www.w3.org/2000/svg"><path d="M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.42 2.72 6.2 6 6.72V21h2v-3.28c3.28-.52 6-3.3 6-6.72h-1.7z"/></svg>');
    cursor: pointer;
}

/* Loading step (25) styles */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 10px;
    text-align: center;
}

.loader-circle-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-svg {
    transform: rotate(-90deg);
    width: 100px;
    height: 100px;
}

.loader-bg-circle {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 6;
}

.loader-progress-circle {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 282.7; /* 2 * PI * 45 */
    stroke-dashoffset: 282.7;
    transition: stroke-dashoffset 0.1s linear;
}

.loader-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.loading-status-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    min-height: 22px;
}

.loading-substatus-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Final Results styles */
.results-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.results-header {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--border-radius-md);
    padding: 16px;
    text-align: center;
}

.results-badge {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.results-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.results-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.results-list-item {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.results-list-icon {
    color: var(--primary-green);
    font-weight: 700;
    flex-shrink: 0;
}

/* Footer safety text */
footer {
    padding: 24px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    background: var(--bg-card);
    transition: background var(--transition-normal) ease, border var(--transition-normal) ease;
}

.footer-text {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-links a {
    font-size: 0.68rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Helpers */
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.text-center { text-align: center; }

/* Responsive touches override */
@media (max-width: 440px) {
    .app-container {
        border-radius: 0;
        box-shadow: none;
    }
}

/* Audio active play animation overlay */
.audio-simulator.playing .audio-play-btn {
    animation: playingPulse 1.4s infinite ease-in-out;
}
@keyframes playingPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3), 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3), 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* Step 1 custom text and badge styling */
.step-title-custom {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.badge-urgente {
    background-color: #000000;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 800;
    margin-right: 4px;
    font-size: 1.2rem;
}

.text-highlight-red {
    color: var(--primary-red);
}

.text-dark-bold {
    color: var(--text-primary);
    display: block;
    margin-top: 8px;
}

.step-description-custom {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.highlight-red {
    color: var(--primary-red);
    font-weight: 700;
}

.highlight-green {
    color: #10b981;
    font-weight: 700;
}

/* Step 1 diagram container */
.prostate-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0 16px 0;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step1-prostate-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Step 2 symptoms container */
.symptoms-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0 16px 0;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step2-symptoms-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Step 3 Age Grid Layout */
.age-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 15px;
}

.age-card-btn {
    background: #ffffff;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.age-card-btn:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.age-card-btn img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.age-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #f0fdf4;
    border-top: 1.5px solid rgba(16, 185, 129, 0.15);
    flex-grow: 1;
}

.age-card-footer span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.age-arrow-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all var(--transition-fast) ease;
    flex-shrink: 0;
}

.age-card-btn:hover .age-arrow-circle {
    background: #10b981;
    color: #ffffff;
}

/* Step 6 Condition Cards */
.condition-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 2px solid #a7f3d0 !important;
    background: #f0fdf4 !important;
}

.condition-card.selected {
    border-color: #10b981 !important;
    background: #e6fbf0 !important;
}

.condition-icon-container {
    width: 75px;
    height: 75px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #a7f3d0;
    flex-shrink: 0;
}

.condition-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.condition-card .checkbox-indicator {
    margin-left: 16px;
    border-color: #10b981 !important;
}

.condition-card .checkbox-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin-left: 4px;
}

/* Step 8 Article Image Styling */
.article-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0 16px 0;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.article-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Step 16 Ultrasound Comparison Image Styling */
.ultrasound-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px 0 16px 0;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.ultrasound-comparison-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Step 22 WhatsApp Testimonials Screenshots (Horizontal Swipe Carousel) */
.whatsapp-screenshots-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: 12px 0 16px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 12px 8px;
    border-radius: var(--border-radius-md);
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    scrollbar-width: none; /* Hide default scrollbar on Firefox */
}

.whatsapp-screenshots-container::-webkit-scrollbar {
    display: none; /* Hide default scrollbar on Chrome/Safari */
}

.whatsapp-screenshot-img {
    width: 90%;
    min-width: 90%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    scroll-snap-align: center;
}

/* Step 22 Analysis Layout */
.analysis-illustration-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px 0 20px 0;
}

.analysis-svg-ill {
    width: 140px;
    height: 140px;
    display: block;
}

.analysis-results-container {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.analysis-intro {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.analysis-metrics-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.metric-info-row,
.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
}

.metric-label,
.metric-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    text-align: left;
    line-height: 1.35;
    flex: 1;
}

.metric-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a !important;
    flex-shrink: 0;
    text-align: right;
    min-width: 45px;
}

.metric-bar-bg {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: visible;
    position: relative;
    margin-top: 2px;
}

.metric-bar-fill {
    height: 100%;
    width: 0%;
    background: #3b82f6;
    border-radius: 4px;
    position: relative;
    overflow: visible;
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.metric-bar-thumb {
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

/* Modifier Colors */
.metric-bar-fill.bg-red,
.metric-bar-fill.red-fill {
    background: #ef4444 !important;
}

.metric-bar-fill.bg-green,
.metric-bar-fill.green-fill {
    background: #10b981 !important;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a !important;
}
    color: #10b981;
    font-weight: 800;
}

/* Parasite Box */
.parasite-result-box {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.parasite-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
}

.parasite-name-badge {
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary-red);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 6px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    font-style: italic;
    display: inline-block;
}

/* Step 25 Comparative Table Styling */
.comparison-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0 20px 0;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.comparison-table-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Results Endoscopy Image Styling */
.results-endoscopy-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.results-endoscopy-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Results Warning Box Styling */
.results-warning-box {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 18px 16px;
    box-shadow: var(--shadow-sm);
    margin: 20px 0;
    text-align: left;
}

.warning-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ef4444; /* red warning title color */
    display: block;
    margin-bottom: 8px;
}

.warning-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
}

.highlight-green-inline {
    color: #10b981;
    font-weight: 700;
}

.highlight-green-inline-bold {
    color: #10b981;
    font-weight: 800;
}

/* Results Tomato Recipe Hint Styling */
.results-tomato-desc {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
    margin: 24px 0 20px 0;
    text-align: center;
    font-weight: 500;
}

/* Results Tomato Image Styling */
.results-tomato-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 24px 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.results-tomato-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Green CTA button style override */
.action-btn.bg-green-btn {
    background: #10b981 !important;
    color: #ffffff !important;
    border-color: #059669 !important;
    font-weight: 800;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2), 0 2px 4px -1px rgba(16, 185, 129, 0.1);
}

.action-btn.bg-green-btn:hover {
    background: #059669 !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3), 0 4px 6px -2px rgba(16, 185, 129, 0.05);
}

/* VSL/Sales Page Premium Redesign Styles */
.vsl-sales-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    width: 100%;
    margin-top: 10px;
}

.vsl-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.vsl-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0f172a;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vsl-success-check-svg {
    width: 14px;
    height: 14px;
}

.vsl-title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.1), 0 2px 4px -1px rgba(16, 185, 129, 0.05);
    width: 100%;
    max-width: 320px;
}

.vsl-title-prefix {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vsl-title-highlight {
    font-size: 1.25rem;
    font-weight: 800;
    color: #10b981;
}

.vsl-arrow-down-container {
    margin-top: 10px;
    animation: bounce 2s infinite;
}

.vsl-arrow-down {
    color: #3b82f6;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

.vsl-headline {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 16px;
}

.vsl-headline .highlight-green {
    color: #10b981;
}

.vsl-subheadline {
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 24px;
}

/* Comparison Grid (Antes/Depois) */
.vsl-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
}

.vsl-comp-card {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.comp-tag {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
}

.tag-red {
    background: rgba(148, 163, 184, 0.1);
    color: #64748b;
}

.tag-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.comp-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.comp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comp-desc {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1;
}

.comp-slider-track {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    position: relative;
}

.comp-slider-bar {
    height: 100%;
    border-radius: 3px;
}

.before-bar {
    width: 30%;
    background: #94a3b8;
}

.after-bar {
    width: 100%;
    background: #10b981;
}

.comp-slider-handle {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 2px solid #94a3b8;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.before-pos {
    left: 30%;
}

.after-pos {
    left: 90%;
    border-color: #10b981;
}

.vsl-audio-invite {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin: 16px 0 12px 0;
}

/* Attention Box */
.vsl-attention-box {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-left: 4px solid #f59e0b;
    padding: 12px 16px;
    margin: 16px 0;
    text-align: left;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.vsl-attention-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #f59e0b;
    display: block;
    margin-bottom: 4px;
}

.vsl-attention-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.45;
}

/* Checklist list */
.vsl-check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.vsl-check-list li {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-icon {
    font-size: 1rem;
    line-height: 1;
}

.vsl-check-conclusion {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.45;
    text-align: center;
    margin: 16px 0;
}

.vsl-check-invitation {
    font-size: 1rem;
    color: #10b981;
    text-align: center;
    margin-bottom: 24px;
}

/* Pricing Section */
.vsl-pricing-section {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vsl-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
}

.vsl-logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vsl-pricing-heart-svg {
    width: 100%;
    height: 100%;
}

.vsl-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.vsl-logo-main {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.vsl-logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.vsl-inclusions-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.vsl-inclusion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #334155;
    font-weight: 500;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 8px;
    text-align: left;
}

.inc-check {
    color: #10b981;
    margin-right: 6px;
}

.inc-price {
    font-weight: 700;
    color: #475569;
}

.vsl-price-math {
    text-align: center;
    margin-bottom: 20px;
}

.vsl-total-slashed {
    font-size: 0.85rem;
    color: #ef4444;
    font-weight: 700;
    margin-bottom: 4px;
}

.vsl-promo-text {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.vsl-promo-price {
    font-size: 2rem;
    color: #10b981;
    font-weight: 800;
}

.vsl-cta-btn {
    background: #10b981 !important;
    border-color: #059669 !important;
    color: #ffffff !important;
    width: 100%;
    font-size: 1rem;
    font-weight: 800;
    padding: 14px 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2);
}

.vsl-guarantees {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
    color: #64748b;
}

.vsl-guarantees p {
    margin: 0;
}

.vsl-guarantees span {
    color: #10b981;
    margin-right: 2px;
}

/* Warranty Seal Card */
.warranty-seal-container {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fdfaf2;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    margin-bottom: 24px;
}

.warranty-seal-badge {
    flex-shrink: 0;
}

.seal-outer-ring {
    width: 64px;
    height: 64px;
    background: #d97706;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seal-inner-ring {
    width: 100%;
    height: 100%;
    border: 1px dashed #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.seal-number {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.seal-text-small {
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
}

.seal-text-large {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-top: 1px;
}

.warranty-seal-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.seal-info-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #78350f;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.seal-info-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: #92400e;
}

/* Video Testimonial Card */
.vsl-video-section {
    width: 100%;
    margin-bottom: 24px;
}

.video-simulator-vsl {
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    opacity: 0.8;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.3);
}

.youtube-play-btn {
    width: 60px;
    height: 42px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    cursor: pointer;
}

.youtube-play-btn svg {
    width: 22px;
    height: 22px;
}

.video-title-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.vsl-video-bullets {
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.vsl-video-bullets p {
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 8px;
}

.vsl-video-bullets ul {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vsl-video-bullets li {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.4;
}

/* Test 180 Days without risk box */
.vsl-test-box {
    background: #ffffff;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vsl-test-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.vsl-test-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
}

.vsl-test-subtitle {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.vsl-test-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.vsl-test-label {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 700;
}

.vsl-test-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}

.vsl-test-or {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
}

/* Reviews Cards List */
.vsl-reviews-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: 24px 0;
}

.vsl-review-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    background: #e2e8f0;
    color: #475569;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-user-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
}

.review-meta {
    font-size: 0.7rem;
    color: #64748b;
}

.review-text {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.45;
    margin: 0;
}

/* Bonus Book Section */
.vsl-bonus-section {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    margin: 16px 0;
    text-align: left;
}

.vsl-bonus-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.45;
    margin-bottom: 12px;
}

.vsl-bonus-bullets {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vsl-bonus-bullets li {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.4;
}

/* Gift Present section */
.vsl-gift-section {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    margin: 16px 0;
    text-align: center;
}

.vsl-gift-text {
    font-size: 0.85rem;
    color: #334155;
    line-height: 1.45;
    margin-bottom: 16px;
}

.vsl-gift-text .highlight-green-bold {
    color: #10b981;
    font-weight: 800;
}

.vsl-gift-img-container {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}

.vsl-gift-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Zero Risk Box */
.vsl-zero-risk-box {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    margin: 24px 0;
    text-align: left;
}

.vsl-zero-risk-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.vsl-badge-check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vsl-shield-svg {
    width: 100%;
    height: 100%;
}

.vsl-badge-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
}

.vsl-zero-risk-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.5;
    text-align: justify;
    margin: 0;
}

/* FAQ / Final CTA */
.vsl-faq-section {
    text-align: left;
    width: 100%;
    margin: 24px 0 12px 0;
}

.faq-question {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 10px;
}

/* Step 24 Video Testimonial Styles */
.video-testimonial-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.video-player-container {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1; /* Square aspect ratio matching the print */
}

.step-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 2;
}

.video-play-btn-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.video-play-overlay-custom:hover .video-play-btn-circle {
    transform: scale(1.1);
    background: rgba(16, 185, 129, 0.8);
    border-color: #ffffff;
}

.video-play-svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
    margin-left: 4px;
}

.video-badge-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    z-index: 2;
    pointer-events: none;
}

.video-player-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 0 4px;
}

.video-footer-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
}

.video-footer-link-btn {
    font-size: 0.78rem;
    color: #3b82f6; /* Blue link color matching print */
    font-weight: 700;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    margin-left: 10px;
}

.video-footer-link-btn:hover {
    text-decoration: underline;
}

/* Step 27 VSL Video Player Styles */
.video-player-container-vsl {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vsl-step-video {
    width: 100%;
    height: auto;
    display: block;
}

.vsl-video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 2;
}

.vsl-video-play-overlay:hover .youtube-play-btn {
    transform: scale(1.1);
    background: rgba(16, 185, 129, 0.95);
}
