/* ===================================
   PELVME TRIZONE TRAINING - CONVERSION OPTIMIZED
   Clean, Modern, Professional
   =================================== */

/* ============= FONT IMPORT ============= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ============= ROOT VARIABLES ============= */
:root {
    /* HARNA Color Palette */
    --primary: #7646FF;
    --primary-dark: #5C35CC;
    --primary-light: #9B7AFF;
    --secondary: #3A2D5F;
    --accent-pink: #df668b;
    --accent-blue: #829dfd;
    --accent-magenta: #C459BE;
    
    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F8F7FC;
    --bg-subtle: #F3F1FA;
    --bg-card: #FFFFFF;
    --bg-dark: #1a1033;
    
    /* Text Colors */
    --text-primary: #3A2D5F;
    --text-secondary: #6B6480;
    --text-muted: #9891A8;
    --text-white: #FFFFFF;
    
    /* Borders & Shadows */
    --border-light: #E8E5F0;
    --border-medium: #D4D0E3;
    --shadow-sm: 0 2px 8px rgba(58, 45, 95, 0.08);
    --shadow-md: 0 4px 20px rgba(58, 45, 95, 0.12);
    --shadow-lg: 0 8px 40px rgba(58, 45, 95, 0.16);
    --shadow-xl: 0 16px 60px rgba(58, 45, 95, 0.2);
    --shadow-primary: 0 4px 20px rgba(118, 70, 255, 0.25);
    
    /* Status Colors */
    --success: #22C55E;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    
    /* Max Widths */
    --max-w-sm: 640px;
    --max-w-md: 768px;
    --max-w-lg: 1024px;
    --max-w-xl: 1200px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-weight: 400;
}

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover { color: var(--primary-dark); }

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

/* ============= UTILITIES ============= */
.container {
    max-width: var(--max-w-xl);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--text-white); }

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

.highlight-text {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============= BUTTONS ============= */
.btn-primary,
.btn-secondary,
.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(118, 70, 255, 0.4);
    color: var(--text-white);
}

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

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    color: var(--primary);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
}

.btn-nav {
    padding: var(--space-3) var(--space-5);
    background: var(--bg-subtle);
    color: var(--primary);
    font-size: 0.875rem;
    border-radius: var(--radius-full);
}

.btn-nav:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

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

/* ============= HEADER ============= */
.header {
    background: var(--bg-white);
    padding: var(--space-4) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
    letter-spacing: -0.03em;
}

.logo .tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: height 0.2s ease;
}

.logo-img-small { height: 34px; }

.logo-text {
    display: flex;
    flex-direction: column;
}

.nav {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.nav a:hover { color: var(--primary); }

/* ============= NEW HERO SECTION ============= */
.hero-new {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--space-16) 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.98) 40%,
        rgba(255, 255, 255, 0.8) 60%,
        rgba(255, 255, 255, 0.3) 100%);
    z-index: 2;
}

.hero-new .container {
    position: relative;
    z-index: 3;
}

.hero-content-new {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(118, 70, 255, 0.15), rgba(223, 102, 139, 0.15));
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(118, 70, 255, 0.2);
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

.hero-subheadline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.4;
}

.hero-description-new {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
    line-height: 1.7;
}

.hero-trust {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-6);
    margin-bottom: 0;
}

/* ============= SECTION STYLES ============= */
section {
    padding: var(--space-20) 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-12);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============= PAIN AMPLIFICATION SECTION ============= */
.pain-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin: var(--space-12) 0;
}

.pain-card {
    background: var(--bg-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-pink);
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: var(--space-4);
}

.pain-card p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.pain-closing {
    text-align: center;
    margin-top: var(--space-12);
    padding: var(--space-8);
    background: linear-gradient(135deg, rgba(223, 102, 139, 0.1), rgba(118, 70, 255, 0.1));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(223, 102, 139, 0.2);
}

.pain-statement {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.pain-reveal {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============= QUIZ CTA SECTION ============= */
.quiz-cta-section {
    background: var(--primary);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.quiz-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quiz-cta-box {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.quiz-cta-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.quiz-cta-box h2 {
    color: var(--text-white);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: var(--space-4);
}

.quiz-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
}

.quiz-cta-box .btn-primary {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.quiz-cta-box .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.quiz-cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-4);
    margin-bottom: 0;
}

/* ============= VILLAIN SECTION ============= */
.villain-section {
    background: var(--bg-white);
}

.villain-content {
    max-width: 900px;
    margin: 0 auto;
}

.villain-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.villain-problem,
.villain-reveal {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
}

.villain-problem {
    background: linear-gradient(135deg, #fff5f7, #fef2f4);
    border: 1px solid rgba(223, 102, 139, 0.2);
}

.villain-reveal {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border: 1px solid rgba(118, 70, 255, 0.2);
}

.villain-problem h3,
.villain-reveal h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
}

.villain-stat {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-pink);
    font-style: italic;
}

.villain-key {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(118, 70, 255, 0.1);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-top: var(--space-4);
}

/* ============= MECHANISM SECTION ============= */
.mechanism-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.zones-visual {
    text-align: center;
    margin: var(--space-10) 0;
}

.zones-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.zones-explanation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin: var(--space-12) 0;
}

.zone-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    background: var(--bg-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    max-width: 280px;
    transition: all var(--transition-base);
}

.zone-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.zone-number-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.zone-content h4 {
    font-size: 1rem;
    margin-bottom: var(--space-1);
}

.zone-action {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.zone-content p:last-child {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.zone-arrow-large {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.mechanism-highlight {
    background: linear-gradient(135deg, rgba(118, 70, 255, 0.1), rgba(223, 102, 139, 0.1));
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary);
    margin-top: var(--space-12);
}

.mechanism-highlight h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
}

.warning-text {
    background: rgba(239, 68, 68, 0.1);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--error);
    margin-top: var(--space-4);
    color: var(--text-primary);
}

/* ============= SCIENCE SECTION ============= */
.science-section {
    background: var(--bg-white);
}

.science-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.science-content h2 {
    text-align: left;
    margin-bottom: var(--space-6);
}

.science-list {
    list-style: none;
    margin-top: var(--space-6);
}

.science-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: 1.0625rem;
    color: var(--text-secondary);
}

.science-list li i {
    color: var(--success);
    font-size: 1.25rem;
}

.science-visual {
    text-align: center;
}

.brain-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.brain-icon,
.pelvic-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--bg-subtle), var(--bg-light));
    padding: var(--space-6);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.connection-line {
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary), var(--accent-pink));
    border-radius: var(--radius-full);
    position: relative;
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.science-caption {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-4);
    font-style: italic;
}

/* ============= TESTIMONIALS NEW ============= */
.testimonials-section-new {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.testimonial-card-new {
    background: var(--bg-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card-new.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #faf5ff, #f5f3ff);
    border-color: var(--primary-light);
}

.testimonial-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: var(--space-2);
    font-family: Georgia, serif;
}

.testimonial-story {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.testimonial-result {
    font-size: 1.0625rem;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.author-details {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.stars {
    color: #F59E0B;
    font-size: 1rem;
    margin-top: var(--space-4);
    letter-spacing: 2px;
}

.testimonial-cta {
    text-align: center;
    margin-top: var(--space-12);
}

/* ============= PROGRAM SECTION NEW ============= */
.program-section-new {
    background: var(--bg-white);
}

.program-timeline {
    max-width: 800px;
    margin: var(--space-12) auto 0;
    position: relative;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent-pink));
    border-radius: var(--radius-full);
}

.timeline-item {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    position: relative;
}

.timeline-week {
    flex-shrink: 0;
    width: 120px;
    background: var(--primary);
    color: var(--text-white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--bg-light);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    flex-grow: 1;
    border: 1px solid var(--border-light);
}

.timeline-content h3 {
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ============= VALUE STACK SECTION ============= */
.value-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.value-grid {
    max-width: 800px;
    margin: var(--space-10) auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-5) var(--space-6);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.value-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bg-subtle), var(--bg-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.value-details {
    flex-grow: 1;
}

.value-details h4 {
    margin-bottom: var(--space-1);
    font-size: 1.0625rem;
}

.value-details p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.value-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.value-total {
    text-align: center;
    margin-top: var(--space-10);
}

.total-box {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: var(--space-8) var(--space-12);
    border-radius: var(--radius-xl);
    color: var(--text-white);
}

.total-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: var(--space-2);
}

.total-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: var(--space-2);
}

.total-today {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: 800;
}

/* ============= GUARANTEE SECTION ============= */
.guarantee-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02));
    padding: var(--space-16) 0;
}

.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
}

.guarantee-badge i {
    font-size: 2.5rem;
    color: var(--text-white);
}

.guarantee-box h2 {
    color: var(--success);
    margin-bottom: var(--space-6);
}

.guarantee-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.guarantee-promise {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: var(--space-6) 0;
}

.guarantee-note {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============= COMPARISON SECTION ============= */
.comparison-section {
    background: var(--bg-white);
}

.comparison-table {
    max-width: 800px;
    margin: var(--space-10) auto 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--secondary);
    color: var(--text-white);
}

.comparison-col {
    padding: var(--space-5) var(--space-6);
    font-weight: 600;
    text-align: center;
}

.comparison-col.old {
    background: rgba(239, 68, 68, 0.2);
}

.comparison-col.new {
    background: rgba(34, 197, 94, 0.2);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid var(--border-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    padding: var(--space-5) var(--space-6);
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-light);
}

.comparison-old,
.comparison-new {
    padding: var(--space-5) var(--space-6);
    text-align: center;
    color: var(--text-secondary);
}

.comparison-old {
    background: rgba(239, 68, 68, 0.05);
}

.comparison-new {
    background: rgba(34, 197, 94, 0.05);
    color: var(--text-primary);
    font-weight: 500;
}

/* ============= FAQ SECTION ============= */
.faq-section {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.faq-item {
    background: var(--bg-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: var(--space-3);
}

.faq-answer {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ============= FINAL CTA SECTION ============= */
.final-cta-section-new {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    color: var(--text-white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-10);
}

.imagine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.imagine-item {
    text-align: center;
}

.imagine-item i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-3);
    display: block;
}

.imagine-item p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 1rem;
}

.final-statement {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: var(--space-8);
}

.final-cta-content .btn-primary {
    background: var(--bg-white);
    color: var(--primary);
}

.final-cta-content .btn-primary:hover {
    background: var(--bg-light);
}

.final-guarantee {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-6);
    margin-bottom: 0;
}

/* ============= STICKY CTA ============= */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: var(--space-4);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: bottom var(--transition-slow);
    text-align: center;
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-primary);
    transition: all var(--transition-base);
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(118, 70, 255, 0.4);
    color: var(--text-white);
}

/* ============= FOOTER ============= */
.footer {
    background: var(--secondary);
    color: var(--text-white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-10);
}

.footer-brand h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2);
}

.footer-tagline {
    font-style: italic;
    color: var(--primary-light);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: var(--space-4);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: var(--space-2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: var(--space-2);
}

.footer-bottom a {
    color: var(--primary-light);
}

.disclaimer {
    font-size: 0.8125rem;
}

/* Social Links Footer */
.social-links-footer {
    display: flex;
    gap: var(--space-4);
}

.social-icon-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(118, 70, 255, 0.2);
    color: var(--primary-light);
    font-size: 1.25rem;
    transition: all var(--transition-base);
    border: 1px solid rgba(118, 70, 255, 0.3);
}

.social-icon-footer:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(118, 70, 255, 0.4);
    border-color: var(--primary);
}

/* ============================================
   QUIZ STYLES
   ============================================ */

.quiz-body {
    background: var(--bg-light);
    min-height: 100vh;
}

.quiz-header {
    background: var(--bg-white);
    padding: var(--space-4) 0;
    box-shadow: var(--shadow-sm);
}

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

.quiz-header .logo h1 {
    font-size: 1.5rem;
}

.progress-info {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.progress-container {
    width: 100%;
    height: 4px;
    background: var(--border-light);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 0 2px 2px 0;
}

.quiz-container {
    max-width: 700px;
    margin: var(--space-16) auto;
    padding: 0 var(--space-6);
}

.quiz-content {
    background: var(--bg-white);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.question-slide {
    display: none;
    animation: slideIn 0.4s ease;
}

.question-slide.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.question-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.question-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.option-button {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    padding: var(--space-5) var(--space-6);
    border-radius: var(--radius-lg);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.option-button:hover {
    border-color: var(--primary);
    background: var(--bg-subtle);
}

.option-button.selected {
    border-color: var(--primary);
    background: rgba(118, 70, 255, 0.1);
}

/* Email Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 45, 95, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-white);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.4s ease;
    box-shadow: var(--shadow-lg);
}

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

.modal-content h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.modal-content p {
    color: var(--text-secondary);
}

#emailForm {
    margin-top: var(--space-8);
}

#emailInput {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: var(--space-4);
    transition: border-color var(--transition-fast);
    color: var(--text-primary);
}

#emailInput:focus {
    outline: none;
    border-color: var(--primary);
}

#emailInput::placeholder {
    color: var(--text-muted);
}

#emailForm .btn-primary {
    width: 100%;
}

.privacy-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-4);
}

/* ============================================
   RESULT PAGES
   ============================================ */

.result-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-subtle) 100%);
    padding: var(--space-16) 0;
    text-align: center;
}

.result-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text-white);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-6);
}

.result-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.result-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.diagnosis-section {
    padding: var(--space-20) 0;
    background: var(--bg-white);
}

.diagnosis-box {
    max-width: 1000px;
    margin: 0 auto;
}

.diagnosis-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
    text-align: center;
}

.diagnosis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.diagnosis-item {
    background: var(--bg-light);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--primary);
}

.diagnosis-item h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    font-size: 1.125rem;
}

.diagnosis-item p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.vsl-section {
    background: var(--bg-light);
    padding: var(--space-16) 0;
}

.video-container {
    max-width: 800px;
    margin: var(--space-8) auto 0;
}

.video-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-3);
    text-align: center;
}

.cta-section {
    background: var(--bg-white);
    padding: var(--space-16) 0;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-subtle), var(--bg-light));
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.pdf-section {
    background: linear-gradient(135deg, rgba(118, 70, 255, 0.05), rgba(130, 157, 253, 0.05));
    padding: var(--space-12) 0;
}

.pdf-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pdf-box h3 {
    margin-bottom: var(--space-3);
}

.pdf-box p {
    margin-bottom: var(--space-6);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .logo-img {
        height: 36px;
    }
    
    .logo-img-small {
        height: 32px;
    }
    
    .hero-bg-image {
        width: 50%;
        opacity: 0.8;
    }
    
    .hero-bg-overlay {
        background: linear-gradient(90deg, 
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0.7) 100%);
    }
}

@media (max-width: 768px) {
    :root {
        --space-16: 3rem;
        --space-20: 4rem;
        --space-24: 5rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-4);
    }
    
    .hero-new {
        min-height: auto;
        padding: var(--space-12) 0;
    }
    
    .hero-bg-image {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        opacity: 0.3;
    }
    
    .hero-bg-overlay {
        background: linear-gradient(180deg, 
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 60%,
            rgba(255, 255, 255, 0.8) 100%);
    }
    
    .hero-content-new {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .villain-box {
        grid-template-columns: 1fr;
    }
    
    .zones-explanation {
        flex-direction: column;
    }
    
    .zone-arrow-large {
        transform: rotate(90deg);
    }
    
    .zone-step {
        max-width: 100%;
        width: 100%;
    }
    
    .science-grid {
        grid-template-columns: 1fr;
    }
    
    .science-visual {
        order: -1;
    }
    
    .testimonial-card-new.featured {
        grid-column: span 1;
    }
    
    .program-timeline::before {
        left: 20px;
    }
    
    .timeline-week {
        width: 80px;
        font-size: 0.75rem;
        padding: var(--space-2) var(--space-3);
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-col,
    .comparison-feature,
    .comparison-old,
    .comparison-new {
        padding: var(--space-3) var(--space-2);
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-img-small {
        height: 28px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .btn-large {
        padding: var(--space-4) var(--space-6);
        font-size: 1rem;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .imagine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quiz-container {
        margin: var(--space-8) auto;
    }
    
    .quiz-content {
        padding: var(--space-6);
    }
    
    .sticky-cta-btn {
        padding: var(--space-3) var(--space-6);
        font-size: 0.9375rem;
    }
}
