/* WattVergleich24 - Premium Calculator CSS */

/* ========================================
   CSS Variables & Reset
======================================== */

:root {
    --neon-yellow: #e8ff4f;
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    
    --font-primary: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    --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);
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   Header
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--black);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
}

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

.logo-watt {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-vergleich {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-slogan {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--black);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   Hero Section
======================================== */

.hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    font-weight: 600;
    color: var(--gray-700);
}

/* Selection Cards */
.selection-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.selection-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.selection-card[data-product="solar"]::before {
    background-image: url('../images/solar-roof-bg.jpg');
}

.selection-card[data-product="heatpump"]::before {
    background-image: url('../images/heatpump-bg.jpg');
}

.selection-card[data-product="both"]::before {
    background-image: url('../images/combo-bg.jpg');
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--neon-yellow);
    opacity: 0.2;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.selection-card:hover .card-overlay {
    opacity: 0.4;
}

.selection-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
    font-size: 1rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
}

.card-icon.pulse {
    animation: pulse 2s infinite;
}

/* ========================================
   Calculator Section
======================================== */

.calculator-section {
    padding: 60px 0;
    background: var(--white);
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 3rem;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 3rem;
}

.progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-yellow), #d4f000);
    border-radius: 999px;
    transition: width var(--transition-slow);
    width: 14.28%; /* 1/7 */
}

.progress-text {
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Calculator Steps */
.calc-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.calc-step.active {
    display: block;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.step-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.option-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--neon-yellow);
}

.option-card.selected {
    background: var(--neon-yellow);
    border-color: var(--neon-yellow);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.option-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Info Bubble */
.info-bubble {
    background: var(--gray-50);
    border-left: 4px solid var(--neon-yellow);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
}

.info-bubble p {
    margin: 0;
    color: var(--gray-700);
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--neon-yellow);
    color: var(--black);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #f0ff6f;
}

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

/* Funding Animation */
.funding-animation {
    text-align: center;
    padding: 3rem 0;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--neon-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.loading-spinner.large {
    width: 64px;
    height: 64px;
    border-width: 6px;
}

.loading-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    animation: pulse 2s infinite;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-base);
}

.form-group input:focus {
    outline: none;
    border-color: var(--neon-yellow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--black);
    text-decoration: underline;
}

/* Map Animation */
.map-animation {
    margin: 2rem 0;
}

.map-placeholder {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 3rem;
    text-align: center;
}

.map-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

/* Loading Result */
.loading-result {
    text-align: center;
    padding: 3rem 0;
}

.loading-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 1.5rem;
}

/* Thank You */
.thank-you {
    text-align: center;
    padding: 3rem 0;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--neon-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

.checkmark {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
}

.thank-you-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.thank-you-animation {
    margin-top: 2rem;
}

.lightning-icon {
    font-size: 4rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* ========================================
   Trust Section
======================================== */

.trust-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

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

.trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.trust-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.trust-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   Reviews Section
======================================== */

.reviews-section {
    padding: 60px 0;
    background: var(--white);
}

.rating-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stars {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-weight: 600;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.review-author {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* ========================================
   Partners Section
======================================== */

.partners-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.partners-title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-400);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.partner-logo:hover {
    opacity: 1;
}

/* ========================================
   CTA Section
======================================== */

.cta-section {
    padding: 80px 0;
    background: var(--neon-yellow);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--black);
}

.btn-cta {
    padding: 1.25rem 3rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Sticky CTA
======================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.btn-sticky {
    width: 100%;
    padding: 1rem;
    background: var(--neon-yellow);
    color: var(--black);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
}

/* ========================================
   Footer
======================================== */

.footer {
    padding: 3rem 0;
    background: #f7f7f7;
    color: var(--black);
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-900);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-base);
}

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

.footer-text {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 16px;
        padding: 0.5rem 0;
    }
}

/* ========================================
   Animations
======================================== */

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

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

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

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .selection-cards {
        grid-template-columns: 1fr;
    }
    
    .calculator-container {
        padding: 2rem 1.5rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav.nav-open {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .sticky-cta {
        display: block;
    }
    
    .trust-cards,
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 769px) {
    .sticky-cta {
        display: none;
    }
}




/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.how-it-works-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: -10px;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD60A 0%, #FFC107 100%);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.step-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: -10px;
    margin-bottom: 50px;
}

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

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #7B2CBF;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #7B2CBF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter-section {
    background: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    text-align: center;
}

.newsletter-section h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #FFD60A;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 214, 10, 0.4);
}

/* ===================================
   LIVE STATISTICS
   =================================== */
.live-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.95rem;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    margin-right: 5px;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* ===================================
   RESPONSIVE DESIGN - NEW SECTIONS
   =================================== */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        padding: 30px 20px;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .newsletter-section {
        padding: 30px 20px;
    }
    
    .newsletter-section h3 {
        font-size: 1.4rem;
    }
    
    .newsletter-section p {
        font-size: 0.95rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .live-stats {
        gap: 20px;
        font-size: 0.85rem;
    }
}


/* ========================================
   Verification Screens
======================================== */

.verification-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.verification-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.verification-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.verification-progress-container {
    width: 100%;
    margin-top: 2rem;
}

.verification-progress-bar {
    width: 100%;
    height: 12px;
    background: var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.verification-progress-fill {
    height: 100%;
    background: var(--neon-yellow);
    border-radius: 20px;
    width: 0%;
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(232, 255, 79, 0.5);
}

.verification-progress-fill.animate {
    width: 100%;
}

/* Success Screen Styles */
.verification-icon {
    width: 80px;
    height: 80px;
    background: var(--neon-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.verification-title-success {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.verification-subtitle-success {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#verification-continue-btn {
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .verification-card {
        padding: 2rem 1.5rem;
    }
    
    .verification-title {
        font-size: 1.5rem;
    }
    
    .verification-subtitle {
        font-size: 1rem;
    }
    
    .verification-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .verification-title-success {
        font-size: 1.75rem;
    }
    
    .verification-subtitle-success {
        font-size: 1rem;
    }
}

/* ========================================
   Disclaimer Boxes
======================================== */

.disclaimer-box {
    background: var(--gray-50);
    border-left: 4px solid var(--neon-yellow);
    padding: 20px 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.disclaimer-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.disclaimer-icon {
    font-size: 1.2rem;
}

.disclaimer-box p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 8px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* Privacy Notice under Form */
.privacy-notice {
    background: var(--gray-100);
    padding: 18px 22px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.privacy-notice-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.privacy-notice p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.privacy-notice a {
    color: var(--gray-900);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-notice a:hover {
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .disclaimer-box {
        padding: 16px 18px;
    }
    
    .disclaimer-box-title {
        font-size: 0.9rem;
    }
    
    .disclaimer-box p {
        font-size: 0.85rem;
    }
    
    .privacy-notice {
        padding: 15px 18px;
    }
    
    .privacy-notice-title {
        font-size: 0.9rem;
    }
    
    .privacy-notice p {
        font-size: 0.85rem;
    }
}
