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

:root {
    /* Colors */
    --primary: #0f172a;
    --primary-light: #1e293b;
    --primary-dark: #020617;
    --secondary: #3b82f6;
    --secondary-light: #60a5fa;
    --secondary-dark: #2563eb;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    --success: #10b981;
    --success-light: #34d399;
    --success-dark: #059669;
    --danger: #ef4444;
    --warning: #f59e0b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --border-dark: #cbd5e1;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
    --gradient-offer: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #4f46e5 100%);
    
    /* 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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
    --shadow-glow-accent: 0 0 40px rgba(245, 158, 11, 0.3);
    --shadow-glow-success: 0 0 40px rgba(16, 185, 129, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 
        800px 800px,
        800px 800px,
        64px 64px,
        64px 64px;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 800px 800px, -800px -800px, 64px 64px, 64px 64px; }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.float-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.float-element:nth-child(1) {
    background: var(--secondary);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    background: var(--accent);
    top: 50%;
    right: -150px;
    animation-delay: -5s;
}

.float-element:nth-child(3) {
    background: var(--success);
    bottom: -150px;
    left: 30%;
    animation-delay: -10s;
}

.float-element:nth-child(4) {
    background: var(--secondary-light);
    top: 20%;
    left: 50%;
    animation-delay: -7s;
}

.float-element:nth-child(5) {
    background: var(--accent-light);
    bottom: 30%;
    right: 20%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(0, -100px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -50px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all var(--transition-base);
}

.hero-badge:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.hero-badge i {
    color: var(--success-light);
    font-size: 16px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-subtitle i {
    color: var(--accent-light);
}

.hero-text {
    font-size: clamp(16px, 2.5vw, 22px);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 48px;
    border-radius: 60px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(16px, 2vw, 20px);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-primary {
    background: var(--gradient-success);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-success);
}

.cta-primary:active {
    transform: translateY(-2px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover .button-glow {
    left: 100%;
}

.cta-button i {
    font-size: 1.2em;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--success-light);
    font-size: 20px;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-proof-avatars {
    display: flex;
    align-items: center;
}

.social-proof-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    transition: all var(--transition-base);
}

.social-proof-avatars img:first-child {
    margin-left: 0;
}

.social-proof-avatars img:hover {
    transform: scale(1.1) translateY(-4px);
    z-index: 10;
}

.social-proof-text {
    text-align: left;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.rating i {
    color: var(--accent-light);
    font-size: 16px;
}

.rating span {
    font-weight: 700;
    margin-left: 4px;
}

.social-proof-text p {
    font-size: 14px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    margin: 0 auto 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 24px;
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 13px;
    opacity: 0.7;
}

/* ========================================
   SECTION STYLES
======================================== */
section {
    padding: 100px 20px;
    position: relative;
}

.section-alt {
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.section-icon:hover {
    transform: translateY(-4px) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.gradient-icon {
    background: var(--gradient-accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-underline {
    width: 100px;
    height: 6px;
    background: var(--gradient-accent);
    border-radius: 3px;
    margin: 20px auto 32px;
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.truth-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.truth-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.truth-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.truth-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--gradient-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: var(--shadow-md);
}

.truth-item:nth-child(1) .truth-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.truth-item:nth-child(2) .truth-icon {
    background: var(--gradient-secondary);
}

.truth-item:nth-child(3) .truth-icon {
    background: var(--gradient-success);
}

.truth-text {
    flex: 1;
}

.truth-text p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-dark);
}

.truth-quote {
    background: var(--gradient-secondary);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.truth-quote i {
    font-size: 36px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

.truth-quote p {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    font-style: italic;
    color: white;
    line-height: 1.5;
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.how-it-works {
    background: var(--bg-white);
}

.process-steps {
    max-width: 800px;
    margin: 64px auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
    transition: all var(--transition-base);
    position: relative;
}

.process-step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.process-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    box-shadow: var(--shadow-md);
}

.process-content {
    flex: 1;
}

.process-icon {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.process-line {
    width: 4px;
    height: 40px;
    background: var(--gradient-secondary);
    margin: 0 auto;
    border-radius: 2px;
}

.result-banner {
    max-width: 700px;
    margin: 64px auto;
    background: var(--gradient-success);
    padding: 40px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-glow-success);
    color: white;
}

.result-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.result-banner h3 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    margin-bottom: 12px;
}

.result-banner p {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
}

/* Video Container */
.video-container {
    max-width: 450px;
    margin: 64px auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    position: relative;
    transition: all var(--transition-base);
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.video-wrapper {
    padding: 177.78% 0 0 0;
    position: relative;
    background: var(--primary);
}

.video-wrapper > div {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: white;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 10;
}

.video-container:hover .video-overlay {
    opacity: 0.8;
}

/* Real World Section */
.real-world-section {
    margin-top: 64px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 48px;
    border-radius: 32px;
    border: 2px solid var(--border);
}

.real-world-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.real-world-title i {
    color: var(--secondary);
}

.real-world-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.real-world-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all var(--transition-base);
    text-align: center;
}

.real-world-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.real-world-card.situation {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, white 100%);
}

.real-world-card.you {
    border-color: var(--warning);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, white 100%);
}

.real-world-card.agent {
    border-color: var(--secondary-light);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, white 100%);
}

.real-world-card.repeat {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, white 100%);
}

.real-world-card.result {
    grid-column: 1 / -1;
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, white 100%);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.real-world-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.real-world-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.for-who-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    border: 3px solid var(--border);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.for-who-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow);
}

.for-who-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.for-who-card:hover .for-who-icon {
    transform: rotate(360deg) scale(1.1);
}

.for-who-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.for-who-card:hover .card-corner {
    opacity: 1;
}

.testimonial-highlight {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-secondary);
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-glow);
}

.testimonial-content {
    text-align: center;
    color: white;
}

.testimonial-content i {
    font-size: 48px;
    opacity: 0.3;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-lg);
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-role {
    font-size: 16px;
    opacity: 0.9;
}

/* ========================================
   WHY IT WORKS SECTION
======================================== */
.why-works-section {
    background: var(--bg-light);
}

.why-works-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.why-works-image {
    position: relative;
}

.why-works-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-2xl);
}

.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gradient-success);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-xl);
}

.why-works-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-works-item {
    display: flex;
    gap: 24px;
}

.item-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gradient-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: var(--shadow-md);
}

.item-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.item-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.highlight-text {
    background: var(--gradient-secondary);
    color: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.highlight-text i {
    font-size: 32px;
}

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

.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mechanism-card {
    background: white;
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 3px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mechanism-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.card-primary {
    border-color: var(--secondary);
}

.card-primary:hover {
    border-color: var(--secondary-light);
    box-shadow: var(--shadow-glow);
}

.card-secondary {
    border-color: var(--accent);
}

.card-secondary:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-glow-accent);
}

.mechanism-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.card-secondary .mechanism-icon {
    background: var(--gradient-accent);
}

.mechanism-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.mechanism-card > p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.mechanism-card:hover .card-shine {
    left: 100%;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: white;
    box-shadow: var(--shadow-sm);
}

.timeline-item p {
    flex: 1;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 8px;
}

/* ========================================
   WHAT'S INSIDE SECTION
======================================== */
.whats-inside-section {
    background: var(--bg-white);
}

.main-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.benefit-item {
    background: var(--gradient-secondary);
    color: white;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.benefit-item i {
    font-size: 28px;
}

.impact-quote {
    max-width: 800px;
    margin: 64px auto;
    background: var(--gradient-accent);
    padding: 48px;
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--shadow-glow-accent);
}

.quote-icon {
    font-size: 64px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
}

.impact-quote p {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    font-style: italic;
    color: white;
    line-height: 1.5;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.bonus-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.bonus-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--secondary);
}

.bonus-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.bonus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.bonus-card:hover .bonus-image {
    transform: scale(1.1);
}

.bonus-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-success);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.bonus-content {
    padding: 28px;
}

.bonus-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bonus-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--secondary);
}

.feature-icon-large {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card-new {
    background: white;
    padding: 36px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
    transition: all var(--transition-base);
}

.testimonial-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--secondary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.testimonial-avatar-new {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 14px;
}

.testimonial-body {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 32px;
    color: var(--secondary);
    opacity: 0.2;
    margin-bottom: 12px;
}

.testimonial-body p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
}

.testimonial-verified i {
    font-size: 16px;
}

/* ========================================
   BENEFITS ALT SECTION
======================================== */
.benefits-alt-section {
    background: var(--bg-light);
}

.benefits-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.benefit-card-alt {
    background: white;
    padding: 32px;
    border-radius: 24px;
    border: 3px solid var(--border);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card-alt:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
    box-shadow: var(--shadow-xl);
}

.benefit-icon-alt {
    width: 72px;
    height: 72px;
    background: var(--gradient-secondary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.benefit-card-alt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.final-benefit {
    max-width: 700px;
    margin: 0 auto 64px;
    background: var(--gradient-accent);
    color: white;
    padding: 36px 48px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-glow-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.final-benefit i {
    font-size: 48px;
}

.final-benefit p {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    line-height: 1.6;
}

.security-badge {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 48px;
    border-radius: 32px;
    border: 2px solid var(--border);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.security-badge h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.security-item i {
    color: var(--success);
    font-size: 24px;
    margin-top: 2px;
}

.security-item p {
    flex: 1;
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ========================================
   OFFER SECTION
======================================== */
.offer-section {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.offer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.offer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-offer);
}

.offer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        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.1) 0%, transparent 50%);
    background-size: 600px 600px;
    animation: offerPattern 20s linear infinite;
}

@keyframes offerPattern {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 600px 600px, -600px -600px; }
}

.offer-section .container {
    position: relative;
    z-index: 2;
}

.offer-header {
    text-align: center;
    margin-bottom: 64px;
}

.offer-stars {
    display: inline-flex;
    gap: 12px;
}

.pulse-star {
    color: var(--accent-light);
    font-size: 32px;
    animation: pulseStar 1.5s ease-in-out infinite;
}

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

.offer-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    color: white;
    margin: 24px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.offer-value-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 32px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-2xl);
}

.offer-value-box h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 32px;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 16px;
}

.value-item:last-child {
    border-bottom: none;
}

.total-value {
    font-size: 20px;
    font-weight: 900;
    padding-top: 24px;
    border-top: 2px solid rgba(255,255,255,0.3);
    margin-top: 8px;
}

.item-name {
    flex: 1;
}

.item-price {
    font-weight: 700;
}

.countdown-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    margin-bottom: 48px;
    box-shadow: var(--shadow-2xl);
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.countdown-badge i {
    font-size: 16px;
    animation: fireFlicker 1s ease-in-out infinite;
}

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

.countdown-box h3 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: white;
    margin-bottom: 32px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.countdown-block {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 24px;
    min-width: 100px;
    text-align: center;
}

.countdown-number {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.countdown-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.countdown-separator {
    font-size: 48px;
    font-weight: 900;
    color: white;
    opacity: 0.5;
}

.countdown-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.countdown-warning i {
    color: var(--accent-light);
    font-size: 20px;
}

.pricing-box {
    background: white;
    border-radius: 40px;
    padding: 64px 48px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}

.pricing-badge {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-success);
    color: white;
    padding: 12px 32px;
    border-radius: 0 0 20px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    text-align: center;
    color: var(--text-dark);
    margin: 40px 0 48px;
}

.pricing-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.price-old-large {
    text-align: center;
}

.price-old-large .price-label {
    display: block;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.price-old-large .price-value {
    font-size: 32px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 700;
}

.price-arrow {
    font-size: 48px;
    color: var(--success);
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.price-current-large {
    text-align: center;
    background: var(--gradient-success);
    color: white;
    padding: 32px 48px;
    border-radius: 28px;
    box-shadow: var(--shadow-glow-success);
}

.price-current-large .price-label {
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.price-current-large .price-value {
    display: block;
    font-size: clamp(56px, 10vw, 88px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.price-current-large .price-installment {
    display: block;
    font-size: 20px;
    opacity: 0.95;
}

.pricing-features {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--success);
    font-size: 24px;
    margin-top: 2px;
}

.pricing-feature span {
    flex: 1;
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.6;
}

.pricing-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.pricing-highlight i {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 12px;
}

.pricing-highlight p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.pricing-includes {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 40px;
}

.pricing-includes h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-includes h4 i {
    color: var(--accent);
    font-size: 24px;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.includes-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.includes-item i {
    width: 56px;
    height: 56px;
    background: var(--gradient-secondary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-sm);
}

.includes-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 500;
}

.cta-mega {
    width: 100%;
    max-width: 100%;
    padding: 28px 56px;
    font-size: clamp(18px, 2.5vw, 24px);
}

.guarantee-section {
    background: white;
    border: 4px solid var(--success);
    border-radius: 40px;
    padding: 64px 48px;
    text-align: center;
    box-shadow: var(--shadow-glow-success);
}

.guarantee-badge-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-success);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: white;
    margin: 0 auto 32px;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.guarantee-section h3 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--success-dark);
    margin-bottom: 32px;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto 40px;
}

.guarantee-main {
    font-size: clamp(20px, 3vw, 26px);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
}

.guarantee-detail {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.guarantee-emphasis {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--success-dark);
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.guarantee-emphasis i {
    font-size: 28px;
    color: var(--danger);
}

.guarantee-seals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.seal i {
    width: 64px;
    height: 64px;
    background: var(--gradient-success);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: var(--shadow-md);
}

.seal span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-new {
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 20px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.faq-item-new:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.faq-question-new {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.faq-question-new i {
    color: var(--secondary);
    font-size: 24px;
    transition: all var(--transition-base);
}

.faq-item-new:hover .faq-question-new i {
    transform: rotate(90deg);
    color: var(--accent);
}

.faq-question-new h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-answer-new p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 44px;
}

/* ========================================
   FINAL CTA SECTION
======================================== */
.final-cta-section {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.final-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.final-cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.final-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    background-size: 500px 500px;
    animation: finalPattern 15s linear infinite;
}

@keyframes finalPattern {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 500px 500px, -500px -500px; }
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.final-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.final-cta-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    margin: 0 auto 40px;
    box-shadow: var(--shadow-glow-accent);
    animation: float 3s ease-in-out infinite;
}

.final-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.final-question {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.4;
    opacity: 0.95;
}

.final-answer {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 56px;
    line-height: 1.3;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-final {
    margin-bottom: 48px;
}

.final-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.final-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.final-feature i {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.final-feature span {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.95;
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: var(--primary);
    color: white;
    padding: 80px 20px 40px;
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--gradient-secondary);
    border-color: transparent;
    transform: translateY(-4px);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   RIPPLE EFFECT
======================================== */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(20);
        opacity: 0;
    }
}

/* ========================================
   KEYBOARD NAVIGATION
======================================== */
.keyboard-nav *:focus {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .why-works-content {
        grid-template-columns: 1fr;
    }
    
    .why-works-image {
        order: -1;
    }
    
    .why-works-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 20px;
    }
    
    .hero {
        padding: 80px 20px 60px;
        min-height: auto;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .social-proof {
        flex-direction: column;
        text-align: center;
    }
    
    .social-proof-text {
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-number {
        margin: 0 auto;
    }
    
    .real-world-grid {
        grid-template-columns: 1fr;
    }
    
    .real-world-card.result {
        grid-column: 1;
    }
    
    .bonus-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-value-box,
    .countdown-box,
    .pricing-box,
    .guarantee-section {
        padding: 32px 24px;
    }
    
    .countdown-timer {
        gap: 12px;
    }
    
    .countdown-block {
        min-width: 80px;
        padding: 16px 12px;
    }
    
    .countdown-separator {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 12px;
        padding: 12px 20px;
    }
    
    .cta-button {
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .truth-card {
        padding: 32px 24px;
    }
    
    .truth-item {
        flex-direction: column;
        text-align: center;
    }
    
    .truth-icon {
        margin: 0 auto;
    }
    
    .real-world-section {
        padding: 32px 24px;
    }
    
    .guarantee-seals {
        flex-direction: column;
        gap: 24px;
    }
    
    .final-features {
        gap: 32px;
    }
}