/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* X1 Explorer inspired colors */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;

    /* Dark theme variables */
    --bg-dark-primary: #090A0C;
    --bg-dark-secondary: #0f1419;
    --bg-dark-tertiary: #1a1f2e;
    --bg-dark-card: rgba(255, 255, 255, 0.08);
    --bg-dark-card-hover: rgba(255, 255, 255, 0.12);
    --text-dark-primary: #ffffff;
    --text-dark-secondary: #a0a9c0;
    --text-dark-tertiary: #6b7280;
    --border-dark-primary: rgba(255, 255, 255, 0.1);
    --border-dark-secondary: rgba(255, 255, 255, 0.05);

    /* Light theme variables - Darker greyish tones */
    --bg-light-primary: #e2e8f0;
    --bg-light-secondary: #cbd5e1;
    --bg-light-tertiary: #94a3b8;
    --bg-light-card: rgba(226, 232, 240, 0.9);
    --bg-light-card-hover: rgba(241, 245, 249, 0.95);
    --text-light-primary: #0f172a;
    --text-light-secondary: #1e293b;
    --text-light-tertiary: #475569;
    --border-light-primary: rgba(15, 23, 42, 0.15);
    --border-light-secondary: rgba(15, 23, 42, 0.1);

    /* Dynamic theme variables (will be overridden per section) */
    --bg-primary: var(--bg-dark-primary);
    --bg-secondary: var(--bg-dark-secondary);
    --bg-tertiary: var(--bg-dark-tertiary);
    --bg-card: var(--bg-dark-card);
    --bg-card-hover: var(--bg-dark-card-hover);
    --text-primary: var(--text-dark-primary);
    --text-secondary: var(--text-dark-secondary);
    --text-tertiary: var(--text-dark-tertiary);
    --border-primary: var(--border-dark-primary);
    --border-secondary: var(--border-dark-secondary);

    /* Accent colors */
    --accent-blue: #3d7eff;
    --accent-purple: #764ba2;
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Success/status colors from X1 Explorer */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Animation variables */
    --animation-duration: 150ms;
    --animation-curve: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(9, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-primary);
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Section Theme Classes */
.section-dark {
    --bg-primary: var(--bg-dark-primary);
    --bg-secondary: var(--bg-dark-secondary);
    --bg-tertiary: var(--bg-dark-tertiary);
    --bg-card: var(--bg-dark-card);
    --bg-card-hover: var(--bg-dark-card-hover);
    --text-primary: var(--text-dark-primary);
    --text-secondary: var(--text-dark-secondary);
    --text-tertiary: var(--text-dark-tertiary);
    --border-primary: var(--border-dark-primary);
    --border-secondary: var(--border-dark-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.section-light {
    --bg-primary: var(--bg-light-primary);
    --bg-secondary: var(--bg-light-secondary);
    --bg-tertiary: var(--bg-light-tertiary);
    --bg-card: var(--bg-light-card);
    --bg-card-hover: var(--bg-light-card-hover);
    --text-primary: var(--text-light-primary);
    --text-secondary: var(--text-light-secondary);
    --text-tertiary: var(--text-light-tertiary);
    --border-primary: var(--border-light-primary);
    --border-secondary: var(--border-light-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.section-light .service-card,
.section-light .impact-card,
.section-light .benefit-section,
.section-light .stat-card,
.section-light .contact-link {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.section-light .service-card:hover,
.section-light .impact-card:hover,
.section-light .benefit-section:hover,
.section-light .stat-card:hover,
.section-light .contact-link:hover {
    background: var(--bg-card-hover);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.section-light .market-fit {
    background: rgba(61, 126, 255, 0.06);
    border: 1px solid rgba(61, 126, 255, 0.12);
}

.section-light .feature-tag {
    background: rgba(61, 126, 255, 0.12);
    color: var(--primary-700);
}

.section-light .service-preview {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}


/* Navigation bar scroll adaptation */
.nav.light-section {
    background: rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.15);
}

.nav.light-section .brand-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav.light-section .nav-link {
    color: var(--text-light-secondary);
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.light-section .nav-link:hover {
    color: var(--text-light-primary);
}

/* Hero Section */
.hero {
    min-height: 66vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* Smokey atmospheric effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 1000px 500px at 20% 90%, rgba(15, 23, 42, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 750px 400px at 80% 10%, rgba(30, 41, 59, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse 500px 750px at 10% 50%, rgba(51, 65, 85, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 650px 450px at 90% 80%, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
    pointer-events: none;
    animation: smokeRise 20s ease-in-out infinite alternate;
    z-index: 5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 850px 450px at 60% 20%, rgba(71, 85, 105, 0.5) 0%, transparent 65%),
        radial-gradient(ellipse 550px 650px at 30% 70%, rgba(30, 41, 59, 0.6) 0%, transparent 65%),
        radial-gradient(ellipse 450px 300px at 85% 60%, rgba(15, 23, 42, 0.55) 0%, transparent 60%);
    pointer-events: none;
    animation: smokeRise 25s ease-in-out infinite alternate-reverse;
    z-index: 6;
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
        filter: blur(1px);
    }
    25% {
        transform: translateY(-8px) scale(1.02);
        opacity: 0.6;
        filter: blur(1.2px);
    }
    50% {
        transform: translateY(-12px) scale(0.98);
        opacity: 0.5;
        filter: blur(1.5px);
    }
    75% {
        transform: translateY(-6px) scale(1.01);
        opacity: 0.7;
        filter: blur(1px);
    }
    100% {
        transform: translateY(-3px) scale(1);
        opacity: 0.45;
        filter: blur(1.3px);
    }
}

/* Hidden Images Grid - Reduced by 25% */
.hidden-images-grid {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px; /* No gaps between images */
    padding: 0;
    z-index: 100;
    pointer-events: none;
}

.hidden-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px; /* Remove border radius to join seamlessly */
    opacity: 1;
    filter: grayscale(0) brightness(1) contrast(1);
    transition: filter 0.3s ease, opacity 0.3s ease;
    /* Start hidden by default - JavaScript will initialize the mask */
    mask: radial-gradient(circle 0px at 50% 50%, transparent 100%);
    -webkit-mask: radial-gradient(circle 0px at 50% 50%, transparent 100%);
}

/* Mouse hover cloud reveal styling */
.hidden-image.cloud-reveal {
    filter: grayscale(0.1) brightness(1.6) blur(0.2px);
    /* Remove transition to prevent layout shifts */
}

/* Duplicate rule removed - consolidated into main .hidden-image rule above */

/* Natural cloud drift animation */
@keyframes naturalCloudDrift {
    0% {
        mask-position: -200% -50%, -250% -30%, -180% -70%;
        -webkit-mask-position: -200% -50%, -250% -30%, -180% -70%;
    }
    25% {
        mask-position: -50% 0%, -100% 20%, -30% -20%;
        -webkit-mask-position: -50% 0%, -100% 20%, -30% -20%;
    }
    50% {
        mask-position: 100% 50%, 50% 70%, 120% 30%;
        -webkit-mask-position: 100% 50%, 50% 70%, 120% 30%;
    }
    75% {
        mask-position: 250% 100%, 200% 120%, 270% 80%;
        -webkit-mask-position: 250% 100%, 200% 120%, 270% 80%;
    }
    100% {
        mask-position: 400% 150%, 450% 170%, 380% 130%;
        -webkit-mask-position: 400% 150%, 450% 170%, 380% 130%;
    }
}

.hidden-image.cloud-flowing {
    animation: naturalCloudDrift 12s ease-in-out;
}

/* Cloud reveal animations */
@keyframes cloudReveal1 {
    0%, 15% {
        opacity: 0;
        filter: grayscale(0.8) brightness(0.2) blur(1px);
    }
    25%, 35% {
        opacity: 0.15;
        filter: grayscale(0.4) brightness(0.6) blur(0.3px);
    }
    45%, 55% {
        opacity: 0.25;
        filter: grayscale(0.2) brightness(0.8) blur(0.2px);
    }
    65%, 85% {
        opacity: 0.1;
        filter: grayscale(0.6) brightness(0.4) blur(0.8px);
    }
    100% {
        opacity: 0;
        filter: grayscale(0.8) brightness(0.2) blur(1px);
    }
}

@keyframes cloudReveal2 {
    0%, 20% {
        opacity: 0;
        filter: grayscale(0.8) brightness(0.2) blur(1px);
    }
    30%, 40% {
        opacity: 0.2;
        filter: grayscale(0.3) brightness(0.7) blur(0.3px);
    }
    50%, 70% {
        opacity: 0.18;
        filter: grayscale(0.1) brightness(0.9) blur(0.1px);
    }
    80%, 100% {
        opacity: 0;
        filter: grayscale(0.8) brightness(0.2) blur(1px);
    }
}

@keyframes cloudReveal3 {
    0%, 25% {
        opacity: 0;
        filter: grayscale(0.8) brightness(0.2) blur(1px);
    }
    35%, 50% {
        opacity: 0.12;
        filter: grayscale(0.5) brightness(0.5) blur(0.4px);
    }
    60%, 75% {
        opacity: 0.22;
        filter: grayscale(0.2) brightness(0.8) blur(0.2px);
    }
    85%, 100% {
        opacity: 0;
        filter: grayscale(0.8) brightness(0.2) blur(1px);
    }
}

@keyframes cloudReveal4 {
    0%, 10% {
        opacity: 0;
        filter: grayscale(0.8) brightness(0.2) blur(1px);
    }
    20%, 35% {
        opacity: 0.16;
        filter: grayscale(0.4) brightness(0.6) blur(0.3px);
    }
    45%, 65% {
        opacity: 0.28;
        filter: grayscale(0.1) brightness(0.9) blur(0.1px);
    }
    75%, 100% {
        opacity: 0;
        filter: grayscale(0.8) brightness(0.2) blur(1px);
    }
}

/* Light sweep animation disabled to remove vertical lines */
/*
.hero .light-sweep {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(226, 232, 240, 0.05) 25%,
        rgba(148, 163, 184, 0.08) 50%,
        rgba(226, 232, 240, 0.05) 75%,
        transparent 100%);
    pointer-events: none;
    animation: lightSweep 40s ease-in-out infinite;
    z-index: 2;
}
*/

/* Light sweep keyframes disabled to remove vertical lines */
/*
@keyframes lightSweep {
    0% {
        left: -200%;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        left: 100%;
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}
*/

/* Disabled all background effects */
/*
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Primary cloud formations with better falloff */
        radial-gradient(ellipse 1400px 800px at 20% 25%,
            rgba(15, 23, 42, 0.6) 0%,
            rgba(30, 41, 59, 0.45) 25%,
            rgba(51, 65, 85, 0.25) 50%,
            transparent 75%),
        radial-gradient(ellipse 1000px 600px at 85% 35%,
            rgba(30, 41, 59, 0.55) 0%,
            rgba(15, 23, 42, 0.4) 30%,
            rgba(71, 85, 105, 0.2) 60%,
            transparent 80%),
        radial-gradient(ellipse 800px 900px at 35% 80%,
            rgba(51, 65, 85, 0.5) 0%,
            rgba(30, 41, 59, 0.35) 25%,
            rgba(15, 23, 42, 0.15) 55%,
            transparent 75%),
        radial-gradient(ellipse 1200px 700px at 90% 75%,
            rgba(15, 23, 42, 0.65) 0%,
            rgba(30, 41, 59, 0.4) 35%,
            rgba(71, 85, 105, 0.2) 65%,
            transparent 85%),
        /* Wispy cloud details */
        radial-gradient(ellipse 600px 300px at 10% 65%,
            rgba(30, 41, 59, 0.4) 0%,
            rgba(51, 65, 85, 0.25) 40%,
            transparent 70%),
        radial-gradient(ellipse 500px 400px at 70% 15%,
            rgba(71, 85, 105, 0.35) 0%,
            rgba(30, 41, 59, 0.2) 45%,
            transparent 75%),
        /* Light-catching highlights with better gradients */
        radial-gradient(ellipse 350px 250px at 25% 40%,
            rgba(203, 213, 225, 0.25) 0%,
            rgba(148, 163, 184, 0.15) 50%,
            transparent 80%),
        radial-gradient(ellipse 500px 300px at 75% 25%,
            rgba(226, 232, 240, 0.22) 0%,
            rgba(203, 213, 225, 0.12) 45%,
            transparent 75%),
        radial-gradient(ellipse 250px 200px at 60% 70%,
            rgba(148, 163, 184, 0.28) 0%,
            rgba(203, 213, 225, 0.15) 40%,
            transparent 70%);
    pointer-events: none;
    animation: smokeFlow 25s ease-in-out infinite alternate;
    filter: blur(0.5px);
    z-index: 1;
}
*/

/* .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Secondary cloud layer with elliptical shapes */
        radial-gradient(ellipse 600px 400px at 70% 20%,
            rgba(71, 85, 105, 0.45) 0%,
            rgba(30, 41, 59, 0.3) 35%,
            rgba(15, 23, 42, 0.15) 65%,
            transparent 85%),
        radial-gradient(ellipse 1100px 650px at 30% 70%,
            rgba(15, 23, 42, 0.5) 0%,
            rgba(30, 41, 59, 0.35) 30%,
            rgba(51, 65, 85, 0.18) 60%,
            transparent 80%),
        radial-gradient(ellipse 750px 500px at 95% 45%,
            rgba(30, 41, 59, 0.48) 0%,
            rgba(51, 65, 85, 0.32) 25%,
            rgba(71, 85, 105, 0.15) 55%,
            transparent 75%),
        radial-gradient(ellipse 850px 600px at 15% 85%,
            rgba(51, 65, 85, 0.52) 0%,
            rgba(30, 41, 59, 0.35) 40%,
            rgba(15, 23, 42, 0.18) 70%,
            transparent 85%),
        /* Fine detail clouds */
        radial-gradient(ellipse 300px 200px at 60% 25%,
            rgba(71, 85, 105, 0.3) 0%,
            rgba(94, 116, 138, 0.15) 50%,
            transparent 80%),
        radial-gradient(ellipse 400px 250px at 25% 55%,
            rgba(30, 41, 59, 0.25) 0%,
            rgba(51, 65, 85, 0.12) 60%,
            transparent 85%),
        /* Enhanced moving light highlights */
        radial-gradient(ellipse 400px 300px at 40% 25%,
            rgba(226, 232, 240, 0.2) 0%,
            rgba(203, 213, 225, 0.1) 50%,
            transparent 80%),
        radial-gradient(ellipse 300px 200px at 85% 65%,
            rgba(148, 163, 184, 0.24) 0%,
            rgba(203, 213, 225, 0.12) 45%,
            transparent 75%),
        radial-gradient(ellipse 450px 350px at 25% 80%,
            rgba(203, 213, 225, 0.22) 0%,
            rgba(148, 163, 184, 0.1) 40%,
            transparent 70%);
    pointer-events: none;
    animation: smokeFlow 30s ease-in-out infinite alternate-reverse;
    filter: blur(0.3px);
    z-index: 1;
}

/* @keyframes smokeFlow {
    0% {
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        opacity: 0.4;
        filter: blur(0px);
    }
    25% {
        transform: translateX(20px) translateY(-12px) scale(1.03) rotate(0.5deg);
        opacity: 0.6;
        filter: blur(1px);
    }
    50% {
        transform: translateX(-15px) translateY(25px) scale(0.95) rotate(-0.5deg);
        opacity: 0.3;
        filter: blur(2px);
    }
    75% {
        transform: translateX(25px) translateY(-8px) scale(1.04) rotate(0.6deg);
        opacity: 0.7;
        filter: blur(1.5px);
    }
    100% {
        transform: translateX(-12px) translateY(8px) scale(1.01) rotate(-0.1deg);
        opacity: 0.5;
        filter: blur(0.5px);
    }
} */

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 5;
    pointer-events: none;
}

.hero-content, .hero-visual {
    pointer-events: auto;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

/* Aligned Hero Text - positioned to match nav alignment */
.aligned-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    max-width: none; /* Remove width constraint for GIF */
    width: auto;
    margin-left: -600px; /* Keep text aligned with nav */
    padding-left: 2rem; /* Match nav container padding for text alignment */
    z-index: 10;
    pointer-events: auto;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
    overflow: visible;
}

.aligned-content {
    flex: 1;
    max-width: 600px;
}

.gif-container {
    flex-shrink: 0;
    width: 700px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gif-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.gif-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 100%
    );
    animation: tv-flicker 0.1s infinite alternate;
    pointer-events: none;
    z-index: 2;
}

.aligned-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    max-width: 600px;
}

.aligned-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.aligned-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gif-image {
    width: 700px;
    height: auto;
    display: block;
    filter: contrast(1.1) brightness(0.95);
}

@keyframes tv-flicker {
    0% { opacity: 1; }
    98% { opacity: 1; }
    99% { opacity: 0.98; }
    100% { opacity: 1; }
}

/* Ecosystem Impact Section Background Effects */
.ecosystem-impact {
    position: relative;
    overflow: hidden;
}

.ecosystem-images-grid {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px;
    padding: 0;
    z-index: 1;
    pointer-events: none;
}

/* Add smoke effects to ecosystem section */
.ecosystem-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 1000px 500px at 20% 90%, rgba(15, 23, 42, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 750px 400px at 80% 10%, rgba(30, 41, 59, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse 500px 750px at 10% 50%, rgba(51, 65, 85, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 650px 450px at 90% 80%, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
    pointer-events: none;
    animation: ecosystemSmokeRise 20s ease-in-out infinite alternate;
    z-index: 2;
}

.ecosystem-impact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 600px 800px at 70% 20%, rgba(15, 23, 42, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 900px 300px at 30% 80%, rgba(30, 41, 59, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 400px 600px at 85% 60%, rgba(51, 65, 85, 0.7) 0%, transparent 65%);
    pointer-events: none;
    animation: ecosystemSmokeRise 25s ease-in-out infinite alternate-reverse;
    z-index: 3;
}

@keyframes ecosystemSmokeRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
        filter: blur(1px);
    }
    25% {
        transform: translateY(-8px) scale(1.02);
        opacity: 0.6;
        filter: blur(1.2px);
    }
    50% {
        transform: translateY(-12px) scale(0.98);
        opacity: 0.5;
        filter: blur(1.5px);
    }
    75% {
        transform: translateY(-6px) scale(1.01);
        opacity: 0.7;
        filter: blur(1px);
    }
    100% {
        transform: translateY(-3px) scale(1);
        opacity: 0.45;
        filter: blur(1.3px);
    }
}

/* Ensure ecosystem content is above background effects */
.ecosystem-impact .container {
    position: relative;
    z-index: 10;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--animation-duration) var(--animation-curve);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(61, 126, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(61, 126, 255, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-primary);
    transform: translateY(-1px);
}

/* Floating Cards Animation */
.hero-visual {
    position: relative;
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explorer-showcase-large {
    position: relative;
    width: 100%;
    max-width: 600px; /* Reduced from 1200px to 600px */
    z-index: 10;
}

.explorer-image-container-large {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow:
        0 40px 80px -15px rgba(0, 0, 0, 0.6),
        0 25px 50px -12px rgba(61, 126, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.explorer-image-large {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
}

.liquid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(61, 126, 255, 0.1) 0%,
        rgba(118, 75, 162, 0.08) 25%,
        transparent 50%,
        rgba(61, 126, 255, 0.06) 75%,
        rgba(118, 75, 162, 0.1) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

.liquid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    opacity: 0.7;
}


/* Services Section */
.services {
    padding: 8rem 0;
    position: relative;
}

/* Productivity Section - Redesigned */
.productivity {
    padding: 8rem 0;
    background: var(--bg-primary);
}

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

.productivity-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.productivity-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-400);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    cursor: crosshair;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 4px;
    margin: 4px;
}

.feature-image-container:hover {
    overflow: visible;
    z-index: 1000;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    transform-origin: center center;
    transition: all 0.3s ease-out;
}

.feature-image:hover {
    transform: scale(1.5);
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    border-radius: 16px;
    object-fit: cover;
}

.feature-content {
    padding: 1.5rem;
}

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

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-link {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-600);
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Service Cards with Hover Effects */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s var(--animation-curve);
    cursor: pointer;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--animation-curve);
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 126, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
}

.value-props {
    margin: 1.5rem 0;
}

.value-prop {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.prop-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-prop div {
    flex: 1;
}

.value-prop strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.value-prop p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.market-fit {
    background: rgba(61, 126, 255, 0.05);
    border: 1px solid rgba(61, 126, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.market-fit h4 {
    color: var(--accent-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.market-fit p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--bg-tertiary);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(61, 126, 255, 0.1);
    color: var(--accent-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--animation-duration) var(--animation-curve);
}

.service-link:hover {
    color: var(--primary-300);
}

/* Service Preview (Huly-inspired hover effect) */
.service-preview {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    padding: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s var(--animation-curve);
    pointer-events: none;
    z-index: 10;
}

.service-card:hover .service-preview {
    opacity: 1;
    transform: translateY(-10px);
}

.preview-content {
    font-size: 0.875rem;
}

.preview-header {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.preview-stats, .preview-list, .preview-metrics, .preview-feeds {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item, .preview-item, .metric-item, .feed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.feed-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.feed-change.positive {
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
}

.feed-change.negative {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.stat-label, .metric-label, .feed-name {
    color: var(--text-secondary);
}

.stat-value, .metric-value, .feed-price {
    color: var(--text-primary);
    font-weight: 600;
}

.preview-item {
    color: var(--text-secondary);
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border-secondary);
}

.preview-item:last-child {
    border-bottom: none;
}

.metric-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-online {
    background-color: var(--success);
}

/* Ecosystem Impact Section */
.ecosystem-impact {
    padding: 8rem 0;
    position: relative;
}

.ecosystem-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at 30% 50%, rgba(118, 75, 162, 0.08), transparent 50%);
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.impact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all var(--animation-duration) var(--animation-curve);
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.impact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    opacity: 0.95;
    z-index: -1;
    border-radius: inherit;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--animation-curve);
    z-index: 1;
}

.impact-card:hover::before {
    opacity: 0.05;
}

.impact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 126, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.impact-card > * {
    position: relative;
    z-index: 2;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.impact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.impact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.ecosystem-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-section {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: 2rem;
    transition: all var(--animation-duration) var(--animation-curve);
    position: relative;
    z-index: 100;
}

.benefit-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    opacity: 0.95;
    z-index: -1;
    border-radius: inherit;
}

.benefit-section:hover {
    transform: translateY(-2px);
    border-color: rgba(61, 126, 255, 0.2);
}

.benefit-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-section li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.benefit-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.benefit-section li:last-child {
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 8rem 0;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all var(--animation-duration) var(--animation-curve);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(61, 126, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--animation-duration) var(--animation-curve);
}

.contact-link:hover {
    transform: translateY(-2px);
    border-color: rgba(61, 126, 255, 0.3);
    background: var(--bg-card-hover);
}

.contact-icon {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-primary);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Footer Background Effects */
.footer::before,
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse 800px 400px at 20% 80%,
        rgba(61, 126, 255, 0.05) 0%,
        rgba(61, 126, 255, 0.02) 40%,
        transparent 70%
    ),
    radial-gradient(
        ellipse 600px 300px at 80% 20%,
        rgba(118, 75, 162, 0.04) 0%,
        rgba(118, 75, 162, 0.01) 50%,
        transparent 80%
    );
    pointer-events: none;
    z-index: 0;
}

.footer::after {
    background: radial-gradient(
        ellipse 700px 350px at 60% 60%,
        rgba(34, 197, 94, 0.03) 0%,
        rgba(34, 197, 94, 0.01) 60%,
        transparent 90%
    );
    animation: footerSmokeRise 22s ease-in-out infinite;
}

.footer::before {
    animation: footerSmokeRise 18s ease-in-out infinite reverse;
}

@keyframes footerSmokeRise {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

/* Footer Images Grid */
.footer-images-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.footer-images-grid .hidden-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-mask: radial-gradient(circle at 50% 50%, transparent 160px, black 160px);
    mask: radial-gradient(circle at 50% 50%, transparent 160px, black 160px);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color var(--animation-duration) var(--animation-curve);
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-primary);
    color: var(--text-tertiary);
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-primary);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--animation-duration) var(--animation-curve);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(61, 126, 255, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

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

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .productivity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ecosystem-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .aligned-content {
        max-width: 100%;
    }

    .gif-container {
        max-width: 400px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .brand-logo {
        height: 28px;
        width: 28px;
    }

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

    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .aligned-hero-text {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .aligned-content {
        max-width: 100%;
    }

    .aligned-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .aligned-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .gif-container {
        max-width: 100%;
        order: -1;
    }

    .gif-image {
        max-width: 300px;
        height: auto;
    }

    /* Services Section */
    .productivity-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .productivity-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .productivity-subtitle {
        font-size: 1rem;
    }

    .productivity-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        text-align: center;
    }

    /* Ecosystem Section */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

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

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .ecosystem-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .benefit-section {
        padding: 1.5rem;
    }

    /* About Section */
    .about {
        padding: 4rem 0;
    }

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

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        justify-content: center;
    }

    .social-links {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    /* Disable hover effects on mobile for better performance */
    .hidden-images-grid,
    .ecosystem-images-grid,
    .footer-images-grid {
        display: none;
    }

    /* Remove complex animations on mobile */
    .hero::before,
    .hero::after,
    .ecosystem-impact::before,
    .ecosystem-impact::after,
    .footer::before,
    .footer::after {
        display: none;
    }
}

/* Small Mobile Styles */

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

    /* Navigation */
    .nav-container {
        padding: 0.75rem;
    }

    .brand-logo {
        height: 24px;
        width: 24px;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    /* Hero Section */
    .aligned-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .aligned-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .gif-image {
        max-width: 250px;
    }

    /* Services */
    .productivity-title {
        font-size: 1.75rem;
    }

    .productivity-subtitle {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    /* Ecosystem Section */
    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .impact-number {
        font-size: 2rem;
    }

    .impact-card h3 {
        font-size: 1.1rem;
    }

    .impact-card p {
        font-size: 0.85rem;
    }

    .benefit-section {
        padding: 1.25rem;
    }

    .benefit-section h3 {
        font-size: 1.1rem;
    }

    .benefit-section li {
        font-size: 0.85rem;
    }

    /* About Section */
    .about {
        padding: 3rem 0;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}