/* Local Font */
@font-face {
    font-family: 'Manrope';
    src: url('/public/manrope.woff2') format('woff2');
    font-weight: 200 800;
    font-display: swap;
}

:root {
    color-scheme: dark;

    /* Brand Palette */
    --color-dark-forest-base: #21212B;
    --color-dark-forest-80: #4B4B53;
    --color-dark-forest-60: #75757B;
    --color-dark-forest-40: #9E9EA2;
    --color-dark-forest-20: #C8C8CA;

    --color-dark-forest-90: #2C2C35;

    --color-white-base: #FFFFFF;

    --color-clay-rose-base: #E3C8BD;
    --color-clay-rose-80: #E6D0C8;
    --color-clay-rose-60: #EBDED9;
    --color-clay-rose-40: #EDE4E1;
    --color-clay-rose-20: #F0E9E7;

    /* Functional Colors */
    --color-brand: var(--color-clay-rose-base);
    --color-dark: var(--color-dark-forest-base);
    --color-dark-forest: var(--color-dark-forest-base);
    --color-clay-rose: var(--color-clay-rose-base);
    --color-offwhite: var(--color-white-base);
    --color-white: var(--color-white-base);

    /* Mapped Neutrals */
    --color-neutral-50: var(--color-white-base);
    --color-neutral-100: var(--color-clay-rose-20);
    --color-neutral-200: var(--color-clay-rose-40);
    --color-neutral-400: var(--color-dark-forest-40);
    --color-neutral-500: var(--color-dark-forest-60);
    --color-neutral-600: var(--color-dark-forest-80);
    --color-neutral-800: var(--color-dark-forest-base);

    --color-green-500: var(--color-clay-rose-base);

    /* Fonts */
    --font-sans: 'Manrope', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;

    /* Transitions */
    --transition-base: all 0.3s ease;

    /* Layout */
    --container-max-width: 80rem;
    --nav-height: 5rem;
    --hero-image-max-width: 400px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    color: var(--color-clay-rose-20);
    background-color: var(--color-dark-forest-base);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.text-balance {
    text-wrap: balance;
}

.mobile-menu.hidden,
.hidden {
    display: none;
}

.impact-title-muted {
    opacity: 0.8;
}

.text-brand {
    color: var(--color-brand);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

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

.animate-in {
    animation-fill-mode: both;
}

.fade-in-50 {
    animation: fadeIn 0.5s ease-out;
}

.duration-1000 {
    animation-duration: 1s;
}

/* Navigation */
.nav {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: rgba(33, 33, 43, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.logo {
    cursor: pointer;
    line-height: 1.7;
    color: var(--color-brand);
    background-color: var(--color-dark-forest);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
}

/* Page Toggle */
.page-toggle {
    display: none;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3px;
    gap: 2px;
}

@media (min-width: 768px) {
    .page-toggle {
        display: flex;
    }
}

.page-toggle-mobile {
    display: flex;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .page-toggle-mobile {
        display: none;
    }
}

.page-toggle-link {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-md);
    color: var(--color-dark-forest-40);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.page-toggle-link:hover {
    color: var(--color-clay-rose-20);
}

.page-toggle-link.active {
    background-color: var(--color-clay-rose-base);
    color: var(--color-dark-forest-base);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark-forest-20);
    transition: color 0.2s;
}

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

.btn {
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition-base);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-dark-forest-base);
    color: var(--color-clay-rose-base);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    display: inline-block;
    border: 1px solid var(--color-clay-rose-base);
}

.btn-primary:hover {
    background-color: var(--color-clay-rose-base);
    color: var(--color-dark-forest-base);
    transform: none;
}

/* Focus states for keyboard navigation */
.nav-link:focus,
.btn-primary:focus,
.btn-hero-primary:focus,
.btn-cta-outline:focus,
.mobile-nav-link:focus {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-clay-rose-base);
    padding: 0.5rem;
}

.mobile-menu-btn button,
#mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-clay-rose-base);
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    background-color: var(--color-dark-forest-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-content {
    padding: 0.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark-forest-20);
}

.btn-mobile {
    width: 100%;
    text-align: left;
    margin-top: 1rem;
    background-color: var(--color-dark-forest-base);
    color: var(--color-clay-rose-base);
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    display: block;
    border: 1px solid var(--color-clay-rose-base);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: visible;
    background-color: var(--color-dark-forest-base);
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 12rem;
        padding-bottom: 8rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    /* Increased max-width for grid */
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
        text-align: left;
    }
}

@media (min-width: 1280px) {
    .hero-content {
        grid-template-columns: 1fr 600px;
    }
}

.hero-text-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center on mobile */
}

@media (min-width: 1024px) {
    .hero-text-column {
        align-items: flex-start;
        /* Left align on desktop */
    }
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-green-500);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-dark-forest-20);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--color-white-base);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-align: center;
}

.hero-title-emphasis {
    color: var(--color-brand);
    background-color: revert;
    padding: revert;
    border-radius: var(--radius-lg);;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(33, 33, 43, 0.1);
    line-height: revert;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        text-align: left;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-dark-forest-20);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        text-align: left;
        margin-left: 0;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.btn-hero-primary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--color-dark-forest-base);
    color: var(--color-clay-rose-base);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-clay-rose-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .btn-hero-primary {
        width: auto;
    }
}

.btn-hero-primary:hover {
    background-color: var(--color-clay-rose-base);
    color: var(--color-dark-forest-base);
}

/* Hero Image Styles */
.hero-image-column {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image-column {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--hero-image-max-width);
}

@media (min-width: 1280px) {
    .hero-image-wrapper {
        max-width: 100%;
    }
}

.hero-image {
    width: 80%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(227, 200, 189, 0.1);
    transition: transform 0.5s ease;
}

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

/* Impact Section */
.impact {
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--color-dark-forest-90);
    color: var(--color-brand);
}

.impact-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.impact-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .impact-title {
        font-size: 3rem;
    }
}

.impact-text {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 28rem;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stats-grid .stat-card:nth-child(1) { transition-delay: 0s; }
.stats-grid .stat-card:nth-child(2) { transition-delay: 0.05s; }
.stats-grid .stat-card:nth-child(3) { transition-delay: 0.1s; }

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(227, 200, 189, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.08);
}

.stat-card.full-width {
    grid-column: span 2;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* How it Works */
.how-it-works {
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--color-dark-forest-base);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-white-base);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg,
        var(--color-clay-rose-base) 0%,
        transparent 100%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--color-dark-forest-20);
}

.steps-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .steps-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steps-line {
    display: none;
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.08);
    z-index: 0;
    transform: scaleX(0.75);
}

@media (min-width: 768px) {
    .steps-line {
        display: block;
    }
}

.step-card {
    background-color: var(--color-dark-forest-90);
    padding: 2rem;
    border-radius: var(--radius-3xl);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--color-clay-rose-base) 0%,
        var(--color-clay-rose-60) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-0.5rem);
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-number {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg,
        var(--color-clay-rose-20) 0%,
        var(--color-clay-rose-40) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-dark-forest-base);
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(227, 200, 189, 0.3) 60deg,
        transparent 120deg
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmer 3s linear infinite paused;
}

.step-card:hover .step-number {
    background-color: var(--color-brand);
}

.step-card:hover .step-number::before {
    opacity: 1;
    animation-play-state: running;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white-base);
    margin-bottom: 0.75rem;
    text-align: center;
}

.step-desc {
    text-align: center;
    color: var(--color-dark-forest-20);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Features */
.features {
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--color-dark-forest);
}

.features-header {
    max-width: 48rem;
    margin-bottom: 4rem;
}

.features-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg,
        var(--color-clay-rose-base) 0%,
        transparent 100%);
    border-radius: 2px;
}

.features-subtitle {
    font-size: 1.25rem;
    color: var(--color-neutral-400);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    padding: 2rem;
    border-radius: 2rem;
    background-color: var(--color-dark-forest-90);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: var(--color-neutral-600);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(33, 33, 43, 0.15);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-brand);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    animation: iconBounce 0.5s ease;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--color-dark-forest-40);
}

/* FAQ Section */
.faq-section {
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--color-dark-forest-base);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

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

.faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-white-base);
    margin-bottom: 1rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    position: relative;
    background-color: var(--color-dark-forest-90);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        var(--color-clay-rose-base) 0%,
        var(--color-clay-rose-60) 100%
    );
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.faq-item:hover::before,
.faq-item[open]::before {
    transform: scaleY(1);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-item[open] {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-white-base);
    list-style: none;
    transition: background-color 0.3s;
}

.faq-question:hover, .faq-item[open] .faq-question, .faq-question:focus {
    background-color: #353542;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: var(--color-dark-forest-40);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: var(--color-brand);
}

.faq-answer {
    padding: 1rem 1.5rem;
    color: var(--color-dark-forest-20);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.cta-header {
    margin-bottom: 1rem;
    max-width: 48rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-neutral-400);
    line-height: 1.6;
    max-width: 38rem;
    margin: 0 auto;
}

.cta-form-wrapper {
    width: 100%;
    max-width: 32rem;
    margin-bottom: 1rem;
}

.cta-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cta-input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-dark-forest-80);
    font-size: 0.875rem;
    outline: var(--color-brand);
    transition: var(--transition-base);
    background-color: var(--color-dark-forest-base);
    color: var(--color-white-base);
}

.cta-input::placeholder {
    color: var(--color-dark-forest-40);
}

.cta-input:focus {
    border-color: var(--color-brand);
    outline: none;
}

.cta-note {
    font-size: 0.75rem;
    color: var(--color-neutral-400);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

.btn-cta-outline {
    padding: 1rem 2.5rem;
    background-color: var(--color-dark-forest-base);
    color: var(--color-clay-rose-base);
    border: 1px solid var(--color-clay-rose-base);
    font-size: 1.125rem;
}

.btn-cta-outline:hover {
    background-color: var(--color-clay-rose-base);
    color: var(--color-dark-forest-base);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(227, 200, 189, 0.3);
}

/* Form Messages */
.form-message {
    display: none;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    text-align: center;
    width: 100%;
}

.form-message.visible {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.form-message.success {
    background-color: rgba(74, 222, 128, 0.1);
    color: #22c55e;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Footer */
.footer {
    background-color: var(--color-dark-forest-base);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 0 2rem;
}

.footer-content {
    padding-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--color-dark-forest-40);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-dark-forest-40);
}

/* ========================================
   Decorative Elements & Enhanced Styling
   ======================================== */

/* Hero Section Decorations */
.hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

.hero-decor img {
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(85%) sepia(13%) saturate(500%) hue-rotate(330deg) brightness(97%) contrast(90%);
}

.hero-decor-1 {
    top: 6rem;
    right: -2rem;
    width: 80px;
    transform: rotate(15deg);
    animation: float 8s ease-in-out infinite;
}

.hero-decor-2 {
    bottom: 4rem;
    left: 2rem;
    width: 60px;
    transform: rotate(-10deg);
    animation: float 10s ease-in-out infinite 1s;
}

.hero-decor-3 {
    top: 50%;
    right: 10%;
    width: 200px;
    transform: translateY(-50%);
    opacity: 0.03;
}

@media (min-width: 768px) {
    .hero-decor-1 {
        width: 120px;
        right: 5%;
    }

    .hero-decor-2 {
        width: 80px;
        left: 5%;
    }

    .hero-decor-3 {
        width: 350px;
    }
}

@media (min-width: 1024px) {
    .hero-decor-1 {
        width: 150px;
        top: 10rem;
    }

    .hero-decor-3 {
        width: 500px;
        right: 5%;
    }
}

/* Hero image with mask effect */
.hero-image-mask {
    position: relative;
    border-radius: 75px;
    overflow: hidden;
}

.hero-image-mask::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(227, 200, 189, 0.15) 0%,
        transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-mask .hero-image {
    border-radius: 75px;
    width: 100%;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
    }
    50% {
        transform: translateY(-15px) translateX(-10px) rotate(var(--rotate, 0deg));
    }
}

/* Impact Section Decorations */
.impact-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.impact-decor img {
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(85%) sepia(13%) saturate(500%) hue-rotate(330deg) brightness(97%) contrast(90%);
}

.impact-decor-1 {
    bottom: -100px;
    right: -200px;
    width: 600px;
    opacity: 0.04;
}

@media (min-width: 768px) {
    .impact-decor-1 {
        width: 800px;
        bottom: -150px;
        right: -250px;
    }
}

/* How It Works Section Decorations */
.how-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.how-decor img {
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(85%) sepia(13%) saturate(500%) hue-rotate(330deg) brightness(97%) contrast(90%);
}

.how-decor-1 {
    top: 50%;
    left: -150px;
    width: 300px;
    transform: translateY(-50%);
    opacity: 0.04;
}

@media (min-width: 768px) {
    .how-decor-1 {
        width: 400px;
        left: -200px;
    }
}

@media (min-width: 1024px) {
    .how-decor-1 {
        width: 500px;
        left: -250px;
    }
}

/* Features Section Decorations */
.features-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.features-decor img {
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(85%) sepia(13%) saturate(500%) hue-rotate(330deg) brightness(97%) contrast(90%);
}

.features-decor-1 {
    top: 10%;
    right: -300px;
    width: 600px;
    opacity: 0.03;
}

.features-decor-2 {
    bottom: 15%;
    left: -50px;
    width: 100px;
    opacity: 0.05;
    animation: float 12s ease-in-out infinite;
}

@media (min-width: 768px) {
    .features-decor-1 {
        width: 800px;
        right: -400px;
    }

    .features-decor-2 {
        width: 140px;
        left: -30px;
    }
}

@media (min-width: 1024px) {
    .features-decor-1 {
        width: 1000px;
        right: -450px;
        top: 5%;
    }

    .features-decor-2 {
        width: 180px;
        left: 2%;
    }
}

/* CTA Section Decorations */
.cta-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.cta-decor img {
    width: 100%;
    height: auto;
}

.cta-decor-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    opacity: 0.03;
}

@media (min-width: 768px) {
    .cta-decor-1 {
        width: 1400px;
    }
}

@media (min-width: 1024px) {
    .cta-decor-1 {
        width: 1800px;
    }
}

/* FAQ Section background pattern */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(227, 200, 189, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(227, 200, 189, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

/* Smooth scroll enhancement */
@media (prefers-reduced-motion: no-preference) {
    .hero-decor,
    .features-decor-2 {
        will-change: transform;
    }
}

/* Disable animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-decor,
    .features-decor-2 {
        animation: none;
    }

    .feature-card:nth-child(odd),
    .feature-card:nth-child(even) {
        transform: none;
    }

    .feature-card:hover {
        transform: none;
    }
}

/* ========================================
   Enhanced Whimsical Elements
   ======================================== */

/* Additional hero floating shapes */
.hero-decor-4 {
    top: 40%;
    left: -3rem;
    width: 50px;
}

.hero-decor-5 {
    bottom: 20%;
    right: 15%;
    width: 40px;
}

@media (min-width: 768px) {
    .hero-decor-4 {
        width: 70px;
        left: 3%;
    }
    .hero-decor-5 {
        width: 55px;
    }
}

/* Hero dots pattern */
.hero-dots {
    position: absolute;
    top: 20%;
    left: 8%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--color-clay-rose-base) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: 0;
}

@media (min-width: 768px) {
    .hero-dots {
        width: 180px;
        height: 180px;
    }
}

/* Wave dividers */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider-dark {
    color: var(--color-dark-forest-90);
}

.wave-divider-light {
    color: var(--color-dark-forest-base);
    background-color: var(--color-dark-forest-base);
}

@media (min-width: 768px) {
    .wave-divider svg {
        height: 80px;
    }
}

/* Additional impact decor */
.impact-decor-2 {
    top: 10%;
    left: -80px;
    width: 150px;
    opacity: 0.04;
    animation: float 12s ease-in-out infinite 3s;
}

@media (min-width: 768px) {
    .impact-decor-2 {
        width: 200px;
        left: -100px;
    }
}

/* How it works additional decor */
.how-decor-2 {
    bottom: 10%;
    right: -80px;
    width: 120px;
    opacity: 0.04;
    animation: bounce 9s ease-in-out infinite 2s;
}

@media (min-width: 768px) {
    .how-decor-2 {
        width: 160px;
        right: -100px;
    }
}

/* Section dots pattern */
.section-dots-pattern {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--color-clay-rose-base) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.1;
    z-index: 0;
}

@media (min-width: 768px) {
    .section-dots-pattern {
        width: 150px;
        height: 150px;
    }
}

/* Features additional decor */
.features-decor-3 {
    bottom: 5%;
    right: 8%;
    width: 60px;
    opacity: 0.04;
}

@media (min-width: 768px) {
    .features-decor-3 {
        width: 90px;
    }
}

/* FAQ decorative elements */
.faq-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.faq-decor img {
    width: 100%;
    height: auto;
}

.faq-decor-1 {
    top: 10%;
    left: -60px;
    width: 100px;
    opacity: 0.04;
    animation: float 11s ease-in-out infinite;
}

.faq-decor-2 {
    bottom: 15%;
    right: -40px;
    width: 80px;
    opacity: 0.04;
    animation: bounce 8s ease-in-out infinite 1.5s;
}

@media (min-width: 768px) {
    .faq-decor-1 {
        width: 140px;
        left: -70px;
    }
    .faq-decor-2 {
        width: 110px;
        right: -55px;
    }
}

/* CTA additional decorations */
.cta-decor-2 {
    top: 15%;
    left: 5%;
    width: 60px;
    opacity: 0.04;
    animation: float 9s ease-in-out infinite;
}

.cta-decor-3 {
    bottom: 20%;
    right: 8%;
    width: 50px;
    opacity: 0.04;
    animation: bounce 7s ease-in-out infinite 2s;
}

@media (min-width: 768px) {
    .cta-decor-2 {
        width: 90px;
    }
    .cta-decor-3 {
        width: 70px;
    }
}

/* Sparkle effects for CTA */
.cta-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-clay-rose-base);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: var(--color-clay-rose-base);
}

.sparkle::before {
    width: 2px;
    height: 16px;
    top: -4px;
    left: 3px;
    border-radius: 2px;
}

.sparkle::after {
    width: 16px;
    height: 2px;
    top: 3px;
    left: -4px;
    border-radius: 2px;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 20%;
    animation-delay: 0.75s;
}

.sparkle-3 {
    bottom: 35%;
    left: 25%;
    animation-delay: 1.5s;
}

.sparkle-4 {
    bottom: 25%;
    right: 15%;
    animation-delay: 2.25s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1) rotate(180deg);
    }
}

@media (min-width: 768px) {
    .sparkle {
        width: 10px;
        height: 10px;
    }
    .sparkle::before {
        width: 3px;
        height: 20px;
        top: -5px;
        left: 3.5px;
    }
    .sparkle::after {
        width: 20px;
        height: 3px;
        top: 3.5px;
        left: -5px;
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-6px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-3px);
    }
}

/* Playful underline on CTA title */
.cta-section .cta-title .text-brand {
    position: relative;
    display: inline-block;
}

.cta-section .cta-title .text-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-clay-rose-base);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cta-section:hover .cta-title .text-brand::after {
    transform: scaleX(1);
}

/* Enhanced reduced motion */
@media (prefers-reduced-motion: reduce) {
    .sparkle,
    .hero-decor-4,
    .hero-decor-5,
    .how-decor-2,
    .features-decor-3,
    .faq-decor-1,
    .faq-decor-2,
    .cta-decor-2,
    .cta-decor-3,
    .impact-decor-2 {
        animation: none;
    }

    .step-number::before {
        display: none;
    }

    .feature-card:hover .feature-icon {
        animation: none;
    }
}
.audience-section {
    padding: 4rem 0;
    background-color: var(--color-dark-forest-base);
    position: relative;
    overflow: hidden;
}

.audience-section .features-decor img {
    filter: none;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

.audience-card {
    background: #2D2D38;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audience-card:hover {
    border-color: var(--color-clay-rose-base, #E3C8BD);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    width: 64px;
    height: 64px;
    background: rgba(227, 200, 189, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.audience-icon svg {
    width: 32px;
    height: 32px;
    stroke: #E3C8BD;
}

.audience-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.audience-card-desc {
    color: #C8C8CA;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.audience-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #E3C8BD;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #E3C8BD;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.audience-card-link:hover {
    background: #E3C8BD;
    color: #21212B;
}

.audience-card-link svg {
    width: 20px;
    height: 20px;
}
