﻿@import './variables.css';

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--soft-ivory);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}
    .logo-icon > img {
        height: 2rem;
    }
.logo-text {
    background: var(--vb-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--vb-primary-gradient);
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: var(--primary);
    }

        .nav-link:hover::after {
            width: 100%;
        }

.btn-dev {
    padding: 0.5rem 1.2rem;
    background: var(--vb-primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 158, 153, 0.2);
}

    .btn-dev:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(15, 158, 153, 0.3);
    }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    padding: 150px 0 120px;
    background: linear-gradient(135deg, #EFE9E0 0%, #f5f1ea 100%);
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(77, 184, 180, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(15, 158, 153, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delayed {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--vb-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-color-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--vb-primary-gradient);
    color: white;
    box-shadow: 0 8px 30px rgba(15, 158, 153, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(15, 158, 153, 0.4);
    }

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-secondary:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(15, 158, 153, 0.2);
    }

.btn-lg {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--vb-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
    transition: transform 0.1s ease-out;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 80px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 100px;
    left: 100px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(77, 184, 180, 0.1), rgba(15, 158, 153, 0.1));
    border-radius: 0.75rem;
}

.card-content {
    flex: 1;
}

.card-title {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.card-votes {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.card-progress {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

    .card-progress::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        background: var(--vb-primary-gradient);
        border-radius: 1rem;
        animation: progressSlide 2s ease-in-out infinite;
    }

@keyframes progressSlide {
    0%, 100% {
        width: 70%;
    }

    50% {
        width: 85%;
    }
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--success);
    color: white;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
}

    .hero-wave svg {
        display: block;
        width: 100%;
        height: 120px;
    }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-color-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

    .feature-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-card:hover {
        border-color: var(--primary);
        box-shadow: 0 20px 60px rgba(15, 158, 153, 0.15);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-color-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-screenshot {
    margin-top: 1.5rem;
}
    .feature-screenshot img, .step-visual img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
.screenshot-placeholder {
    background: linear-gradient(135deg, rgba(77, 184, 180, 0.05), rgba(15, 158, 153, 0.05));
    border: 2px dashed var(--gray-300);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover .screenshot-placeholder {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(77, 184, 180, 0.1), rgba(15, 158, 153, 0.1));
}

.screenshot-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.screenshot-placeholder p {
    color: var(--text-color-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(77, 184, 180, 0.1), rgba(15, 158, 153, 0.1));
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(15, 158, 153, 0.2);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

    .step.visible {
        opacity: 1;
        transform: translateX(0);
    }

.step-reverse {
    grid-template-columns: 1fr 1fr 80px;
    transform: translateX(30px);
}

    .step-reverse.visible {
        transform: translateX(0);
    }

.step-number {
    width: 80px;
    height: 80px;
    background: var(--vb-primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(15, 158, 153, 0.3);
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-color-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: white;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-200);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

    .visual-placeholder span {
        font-size: 5rem;
    }

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(77, 184, 180, 0.03), rgba(15, 158, 153, 0.03));
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
}

    .benefit-card.visible {
        opacity: 1;
        transform: scale(1);
    }

.benefit-card-highlight {
    background: var(--vb-primary-gradient);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(15, 158, 153, 0.25);
}

    .benefit-card-highlight h3,
    .benefit-card-highlight li {
        color: white;
    }

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.benefit-card-highlight:hover {
    transform: translateY(-10px) scale(1.05);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.benefit-card-highlight h3 {
    color: white;
}

/* Education benefit card - special styling */
.benefit-card-education {
    margin-top: 3rem;
    grid-column: 1 / -1;
    background: rgba(248, 249, 250, 0.5);
    border: 1px solid var(--gray-300);
    padding: 2rem;
    box-shadow: none;
}

    .benefit-card-education:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

.benefit-education-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

    .benefit-education-content h3 {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        color: var(--text-color-secondary);
    }

.benefit-card-education .benefit-icon {
    margin-bottom: 0;
    font-size: 2.5rem;
    opacity: 0.7;
}

.benefit-education-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
    margin: 0;
}

.benefit-card-education li {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    color: var(--text-color-muted);
    display: flex;
    align-items: flex-start;
    position: relative;
    text-align: left;
}

    .benefit-card-education li::before {
        content: '✔️';
        position: absolute;
        left: 0;
        top: 0.6rem;
        font-size: 1rem;
        opacity: 0.6;
        color: var(--primary);
        flex-shrink: 0;
    }

.benefit-education-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

    .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.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    }

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.signup-form-inner {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.75rem;
    border-radius: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    align-items: center;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 4rem;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    min-width: 0;
}

    .signup-form input[type="email"]::placeholder {
        color: var(--gray-400);
    }

.signup-form button {
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

    .signup-form button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--vb-primary-gradient);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .signup-form button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        color: white;
    }

    .signup-form button:hover::before {
        opacity: 1;
    }

.success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    color: var(--success);
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.5s ease-out;
    max-width: 650px;
    margin: 0 auto;
}

.error-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    color: var(--error);
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.5s ease-out;
    max-width: 650px;
    margin: 0 auto;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 30px;
    height: 30px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.badge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-text {
    white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

.footer .container {
    max-width: 1400px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

    .footer-brand .logo {
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-brand .logo-icon {
        font-size: 2rem;
    }

        .footer-brand .logo-icon img {
            width: 48px;
            height: 48px;
            display: block;
        }

    .footer-brand .logo-text {
        color: white;
        -webkit-text-fill-color: white;
        font-size: 1.5rem;
        font-weight: 700;
    }

.footer-tagline {
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links {
    display: contents;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

    .footer-column h4 {
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: 0.02em;
    }

    .footer-column a {
        display: inline-block;
        color: var(--gray-400);
        position: relative;
        transition: color 0.3s ease;
        text-decoration: none;
    }

        .footer-column a:hover {
            color: white;
        }

        .footer-column a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -3px;
            left: 0;
            background: var(--vb-primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .footer-column a:hover::after {
            transform: scaleX(1);
        }

.bottom-text {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step,
    .step-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

        .footer-brand .logo {
            justify-content: center;
        }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column: 1 / -1;
        gap: 3rem;
    }

    .benefit-education-list {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat {
        text-align: center;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-card {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .signup-form {
        gap: 1rem;
    }

    .signup-form-inner {
        padding: 0.5rem;
    }

        .signup-form input[type="email"] {
            padding: 1rem 1.5rem;
            font-size: 1rem;
        }

        .signup-form button {
            width: 100%;
            padding: 1.25rem 2rem;
        }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1;
        text-align: center;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-column {
        text-align: left;
    }

        .footer-column a:hover {
            transform: none;
        }

    .benefit-education-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

        .benefit-education-content h3 {
            text-align: center;
        }

    .benefit-card-education .benefit-icon {
        margin: 0 auto 1rem;
    }

    .benefit-education-list {
        grid-template-columns: 1fr;
    }

    .benefit-card-education li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .signup-form input[type="email"] {
        font-size: 1rem;
    }

    .signup-form button {
        font-size: 1rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card li {
    padding: 0.875rem 0;
    padding-left: 2.25rem;
    color: var(--text-color-secondary);
    font-size: 1.05rem;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1.6;
    transition: all 0.2s ease;
}

    .benefit-card li:not(:last-child) {
        margin-bottom: 0.5rem;
    }

    .benefit-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary);
        font-weight: 800;
        font-size: 1.2rem;
        width: 1.5rem;
        height: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(77, 184, 180, 0.1), rgba(15, 158, 153, 0.1));
        border-radius: 50%;
    }

    .benefit-card li:hover {
        padding-left: 2.5rem;
        color: var(--charcoal);
    }

.benefit-card-highlight li {
    color: rgba(255, 255, 255, 0.95);
}

    .benefit-card-highlight li::before {
        color: white;
        background: rgba(255, 255, 255, 0.2);
    }

    .benefit-card-highlight li:hover {
        color: white;
    }
/* ============================================
   ALTERNATIVES PAGE SPECIFIC STYLES
   ============================================ */
.hero-alternatives {
    background: var(--vb-primary-gradient);
    color: var(--white);
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-alternatives h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-alternatives p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.comparison-card h3 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-card .vs-badge {
    background: var(--coral-accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
}

.comparison-card p {
    color: var(--text-color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.comparison-card ul li {
    padding: 0.5rem 0;
    color: var(--text-color);
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.comparison-card ul li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.btn-compare {
    display: inline-block;
    background: var(--vb-primary-gradient);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-compare:hover {
    background: var(--vb-primary-gradient-hover);
    transform: translateX(5px);
}

.why-switch-section {
    background: var(--soft-ivory);
    padding: 4rem 0;
    margin: 4rem 0;
}

.feature-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--vb-primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.feature-highlight h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* Responsive adjustments for alternatives page */
@media (max-width: 768px) {
    .hero-alternatives h1 {
        font-size: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
}
