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

:root {
    --primary: #1a1a1a;
    --white: #ffffff;
    --cream: #fef4e8;
    --gray: #6b6b6b;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --accent: #ff5e5b;
    --accent-hover: #ff4744;
    --success: #00d4aa;
    --warning: #ffb800;
    --info: #5e72e4;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --teal: #14b8a6;
    --yellow: #ffd23f;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--medium-gray);
    z-index: 1000;
    padding: 16px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.logo:hover {
    color: var(--accent);
}

.logo svg {
    width: 40px;
    height: 30px;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 8px;
}

.nav-tab {
    padding: 8px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.nav-tab:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.nav-tab.active {
    background: var(--primary);
    color: var(--white);
}

/* Content Wrapper */
.content-wrapper {
    margin-top: 70px;
}

/* Section Styles */
.section {
    display: none;
    padding: 0;
}

.section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

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

/* Hero Section */
.hero-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(64px, 12vw, 140px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.4;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 32px;
    justify-content: center;
}

.email-input {
    flex: 1;
    padding: 18px 24px;
    font-size: 18px;
    border: 3px solid var(--primary);
    border-radius: 100px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent);
    transform: scale(1.02);
}

.submit-btn {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    background: var(--primary);
    color: var(--white);
    border: 3px solid var(--primary);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.submit-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: rotate(-2deg) scale(1.05);
}

.launch-info {
    font-size: 16px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.waitlist-count {
    font-weight: 700;
    color: var(--primary);
    background: var(--yellow);
    padding: 4px 12px;
    border-radius: 100px;
}

/* Gradient Blobs */
.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: -1;
}

.blob-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--yellow), var(--warning));
    animation: float 8s ease-in-out infinite;
}

.blob-2 {
    top: 20%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    animation: float 10s ease-in-out infinite reverse;
}

.blob-3 {
    bottom: 20%;
    left: 15%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--success), var(--teal));
    animation: float 7s ease-in-out infinite;
}

.blob-4 {
    bottom: 10%;
    right: 5%;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--info), var(--accent));
    animation: float 9s ease-in-out infinite reverse;
}

/* Snowflake Animation */
.falling-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.falling-item {
    position: absolute;
    top: -20px;
    left: var(--x-pos);
    font-size: 16px;
    opacity: 0;
    filter: blur(0.5px);
    animation: snowflake var(--duration) var(--delay) linear infinite;
    animation-fill-mode: both;
}

.falling-item:nth-child(odd) {
    font-size: 14px;
}

.falling-item:nth-child(3n) {
    font-size: 18px;
    filter: blur(0px);
}

.falling-item:nth-child(3n+1) {
    animation-duration: calc(var(--duration) * 1.2);
}

@keyframes snowflake {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.8;
        transform: translateY(0) translateX(0) rotate(90deg) scale(1);
    }
    20% {
        transform: translateY(20vh) translateX(-20px) rotate(180deg) scale(1);
    }
    40% {
        transform: translateY(40vh) translateX(20px) rotate(270deg) scale(0.9);
    }
    60% {
        transform: translateY(60vh) translateX(-15px) rotate(360deg) scale(1);
    }
    80% {
        transform: translateY(80vh) translateX(10px) rotate(450deg) scale(0.95);
    }
    90% {
        opacity: 0.8;
        transform: translateY(90vh) translateX(-10px) rotate(540deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(630deg) scale(0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Word Banner Section */
.word-banner {
    padding: 40px 20px;
    text-align: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.word-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.banner-word {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .word-row {
        gap: 15px;
    }

    .banner-word {
        font-size: 24px;
        flex: 0 0 45%;
    }
}

.banner-word:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Colorful Shapes */
.shape {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.banner-word:hover .shape {
    transform: rotate(180deg) scale(1.2);
}

/* Shape Types */
.shape.circle {
    border-radius: 50%;
}

.shape.square {
    border-radius: 8px;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 22px solid;
}

.shape.star {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 10px solid;
}

.shape.star:before {
    content: '';
    position: absolute;
    left: -13px;
    top: -7px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 10px solid;
    transform: rotate(35deg);
}

.shape.star:after {
    content: '';
    position: absolute;
    left: -13px;
    top: 2px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 10px solid;
    transform: rotate(-35deg);
}

.shape.diamond {
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    margin: 0 12px;
}

.shape.cross {
    position: relative;
    width: 25px;
    height: 25px;
}

.shape.cross:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 6px;
    transform: translate(-50%, -50%);
    background: inherit;
}

.shape.cross:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 25px;
    transform: translate(-50%, -50%);
    background: inherit;
}

.shape.hexagon {
    width: 25px;
    height: 14px;
    position: relative;
    margin: 12px 10px;
}

.shape.hexagon:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 12.5px solid transparent;
    border-right: 12.5px solid transparent;
    border-bottom: 7px solid;
}

.shape.hexagon:after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 12.5px solid transparent;
    border-right: 12.5px solid transparent;
    border-top: 7px solid;
}

.shape.wave {
    width: 30px;
    height: 20px;
    border-radius: 50%;
    position: relative;
}

.shape.wave:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 20px;
    border-radius: 50%;
    left: -15px;
    background: inherit;
}

/* Shape Colors */
.shape.pink { background-color: var(--pink); }
.shape.yellow { background-color: var(--yellow); }
.shape.teal { background-color: var(--teal); }
.shape.purple { background-color: var(--purple); }
.shape.orange { background-color: var(--warning); }
.shape.green { background-color: var(--success); }
.shape.blue { background-color: var(--info); }

.shape.triangle.teal { border-bottom-color: var(--teal); }
.shape.star.yellow { border-bottom-color: var(--yellow); }
.shape.star.yellow:before { border-bottom-color: var(--yellow); }
.shape.star.yellow:after { border-bottom-color: var(--yellow); }
.shape.hexagon.blue { background-color: var(--info); }
.shape.hexagon.blue:before { border-bottom-color: var(--info); }
.shape.hexagon.blue:after { border-top-color: var(--info); }
.shape.cross.green { background-color: var(--success); }

.launch-date {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Styles */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand {
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin: 0;
}

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

.footer-column h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.badge-hiring {
    display: inline-block;
    background: var(--success);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-badges .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
    font-weight: 500;
}

.separator {
    color: var(--medium-gray);
}

#waitlist-count {
    font-weight: 700;
    color: var(--primary);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--light-gray);
    border-radius: 24px;
    margin: 40px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

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

.benefit-card {
    background: var(--cream);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

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

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: var(--gray);
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--light-gray);
    border-radius: 24px;
    margin: 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: var(--cream);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.3);
}

/* Playground Section */
.section-header {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-description {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 50px;
}

.playground-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.playground-card {
    background: var(--cream);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.playground-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.playground-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.playground-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.try-btn {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.try-btn:hover {
    background: var(--accent);
}

.playground-workspace {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playground-workspace.hidden {
    display: none;
}

/* Exercise Section */
.exercise-list {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.exercise-card {
    background: var(--cream);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.exercise-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exercise-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.exercise-type {
    padding: 4px 12px;
    background: var(--accent);
    color: var(--white);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.exercise-duration {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

.exercise-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.exercise-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.start-exercise-btn {
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.start-exercise-btn:hover {
    background: var(--accent);
}

/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.tool-card {
    background: var(--cream);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.tool-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tool-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tool-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.coming-soon {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: var(--warning);
    color: var(--white);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Community Section */
.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature {
    text-align: center;
}

.feature h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature p {
    color: var(--gray);
}

.community-cta {
    text-align: center;
    padding: 60px;
    background: var(--light-gray);
    border-radius: 24px;
}

.community-cta p {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 500;
}

.join-community-btn {
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.join-community-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Success Message */
.success-message {
    font-size: 18px;
    color: var(--success);
    font-weight: 500;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    border-radius: var(--border-radius);
    max-width: 480px;
    margin: 0 auto;
}

/* Loading States */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: '...';
    animation: dots 1s infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: flex;
        gap: 4px;
        overflow-x: auto;
        padding: 4px;
    }

    .nav-tab {
        font-size: 12px;
        padding: 6px 12px;
        white-space: nowrap;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .email-input {
        width: 100%;
    }

    .submit-btn {
        width: 100%;
    }

    .benefits-grid,
    .steps-container,
    .playground-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .launch-info {
        flex-direction: column;
        gap: 4px;
    }

    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 20px 0;
        height: auto;
        min-height: 80vh;
    }

    .hero-content {
        padding: 40px 20px 20px;
    }

    .content-wrapper {
        margin-top: 60px;
    }

    .benefits-section,
    .social-proof,
    .how-it-works,
    .final-cta {
        padding: 40px 20px;
    }
}