/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Colors - Brand & Accents */
    --primary: #d9455c;          /* Crimson red for highlights and CTAs */
    --primary-hover: #c2384e;
    --primary-light: #e19aa1;
    --primary-dark: #b82d43;
    
    /* Backgrounds & Surfaces */
    --bg-dark: #09090b;          /* Immersive void black */
    --bg-light: #ffffff;         /* Pure canvas white */
    --bg-parchment: #f6f5f2;     /* Warm elegant cream */
    --surface-tile: #18181b;     /* Card background in dark sections */
    --surface-card: #fafafa;     /* Card background in light sections */
    
    /* Text colors */
    --text-light: #ffffff;
    --text-dark: #18181b;        /* Apple-style deep ink */
    --text-muted: #52525b;       /* Soft readable grey */
    --text-light-muted: #a1a1aa; /* Readable light grey on dark bg */
    
    /* Borders & Hairlines */
    --border-light: #e4e4e7;
    --border-dark: #27272a;
    --accent-glow: rgba(217, 69, 92, 0.15);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(217, 69, 92, 0.3), 0 10px 20px -10px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-out;
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.serif-italic {
    font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
    font-style: italic;
}

.font-accent {
    color: var(--primary-light);
    font-weight: 400;
}

.font-accent-dark {
    color: var(--primary);
    font-weight: 500;
}

.text-glow {
    text-shadow: 0 0 15px rgba(225, 154, 161, 0.3);
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* ==========================================================================
   Layout & Reusable Components
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.narrow-container {
    max-width: 720px;
}

.accent-bar {
    width: 48px;
    height: 3.5px;
    background-color: var(--primary);
    border-radius: 2px;
    margin-bottom: 32px;
}

.centered-bar {
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-parchment {
    background-color: var(--bg-parchment);
    color: var(--text-dark);
}

.bg-accent-light {
    background-color: var(--primary-light);
}

.mt-8 { margin-top: 32px; }
.mt-4 { margin-top: 16px; }
.mt-2 { margin-top: 8px; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-announcement-bar {
    background-color: #7e192a;
    color: var(--text-light);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement-bar p {
    margin: 0;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 9999px;
    box-shadow: 0 10px 25px -5px rgba(217, 69, 92, 0.4);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--primary-hover);
    box-shadow: 0 15px 30px -5px rgba(217, 69, 92, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary .icon-arrow {
    transition: transform 0.2s ease-out;
}

.btn-primary:hover .icon-arrow {
    transform: translateX(4px);
}

.btn-lg {
    padding: 22px 50px;
    font-size: clamp(18px, 2.8vw, 22px);
}

.w-full {
    width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.section-hero {
    position: relative;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 0 120px 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    height: 450px;
    background: radial-gradient(circle, rgba(217, 69, 92, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-tagline {
    display: inline-block;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(225, 154, 161, 0.25);
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(225, 154, 161, 0.05);
}

.hero-title {
    font-size: clamp(32px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.hero-lead {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    color: var(--text-light-muted);
    max-width: 720px;
    margin: 0 auto 48px auto;
    line-height: 1.5;
}

.highlight-text {
    color: var(--text-light);
    font-weight: 600;
}

/* ==========================================================================
   Testimonials (Social Proof) Section
   ========================================================================== */
.section-testimonials {
    background-color: #121214;
    padding: 80px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.section-tag {
    text-align: center;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-light-muted);
    margin-bottom: 48px;
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background-color: var(--surface-tile);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(225, 154, 161, 0.08);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 154, 161, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-img-wrapper {
    width: 100%;
    background-color: #0c0c0e;
    overflow: hidden;
}

.testimonial-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.testimonial-footer {
    padding: 24px;
}

.testimonial-name {
    display: block;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
}

.testimonial-meta {
    display: block;
    color: var(--text-light-muted);
    font-size: 14px;
    margin-top: 4px;
}

/* ==========================================================================
   WhatsApp Reviews Style Testimonials
   ========================================================================== */
.whatsapp-reviews-title-block {
    text-align: center;
    margin-bottom: 32px;
}

.section-tag-sub {
    font-size: 17px;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.whatsapp-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .whatsapp-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wa-chat-box {
    background-color: #0b141a;   /* WhatsApp dark mode chat bg */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.wa-chat-header {
    background-color: #202c33;   /* WhatsApp dark header */
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #00a884;   /* Green avatar */
    color: var(--text-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.wa-avatar-blue {
    background-color: #128c7e;
}

.wa-avatar-purple {
    background-color: #6a1b9a;
}

.wa-user-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.wa-user-name {
    font-size: 14.5px;
    font-weight: 600;
    color: #e9edef;
}

.wa-status {
    font-size: 11px;
    color: #8696a0;
}

.wa-chat-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 16px 16px;
    flex-grow: 1;
}

.wa-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.wa-bubble.received {
    background-color: #202c33;   /* WhatsApp received bubble dark */
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-time {
    display: block;
    font-size: 9px;
    color: #8696a0;
    text-align: right;
    margin-top: 4px;
}

/* ==========================================================================
   Interactive Relationship Diagnostic Quiz
   ========================================================================== */
.section-quiz {
    padding: 100px 0;
}

.quiz-card {
    background-color: var(--bg-light);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .quiz-card {
        padding: 56px 48px;
    }
}

.quiz-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background-color: rgba(217, 69, 92, 0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 99px;
}

.quiz-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.quiz-intro {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-wrapper {
    position: relative;
    min-height: 280px;
}

.quiz-step {
    display: none;
    flex-direction: column;
}

.quiz-step.active {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}

.step-indicator {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.quiz-step h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    line-height: 1.35;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-opt-btn {
    border: 1px solid var(--border-light);
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.quiz-opt-btn:hover {
    border-color: var(--primary);
    background-color: rgba(217, 69, 92, 0.02);
}

/* Spinner Loader */
#step-loading {
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.spinner-loader {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(217, 69, 92, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

.loading-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Result step */
.result-header {
    margin-bottom: 28px;
}

.result-risk-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.risk-bar-container {
    height: 16px;
    background-color: var(--border-light);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.risk-bar {
    height: 100%;
    background: linear-gradient(to right, #e19aa1, var(--primary));
    width: 0%;
    border-radius: 99px;
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.risk-percentage {
    position: absolute;
    right: 16px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-dark);
}

.result-body {
    background-color: var(--bg-parchment);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin-bottom: 28px;
}

.result-status-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.result-paragraph {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.result-recommendation {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.result-recommendation h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.result-recommendation p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Irrational Behavior Section
   ========================================================================== */
.section-irrational {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-body {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 32px;
}

.section-body p {
    margin-bottom: 20px;
}

.section-body p:last-child {
    margin-bottom: 0;
}

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

/* Dark Callout Box inside Light Section */
.dark-callout {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 48px 36px;
    border-radius: 16px;
    text-align: center;
    margin: 48px 0;
    box-shadow: var(--shadow-lg);
}

.icon-heart {
    color: var(--primary-light);
    margin-bottom: 20px;
    animation: pulse 2.5s infinite ease-in-out;
}

.dark-callout h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.dark-callout p {
    color: var(--text-light-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Parchment block (Highlighted left border) */
.parchment-box {
    background-color: var(--bg-parchment);
    padding: 24px 32px;
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    margin: 32px 0;
    font-size: 19px;
}

.question-highlight {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
    margin-top: 24px;
}

/* ==========================================================================
   Errors Section
   ========================================================================== */
.section-errors {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-intro {
    font-size: 19px;
    margin-bottom: 40px;
}

/* Stats */
.stat-container {
    text-align: center;
    margin: 48px 0;
}

.stat-number {
    display: block;
    font-size: clamp(68px, 12vw, 110px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-caption {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Errors List */
.error-list {
    list-style: none;
    margin-bottom: 48px;
}

.error-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: clamp(16px, 2.2vw, 19px);
    color: var(--text-muted);
    line-height: 1.5;
}

.error-list li:last-child {
    border-bottom: none;
}

.icon-x-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    margin-top: 2px;
    flex-shrink: 0;
}

.errors-conclusion-box {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid rgba(217, 69, 92, 0.15);
    font-size: 19px;
    color: var(--text-muted);
}

/* ==========================================================================
   Circuit Section & Chat Simulator
   ========================================================================== */
.section-circuit {
    padding: 100px 0;
}

.highlight-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: clamp(36px, 6vw, 54px);
    font-weight: 700;
    padding: 14px 44px;
    border-radius: 8px;
    margin: 40px 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.circuit-description {
    font-size: clamp(18px, 2.5vw, 22px);
    max-width: 560px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
}

.circuit-sub-caption {
    font-size: 14px;
    color: var(--text-light-muted);
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 56px;
}

/* Chat Simulator Mockup */
.chat-simulator-container {
    max-width: 480px;
    margin: 0 auto 56px auto;
    background-color: #121214;
    border-radius: 28px;
    border: 6px solid #27272a;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    text-align: left;
}

.chat-simulator-header {
    background-color: #1e1e20;
    padding: 16px 16px 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.sim-phone-notch {
    width: 110px;
    height: 18px;
    background-color: #27272a;
    border-radius: 0 0 12px 12px;
    margin: -16px auto 12px auto;
}

.sim-tab-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 8px;
}

.sim-tab-btn {
    border: none;
    background: none;
    color: var(--text-light-muted);
    font-size: 11px;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.sim-tab-btn.active {
    background-color: #27272a;
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.chat-simulator-body {
    padding: 24px;
    background-color: #0c0c0e;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.sim-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sim-tab-content.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.chat-message-bubble {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    align-self: flex-end;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
}

.bubble-sent {
    background-color: #27272a;
    color: #e4e4e7;
    border-bottom-right-radius: 4px;
}

.message-time {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    text-align: right;
    margin-top: 4px;
}

.chat-bubble-explanation {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.5;
}

.error-explanation {
    background-color: rgba(217, 69, 92, 0.08);
    border: 1px solid rgba(217, 69, 92, 0.15);
    color: #e19aa1;
}

.strategic-explanation {
    background-color: rgba(225, 154, 161, 0.08);
    border: 1px solid rgba(225, 154, 161, 0.2);
    color: #e19aa1;
}

/* Strategic locked state message style */
.bubble-strategic {
    background: linear-gradient(135deg, #b82d43 0%, #7e192a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-self: flex-end;
    color: var(--text-light);
}

.locked-message-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
    text-align: center;
}

.icon-lock {
    color: var(--primary-light);
    filter: drop-shadow(0 0 8px rgba(225, 154, 161, 0.5));
    animation: pulse 2s infinite ease-in-out;
}

.locked-message-overlay span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Objection Card */
.objection-card {
    background-color: #121214;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    max-width: 520px;
    margin: 0 auto;
}

.objection-quote {
    font-style: italic;
    font-weight: 600;
    font-size: clamp(17px, 2.2vw, 20px);
    color: var(--text-light);
    margin-bottom: 12px;
}

.objection-body {
    font-size: 14.5px;
    line-height: 1.6;
}

/* ==========================================================================
   Protocol Section
   ========================================================================== */
.section-protocol {
    padding: 100px 0;
}

.section-subtitle {
    font-size: 19px;
    max-width: 600px;
    margin: 0 auto 56px auto;
}

.protocol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .protocol-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .span-two-cols {
        grid-column: span 2;
    }
}

.protocol-card {
    background-color: var(--bg-parchment);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.protocol-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 69, 92, 0.2);
    box-shadow: var(--shadow-md);
}

.protocol-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.protocol-step-number {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary);
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.protocol-icon-wrapper {
    opacity: 0.8;
}

.protocol-card h3 {
    font-size: clamp(19px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.protocol-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Interactive Scenario Selector
   ========================================================================== */
.scenario-selector-container {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    margin-top: 48px;
}

@media (min-width: 640px) {
    .scenario-selector-container {
        padding: 40px;
    }
}

.scenario-title-sec {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.scenario-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.scenario-tab-btn {
    border: 1px solid var(--border-light);
    background: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 99px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.scenario-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.scenario-tab-btn.active {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(217, 69, 92, 0.2);
}

.scenario-content-box {
    position: relative;
    min-height: 120px;
}

.scenario-panel {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.scenario-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.scen-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .scen-comparison {
        grid-template-columns: 1fr 1fr;
    }
}

.scen-column {
    padding: 24px;
    border-radius: 12px;
    text-align: left;
}

.scen-column.wrong {
    background-color: rgba(217, 69, 92, 0.02);
    border: 1px solid rgba(217, 69, 92, 0.1);
}

.scen-column.correct {
    background-color: rgba(0, 168, 132, 0.02);
    border: 1px solid rgba(0, 168, 132, 0.15);
}

.scen-header-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.scen-column.wrong .scen-header-label {
    color: var(--primary);
}

.scen-column.correct .scen-header-label {
    color: #128c7e;
}

.scen-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Hurts Section
   ========================================================================== */
.section-hurts {
    padding: 100px 0;
}

.hurts-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hurt-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--surface-tile);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.hurt-item:hover {
    border-color: rgba(225, 154, 161, 0.15);
}

.hurt-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.hurt-item p {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-light-muted);
    text-align: left;
}

.hurt-highlight {
    background-color: rgba(217, 69, 92, 0.06);
    border: 1px solid rgba(217, 69, 92, 0.2);
}

.glow-dot {
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* ==========================================================================
   No Running After Section
   ========================================================================== */
.section-running-after {
    padding: 100px 0;
}

.solutions-container {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .solutions-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 28px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
}

.solution-card:hover {
    border-color: rgba(217, 69, 92, 0.2);
    box-shadow: var(--shadow-sm);
}

.solution-icon-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.solution-card p {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.solution-card strong {
    color: var(--text-dark);
}

.solutions-footer {
    text-align: center;
    font-size: 18px;
    margin-top: 48px;
    line-height: 1.6;
}

/* ==========================================================================
   Responsibility Notice Section
   ========================================================================== */
.section-responsibility {
    padding: 80px 0;
}

.responsibility-intro {
    font-size: 18px;
    max-width: 580px;
    margin: 0 auto 40px auto;
}

.responsibility-box {
    background-color: rgba(217, 69, 92, 0.03);
    border: 1px solid rgba(217, 69, 92, 0.15);
    border-radius: 16px;
    padding: 48px 36px;
    max-width: 600px;
    margin: 0 auto;
}

.icon-handshake {
    color: var(--primary);
    margin-bottom: 16px;
}

.responsibility-box h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.responsibility-box p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Author Profile Section
   ========================================================================== */
.section-author {
    padding: 100px 0;
    border-top: 1px solid var(--border-dark);
}

.author-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    margin-bottom: 40px;
}

.author-profile-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .author-profile-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }
}

.author-image-block {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .author-image-block {
        width: 220px;
        height: 220px;
    }
}

.author-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details-block {
    text-align: center;
}

@media (min-width: 768px) {
    .author-details-block {
        text-align: left;
    }
}

.author-name {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.author-title {
    font-size: 17px;
    color: var(--text-light-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.author-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 768px) {
    .author-stats {
        justify-content: flex-start;
    }
}

.stat-badge {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 14.5px;
}

.author-text-content {
    max-width: 820px;
}

.author-quote-title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 24px;
}

.author-body {
    font-size: clamp(16px, 2.2vw, 19px);
    line-height: 1.6;
    margin-bottom: 24px;
}

.author-closing {
    font-size: clamp(17px, 2.4vw, 20px);
    font-weight: 500;
}

/* ==========================================================================
   Value Section
   ========================================================================== */
.section-value {
    padding: 100px 0 80px 0;
}

.value-text {
    font-size: 18px;
    line-height: 1.6;
}

.limit-box {
    margin-top: 40px;
    background-color: rgba(217, 69, 92, 0.03);
    border: 1px solid rgba(217, 69, 92, 0.15);
    padding: 24px;
    border-radius: 8px;
    font-size: 17px;
}

/* ==========================================================================
   Offer Section (Checkout Box)
   ========================================================================== */
.section-offer {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.offer-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(217, 69, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.scarcity-widget {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 99px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.live-pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.scarcity-text {
    font-size: 13.5px;
    color: var(--text-dark);
}

.offer-box-header {
    margin-bottom: 40px;
}

.offer-badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid rgba(217, 69, 92, 0.2);
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.offer-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-dark);
}

/* Offer Card (Dark theme box) */
.offer-card {
    position: relative;
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.offer-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 100% 0%, rgba(225, 154, 161, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.offer-card-body {
    padding: 48px 24px;
}

@media (min-width: 640px) {
    .offer-card-body {
        padding: 56px 48px;
    }
}

.price-header {
    margin-bottom: 40px;
}

.price-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.original-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.price-original {
    font-size: 28px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
}

.discount-tag {
    background-color: rgba(225, 154, 161, 0.15);
    color: var(--primary-light);
    font-size: 15px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.price-main .currency {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-light);
    margin-right: 4px;
}

.price-main .integer {
    font-size: clamp(100px, 15vw, 150px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.price-installments {
    font-size: clamp(17px, 2.5vw, 22px);
    color: var(--text-light-muted);
}

.price-installments strong {
    color: var(--text-light);
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 40px 0;
}

.included-title {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    margin-bottom: 24px;
    font-weight: 600;
}

.included-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 48px;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.4;
}

.icon-check-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(225, 154, 161, 0.12);
    color: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
}

.included-text {
    color: var(--text-light-muted);
}

.checkout-cta-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.btn-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: clamp(18px, 2.5vw, 23px);
    font-weight: 700;
    padding: 22px 32px;
    border-radius: 9999px;
    box-shadow: 0 20px 40px -10px rgba(217, 69, 92, 0.6);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.btn-checkout:hover {
    transform: scale(1.02);
    background-color: var(--primary-hover);
    box-shadow: 0 25px 45px -10px rgba(217, 69, 92, 0.8);
}

.btn-checkout .icon-arrow-btn {
    transition: transform 0.2s ease-out;
}

.btn-checkout:hover .icon-arrow-btn {
    transform: translateX(4px);
}

.checkout-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light-muted);
}

.icon-lock-sec {
    opacity: 0.6;
}

/* Guarantee Info Block (inside card container) */
.offer-guarantee-block {
    background-color: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

@media (min-width: 640px) {
    .offer-guarantee-block {
        flex-direction: row;
        text-align: left;
        padding: 48px;
        align-items: flex-start;
    }
}

.guarantee-badge-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: rgba(217, 69, 92, 0.12);
    border: 2px solid var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 24px -6px rgba(217, 69, 92, 0.4);
}

.icon-shield-gold {
    color: var(--primary-light);
}

.guarantee-text h3 {
    font-size: clamp(20px, 3.5vw, 24px);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.guarantee-text p {
    font-size: 15.5px;
    color: var(--text-light-muted);
    line-height: 1.5;
}

.offer-footer-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 32px;
}

/* ==========================================================================
   Two Paths Section
   ========================================================================== */
.section-paths {
    padding: 100px 0;
    border-top: 1px solid var(--border-dark);
}

.paths-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
}

.paths-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    margin-bottom: 56px;
}

.paths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .paths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.path-card {
    padding: 48px 36px;
    background-color: var(--bg-dark);
}

.path-negative {
    opacity: 0.85;
}

.path-positive {
    background-color: #121214;
    border-left: none;
}

@media (min-width: 768px) {
    .path-positive {
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.path-index {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 32px;
}

.path-negative .path-index {
    color: var(--text-light-muted);
}

.path-positive .path-index {
    color: var(--primary-light);
}

.path-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.path-list li {
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 1.4;
}

.path-negative .path-list li {
    color: var(--text-light-muted);
    font-weight: 300;
}

.path-positive .path-list li {
    color: var(--text-light);
    font-weight: 500;
}

.paths-cta-block {
    margin-top: 80px;
}

.paths-conclusion-text {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 24px;
    line-height: 1.5;
}

.paths-final-call {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-light);
    font-weight: 600;
}

.paths-cta-sub-text {
    font-size: 13.5px;
    color: var(--text-light-muted);
    margin-top: 16px;
    opacity: 0.8;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.section-faq {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.faq-accordion-group {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(217, 69, 92, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    font-size: clamp(16px, 2.2vw, 18.5px);
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding-bottom: 24px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq-answer p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.footer .copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer .disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.96);
    }
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Ripple Button Click Animation Class */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

/* Quiz Subtle Link styling */
.quiz-subtle-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    font-size: 16px;
    margin-top: 16px;
    transition: var(--transition-fast);
}

.quiz-subtle-link:hover {
    color: var(--primary-hover);
    transform: translateY(1px);
}
