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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0C0D08;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar Styles - Floating Pills Design */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: padding 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Floating Capsule/Pill Design - Initial State (Completely Transparent) */
.nav-capsule {
    background: transparent;
    border-radius: 12px;
    padding: 12px 20px;
    height: 56px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Frosted Glass Effect - Triggered on Scroll */
.navbar.scrolled .nav-capsule {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Left Capsule - Logo */
.nav-capsule-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 28px;
    width: auto;
}

/* Right Capsule - Sign in + Get Started */
.nav-capsule-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sign-in {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-block;
    height: 42px;
    line-height: 1.2;
    box-sizing: border-box;
}

.sign-in:hover {
    background-color: #0C0D08;
    border: 1px solid #2A2B26;
    opacity: 0.7;
}

.btn-get-started {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #0C0D08;
    border: 1px solid transparent;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 42px;
    line-height: 1.2;
    box-sizing: border-box;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
}

.btn-get-started:hover {
    background-color: #0C0D08;
    color: #ffffff;
    border: 1px solid #2A2B26;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/bg images/hero_image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Better mobile background positioning */
@media (max-width: 640px) {
    .hero {
        background-position: 65% center;
        min-height: 90vh;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 13, 8, 0.4) 0%,
        rgba(12, 13, 8, 0.6) 50%,
        rgba(12, 13, 8, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    text-align: center;
    padding: 0 2rem;
    margin-top: 2rem;
}

.hero-subtitle {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 999px;
    padding: 8px 12px;
}

.hero-title {
    font-family: 'Forum', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 16px;
    font-weight: 300;
    color: #BEBEBD;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-explore {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #0C0D08;
    border: 1px solid transparent;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 42px;
    line-height: 1.2;
    box-sizing: border-box;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-explore:hover {
    background-color: #0C0D08;
    color: #ffffff;
    border: 1px solid #2A2B26;
}

/* How Voxecore Works Section */
.how-it-works {
    background-color: #0C0D08;
    padding: 120px 0;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Eyebrow + Header */
.how-it-works-header {
    margin-bottom: 80px;
}

.how-it-works-eyebrow {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eyebrow-icon {
    width: auto;
    height: 12px;
    display: inline-block;
}

.how-it-works-title {
    font-family: 'Forum', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Content Wrapper */
.content-wrapper {
    background-color: #090A06;
    border: 1px solid #2D2E2A;
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 60px;
    min-height: 656px;
    display: flex;
    flex-direction: column;
}

/* Two Column Layout */
.how-it-works-content {
    display: grid;
    grid-template-columns: 0.30fr 0.70fr;
    gap: 32px;
    align-items: stretch;
    flex: 1;
}

/* Left Column Wrapper */
.how-it-works-content > div:first-child {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Accordion Styles */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0);
}

.accordion-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

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

.accordion-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.3s ease;
    margin: 0;
}

.accordion-item:hover .accordion-title {
    opacity: 0.7;
}

.accordion-item.active .accordion-title {
    font-weight: 500;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    margin-top: 16px;
}

.accordion-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: #BEBEBD;
    margin: 0;
}

/* Image Panel */
.image-panel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.panel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.panel-image.active {
    opacity: 1;
}

/* Why We Built This Section */
.why-we-built {
    position: relative;
    background-color: #0C0D08;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    background-image: url('images/bg images/bg_2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.why-we-built::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 13, 8, 0.5) 0%,
        rgba(12, 13, 8, 0.4) 50%,
        rgba(12, 13, 8, 0.6) 100%
    );
}

.why-we-built-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
}

/* Eyebrow + Header */
.why-we-built-header {
    margin-bottom: 40px;
}

.why-we-built-eyebrow {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-we-built-title {
    font-family: 'Forum', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
    max-width: 800px;
}

/* Bottom Right Text Content */
.why-we-built-content {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.why-we-built-text {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-we-built-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

/* What You Can Do With Voxecore Section */
.what-you-can-do {
    background-color: #0C0D08;
    padding: 120px 0;
}

.what-you-can-do-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Eyebrow + Header */
.what-you-can-do-header {
    margin-bottom: 80px;
}

.what-you-can-do-eyebrow {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.what-you-can-do-title {
    font-family: 'Forum', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Two Column Layout - Reversed (Image Left, Accordion Right) */
.what-you-can-do-content {
    display: grid;
    grid-template-columns: 0.70fr 0.30fr;
    gap: 32px;
    align-items: stretch;
    flex: 1;
}

/* Multi-Source Data Ingestion Section */
.data-ingestion {
    background-color: #0C0D08;
    padding: 120px 0;
}

.data-ingestion-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Eyebrow + Header */
.data-ingestion-header {
    margin-bottom: 80px;
}

.data-ingestion-eyebrow {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.data-ingestion-title {
    font-family: 'Forum', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
    max-width: 900px;
}

/* Two Panel Layout */
.data-ingestion-panels {
    display: grid;
    grid-template-columns: 0.65fr 0.35fr;
    gap: 24px;
}

/* Left Panel: Ingestion Illustration */
.ingestion-panel {
    background-color: #090A06;
    border: 1px solid #2D2E2A;
    border-radius: 28px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 224px;
    box-sizing: border-box;
}

.ingestion-illustration {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Right Panel: Product Image */
.product-panel {
    background-color: #1a1b16;
    border-radius: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 224px;
    box-sizing: border-box;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

/* Final CTA Section */
.final-cta {
    background-color: #ffffff;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.final-cta-container {
    max-width: 1000px;
    text-align: center;
    padding: 0 3rem;
}

.final-cta-eyebrow {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #0C0D08;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.final-cta-title {
    font-family: 'Forum', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: #0C0D08;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.btn-final-cta {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0C0D08;
    color: #ffffff;
    border: 1px solid transparent;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 42px;
    line-height: 1.2;
    box-sizing: border-box;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
}

.btn-final-cta:hover {
    background-color: #E6E6E5;
    color: #0C0D08;
}

/* Footer Section */
.footer {
    background-color: #0C0D08;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-title {
    font-family: 'Forum', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

/* Contact and Social Links Row */
.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 40px;
}

/* Left: Phone Contact */
.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #B6B6B5;
    margin: 0;
}

.contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #4512E6 0%, rgba(69, 18, 230, 0) 100%);
}

/* Right: Social Links */
.footer-social {
    display: flex;
    gap: 40px;
    align-items: center;
}

.social-link {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #4512E6 0%, rgba(69, 18, 230, 0) 100%);
}

/* Large Logo */
.footer-logo {
    text-align: center;
    margin-bottom: 60px;
}

.logo-large {
    width: 100%;
    height: auto;
}

/* Copyright */
.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #B6B6B5;
    text-align: left;
    margin: 0;
    text-transform: uppercase;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Small Tablets and Below (640px) */
@media (max-width: 640px) {
    /* Navbar */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-capsule {
        padding: 8px 14px;
    }
    
    .logo-icon {
        height: 24px;
    }
    
    .nav-capsule-right {
        gap: 0.5rem;
    }
    
    .sign-in,
    .btn-get-started {
        font-size: 0.8rem;
        padding: 10px 14px;
        height: 38px;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 0 1rem;
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: 0.5rem;
        padding: 6px 10px;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 2rem;
    }
    
    .btn-explore {
        font-size: 0.85rem;
        padding: 12px 18px;
    }
    
    /* Section Headers */
    .how-it-works-title,
    .why-we-built-title,
    .what-you-can-do-title,
    .data-ingestion-title,
    .final-cta-title,
    .footer-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    /* Accordion Sections */
    .content-wrapper {
        padding: 16px;
        min-height: auto;
    }
    
    .how-it-works-content,
    .what-you-can-do-content {
        gap: 20px;
        flex: none;
    }
    
    .accordion-item {
        padding: 16px 0;
    }
    
    .accordion-title {
        font-size: 14px;
    }
    
    .accordion-description {
        font-size: 12px;
    }
    
    /* Remove flex expansion on mobile to eliminate empty space */
    .accordion-container {
        flex: none;
    }
    
    .how-it-works-content > div:first-child {
        height: auto;
    }
    
    /* Set min-height for image on mobile */
    .image-wrapper {
        min-height: 350px;
    }
    
    /* Data Ingestion */
    .data-ingestion-panels {
        gap: 16px;
    }
    
    .ingestion-panel {
        padding: 20px;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .footer-social {
        gap: 24px;
    }
    
    .contact-link,
    .social-link {
        font-size: 15px;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-capsule {
        padding: 10px 18px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .nav-capsule-right {
        gap: 1rem;
    }

    .sign-in {
        font-size: 0.9rem;
    }

    .btn-get-started {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-explore {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

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

    .how-it-works-container {
        padding: 0 1.5rem;
    }

    .how-it-works-header {
        margin-bottom: 60px;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .image-panel {
        position: relative;
        top: 0;
        order: 2;
    }

    .accordion-container {
        order: 1;
    }

    /* Why We Built This - Tablet */
    .why-we-built {
        padding: 80px 0;
    }

    .why-we-built-container {
        padding: 0 1.5rem;
    }

    .why-we-built-content {
        justify-content: flex-start;
    }

    /* What You Can Do - Tablet */
    .what-you-can-do {
        padding: 80px 0;
    }

    .what-you-can-do-container {
        padding: 0 1.5rem;
    }

    .what-you-can-do-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .what-you-can-do-content .image-panel {
        order: 1;
    }

    .what-you-can-do-content .accordion-container {
        order: 2;
    }

    /* Data Ingestion - Tablet */
    .data-ingestion {
        padding: 80px 0;
    }

    .data-ingestion-container {
        padding: 0 1.5rem;
    }

    .data-ingestion-panels {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Final CTA - Tablet */
    .final-cta {
        padding: 100px 0;
    }

    .final-cta-container {
        padding: 0 1.5rem;
    }

    /* Footer - Tablet */
    .footer {
        padding: 80px 0 40px;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

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

    .nav-capsule {
        padding: 8px 14px;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .nav-capsule-right {
        gap: 0.75rem;
    }

    .sign-in {
        font-size: 0.85rem;
    }

    .btn-get-started {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

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

    .how-it-works-container {
        padding: 0 1rem;
    }

    .how-it-works-header {
        margin-bottom: 40px;
    }

    .how-it-works-title {
        font-size: 1.75rem;
    }

    .accordion-title {
        font-size: 18px;
    }

    .accordion-item {
        padding: 20px 0;
    }

    .how-it-works-content {
        gap: 20px;
    }

    /* Why We Built This - Mobile */
    .why-we-built {
        padding: 60px 0;
        min-height: 90vh;
    }

    .why-we-built-container {
        padding: 0 1rem;
        min-height: 70vh;
    }

    .why-we-built-title {
        font-size: 1.75rem;
    }

    .why-we-built-content {
        justify-content: flex-start;
    }

    .why-we-built-text {
        max-width: 100%;
    }

    .why-we-built-text p {
        font-size: 13px;
    }

    /* What You Can Do - Mobile */
    .what-you-can-do {
        padding: 60px 0;
    }

    .what-you-can-do-container {
        padding: 0 1rem;
    }

    .what-you-can-do-header {
        margin-bottom: 40px;
    }

    .what-you-can-do-title {
        font-size: 1.75rem;
    }

    .what-you-can-do-content {
        gap: 20px;
    }

    /* Final CTA - Mobile */
    .final-cta {
        padding: 80px 0;
        min-height: 50vh;
    }

    .final-cta-container {
        padding: 0 1rem;
    }

    .final-cta-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    /* Footer - Mobile */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        padding-bottom: 30px;
    }

    .footer-social {
        gap: 30px;
    }

    .contact-link,
    .social-link {
        font-size: 16px;
    }

    .logo-large {
        max-width: 100%;
    }

    /* Data Ingestion - Mobile */
    .data-ingestion {
        padding: 60px 0;
    }

    .data-ingestion-container {
        padding: 0 1rem;
    }

    .data-ingestion-header {
        margin-bottom: 40px;
    }

    .data-ingestion-title {
        font-size: 1.75rem;
    }

    .data-ingestion-panels {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ingestion-panel {
        padding: 40px 20px;
        min-height: 300px;
    }

    .product-panel {
        min-height: 300px;
    }
}



/* Desktop and Above (1024px) */
@media (min-width: 1024px) {
    /* Optimize for desktop */
    .hero-title {
        font-size: clamp(3rem, 5vw, 5rem);
    }
    
    /* Ensure proper spacing on desktop */
    .how-it-works-content,
    .what-you-can-do-content {
        gap: 32px;
    }
    
    /* Optimize image panels */
    .image-wrapper {
        min-height: 400px;
    }
}

/* Large Desktop (1280px and above) */
@media (min-width: 1280px) {
    /* Max container width */
    .nav-container,
    .how-it-works-container,
    .why-we-built-container,
    .what-you-can-do-container,
    .data-ingestion-container,
    .final-cta-container,
    .footer-container {
        max-width: 1400px;
    }
    
    /* Larger typography on big screens */
    .hero-title {
        font-size: 5rem;
    }
    
    .how-it-works-title,
    .why-we-built-title,
    .what-you-can-do-title,
    .data-ingestion-title {
        font-size: 3.5rem;
    }
}
