/* Landing Page - Premium Design */

:root {
    --primary: #2563EB;
    --primary2: #1D4ED8;
    --card: #FFFFFF;
    --bg: #F8FAFC;
    --border: #E2E8F0;
    --text: #111827;
    --muted: #6B7280;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] {
    --card: #1E293B;
    --bg: #0F172A;
    --border: #334155;
    --text: #E2E8F0;
    --muted: #94A3B8;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* Base Landing Page */
.landing-page {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg);
    box-sizing: border-box;
}

/* Override container constraints for landing page */
.main-content--full-width {
    padding: 0;
}

.main-content--full-width .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Ensure landing page is full width */
.main-content--full-width .landing-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1920&h=1080&fit=crop&q=80'),
        linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: fixed, fixed;
    background-blend-mode: overlay;
    opacity: 0.5;
    z-index: 0;
    animation: heroBackgroundShift 20s ease-in-out infinite;
}

@keyframes heroBackgroundShift {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.75) 50%, rgba(96, 165, 250, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem 0;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-buttons--secondary {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-cta-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-tertiary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

.btn-cta-primary {
    background: white;
    color: var(--primary);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #F8FAFC;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Trust Row */
.trust-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

/* Hero Scroll Anchor */
.hero-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-scroll:hover {
    color: white;
    transform: translateY(4px);
}

.hero-scroll:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    border-radius: 8px;
}

.hero-scroll-text {
    display: block;
}

.hero-scroll-icon {
    display: block;
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--muted);
    margin: 0 0 3.5rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Brand Story Section */
.brand-story {
    padding: 4rem 2rem;
    background: var(--card);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brand-story-container {
    max-width: 900px;
    margin: 0 auto;
}

.brand-story-content {
    text-align: center;
}

.brand-story-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--text);
    letter-spacing: -0.02em;
}

.brand-story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted);
    margin: 0 0 1.25rem 0;
}

.brand-story-text strong {
    color: var(--primary);
    font-weight: 600;
}

.brand-story-quote {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
    margin: 2rem 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(29, 78, 216, 0.08) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background: var(--bg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.about-story,
.about-vision,
.about-mission {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.about-story:hover,
.about-vision:hover,
.about-mission:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.about-story p,
.about-vision p,
.about-mission p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
    margin: 0 0 1.25rem 0;
}

.about-story p:last-child,
.about-vision p:last-child,
.about-mission p:last-child {
    margin-bottom: 0;
}

.about-story p strong {
    color: var(--primary);
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--bg) 0%, #FFFFFF 100%);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 4rem;
    margin: 1.5rem 0 1rem 0;
    display: block;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text);
}

.step-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: var(--bg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Feature Card */
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card-content {
    padding: 2.5rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary2) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.feature-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin: -1.5rem auto 1rem auto;
    position: relative;
    z-index: 2;
    background: var(--card);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--text);
    letter-spacing: -0.01em;
    padding: 0 2.5rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        min-height: 85vh;
    }

    .hero-background-image {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        margin: 2rem 0;
    }

    .stat-item {
        flex: 1 1 calc(33.333% - 1rem);
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .cta-buttons--secondary {
        padding: 0 0.5rem;
    }

    .btn-cta {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .btn-cta-tertiary {
        width: 100%;
        max-width: 100%;
    }

    .trust-row {
        gap: 0.75rem;
        padding: 0 0.5rem;
        flex-wrap: wrap;
    }

    .trust-chip {
        font-size: 0.75rem;
        padding: 0.4375rem 0.875rem;
    }

    .how-it-works {
        padding: 3.5rem 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-icon {
        font-size: 3rem;
    }

    .step-card h3 {
        font-size: 1.25rem;
    }

    .step-card p {
        font-size: 0.9375rem;
    }

    .features {
        padding: 3.5rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 0;
    }

    .feature-image {
        height: 180px;
    }

    .feature-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        padding: 0 1.5rem;
    }

    .feature-card p {
        font-size: 0.9375rem;
        padding: 0 1.5rem 1.5rem 1.5rem;
        line-height: 1.6;
    }

    .benefits {
        padding: 3.5rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .benefit-item h3 {
        font-size: 1.25rem;
    }

    .benefit-item p {
        font-size: 0.9375rem;
    }

    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-container {
        padding: 0 0.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .cta-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .btn-cta-large {
        width: 100%;
        max-width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1.125rem;
    }

    .cta-note {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .stat-item {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    .cta-buttons {
        gap: 0.875rem;
        padding: 0;
    }

    .btn-cta {
        font-size: 0.9375rem;
        padding: 0.875rem 1.25rem;
    }

    .btn-cta-tertiary {
        font-size: 0.9375rem;
        padding: 0.875rem 1.25rem;
    }

    .trust-row {
        gap: 0.5rem;
        padding: 0;
    }

    .trust-chip {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }

    .how-it-works {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        padding: 0;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0;
    }

    .steps-grid {
        gap: 2rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        top: -15px;
    }

    .step-icon {
        font-size: 2.5rem;
        margin: 1rem 0 0.75rem 0;
    }

    .step-card h3 {
        font-size: 1.125rem;
    }

    .step-card p {
        font-size: 0.875rem;
    }

    .features {
        padding: 3rem 1rem;
    }

    .feature-image {
        height: 160px;
    }

    .feature-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        margin: -1rem auto 0.75rem auto;
    }

    .feature-card h3 {
        font-size: 1.125rem;
        padding: 0 1rem;
    }

    .feature-card p {
        font-size: 0.875rem;
        padding: 0 1rem 1rem 1rem;
    }

    .benefits {
        padding: 3rem 1rem;
    }

    .benefit-item {
        padding: 1.25rem;
    }

    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .benefit-item h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .benefit-item p {
        font-size: 0.875rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
        padding: 0;
    }

    .btn-cta-large {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .cta-note {
        font-size: 0.8125rem;
        padding: 0;
        margin-top: 1rem;
    }

    .brand-story {
        padding: 3rem 1rem;
    }

    .brand-story-title {
        font-size: 1.75rem;
    }

    .brand-story-text {
        font-size: 1rem;
    }

    .brand-story-quote {
        font-size: 1.125rem;
        padding: 1.25rem;
    }

    .about-section {
        padding: 3.5rem 1rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-story,
    .about-vision,
    .about-mission {
        padding: 1.75rem;
    }

    .about-subtitle {
        font-size: 1.25rem;
    }

    .about-story p,
    .about-vision p,
    .about-mission p {
        font-size: 1rem;
    }
}

/* Dark Mode */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
}

[data-theme="dark"] .hero::before {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.9) 0%, rgba(49, 46, 129, 0.85) 50%, rgba(67, 56, 202, 0.8) 100%);
}

[data-theme="dark"] .hero-background-image {
    opacity: 0.3;
}

[data-theme="dark"] .features {
    background: var(--bg);
}

[data-theme="dark"] .feature-card {
    background: var(--card);
    border-color: var(--border);
}

[data-theme="dark"] .feature-card:hover {
    border-color: var(--primary);
}

[data-theme="dark"] .section-title {
    color: var(--text);
}

[data-theme="dark"] .feature-card h3 {
    color: var(--text);
}

[data-theme="dark"] .feature-card p {
    color: var(--muted);
}

[data-theme="dark"] .how-it-works {
    background: linear-gradient(to bottom, var(--bg) 0%, #0F172A 100%);
}

[data-theme="dark"] .benefits {
    background: linear-gradient(to bottom, #0F172A 0%, var(--bg) 100%);
}

[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
}

[data-theme="dark"] .brand-story {
    background: var(--card);
    border-color: var(--border);
}

[data-theme="dark"] .brand-story-quote {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(37, 99, 235, 0.12) 100%);
    border-left-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .about-section {
    background: var(--bg);
}

[data-theme="dark"] .about-story,
[data-theme="dark"] .about-vision,
[data-theme="dark"] .about-mission {
    background: var(--card);
    border-color: var(--border);
}

[data-theme="dark"] .about-story:hover,
[data-theme="dark"] .about-vision:hover,
[data-theme="dark"] .about-mission:hover {
    border-color: var(--primary);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .hero-scroll-icon {
        animation: none !important;
    }

    .feature-card:hover {
        transform: none;
    }

    .btn-cta:hover {
        transform: none;
    }

    .hero-scroll:hover {
        transform: none;
    }
}

/* Benefits Section */
.benefits {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #FFFFFF 0%, var(--bg) 100%);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text);
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.btn-cta-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

