/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Account for fixed navbar */

    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

/* Normal scroll behavior for contact and prototype pages */
body.contact-page,
body.prototype-page {
    scroll-behavior: auto !important;
    overflow: auto !important;
}

body.contact-page html,
body.prototype-page html,
html.contact-page,
html.prototype-page {
    scroll-behavior: auto !important;
    overflow: auto !important;
}

/* Override scroll lock for contact and prototype pages */
html.contact-page.scroll-locked,
html.prototype-page.scroll-locked,
html.contact-page.scroll-locked body,
html.prototype-page.scroll-locked body {
    overflow: auto !important;
}

/* Prevent scroll lock on contact and prototype pages */
body.contact-page html.scroll-locked,
body.contact-page html.scroll-locked body,
body.prototype-page html.scroll-locked,
body.prototype-page html.scroll-locked body {
    overflow: auto !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
}

/* Make 3D objects immediately visible on contact and prototype pages */
body.contact-page .object-3d,
body.prototype-page .object-3d {
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
    animation: none !important;
}

/* Ensure navigation is immediately visible on contact and prototype pages */
body.contact-page .nav-container,
body.prototype-page .nav-container {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Scroll lock class for hero animation */
html.scroll-locked,
html.scroll-locked body {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Also hide for any scrollable element if needed */
::-webkit-scrollbar {
    display: none;
}

* {
    scroll-behavior: smooth;
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    /* Hide scrollbar for IE and Edge */
    -ms-overflow-style: none;
}

:root {
    /* Colors from the design */
    --primary-purple: #8B7ED8;
    --light-purple: #B8A9E8;
    --accent-yellow: #F4E85B;
    --accent-green: #4ECDC4;
    --accent-pink: #FF6B9D;
    --accent-orange: #FFB347;
    --dark-gray: #2C2C2C;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --gradient-bg: linear-gradient(135deg, #FEFDF8 0%, #F9F7F0 100%);

    /* Typography */
    --font-primary: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-header: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 20px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--gradient-bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #E8F4FF 0%, #F0E6FF 100%);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Hide navbar and other content during loading */
body.loading .navbar,
body.loading .hero,
body.loading .video-section,
body.loading .feature-section,
body.loading .coming-soon-section,
body.loading footer {
    display: none !important;
}

/* Ensure loading screen is visible when body has loading class */
body.loading .loading-screen {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.loading-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Clouds */
.loading-clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.cloud {
    position: absolute;
    opacity: 0.6;
    animation: float-cloud 20s linear infinite;
}

.cloud-1 {
    width: 150px;
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.cloud-2 {
    width: 120px;
    top: 60%;
    left: 60%;
    animation-duration: 30s;
    animation-delay: 2s;
}

.cloud-3 {
    width: 180px;
    top: 40%;
    left: 80%;
    animation-duration: 35s;
    animation-delay: 4s;
}

@keyframes float-cloud {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(100vw + 200px));
    }
}

/* Wisme Character */
.loading-wisme {
    position: relative;
    z-index: 2;
    animation: float-wisme 2s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-wisme img {
    width: 80px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(139, 126, 216, 0.3));
}

@keyframes float-wisme {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.loading-wisme.fly-away {
    animation: fly-up 1s ease-in-out forwards;
}

@keyframes fly-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(0.3);
        opacity: 0;
    }
}

/* Loading Dots */
.loading-dots {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: bounce-dot 1.4s ease-in-out infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce-dot {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-purple);
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    z-index: 2;
    margin-left: -140px;
    padding-left: 0;
    width: 130%;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-header);
    font-size: clamp(50px, 10vw, 108px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-gray);
    margin-bottom: 40px;
    min-height: 3.5em;
    width: 100%;
    overflow: hidden;
}

.typing-text {
    display: inline-block;
    white-space: pre-line;
    min-height: 0.7em;
}

.typing-cursor {
    display: inline-block;
    background-color: var(--dark-gray);
    width: 4px;
    animation: blink 1s infinite;
    margin-left: 2px;
}



/* Cursor Blink Animation */
@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Audio Player */
.audio-player {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-yellow);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 232, 91, 0.3);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(244, 232, 91, 0.4);
}

.play-btn svg {
    color: var(--dark-gray);
    margin-left: 2px;
}

.player-info {
    flex: 1;
}

.episode-title {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    display: block;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--primary-purple);
    border-radius: 3px;
    width: 60%;
    position: relative;
}

.progress-handle {
    width: 14px;
    height: 14px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(139, 126, 216, 0.3);
}

.time {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Removed card styling - no background, padding, shadow, or border */
}

.scroll-indicator span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Down Arrow */
.down-arrow {
    font-size: 32px;
    color: var(--primary-purple);
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Pulsing effect for scroll indicator */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(107, 70, 193, 0.15);
    }
}

/* 3D Objects Container */
.objects-container {
    position: relative;
    height: 700px;
    width: 100%;
    flex-shrink: 0;
    min-width: 500px;
}

.object-3d {
    position: absolute;
    transition: transform 0.3s ease;
    cursor: pointer;
    /* GSAP will control visibility and animations */
    z-index: 2;
}

.object-3d:not(.character) {
    /* Position behind character initially and hide until scroll */
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.object-3d.character {
    /* Character visible and has highest priority */
    z-index: 10;
    opacity: 1;
    visibility: visible;
}

.object-3d img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.object-3d:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Character - Main focal point */
.character {
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    /* Remove CSS animation, will be handled by GSAP */
}

.character::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    animation: fogEffect 2s ease-out 1s forwards;
    border-radius: 50%;
    filter: blur(20px);
}

.character::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    width: 300px;
    height: 150px;
    background: radial-gradient(ellipse, rgba(200, 200, 200, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -2;
    opacity: 0;
    animation: shadowEffect 2s ease-out 1.3s forwards;
    border-radius: 50%;
    filter: blur(15px);
}

/* Surrounding objects - Perfect circular arrangement around character */
.lightbulb {
    width: 120px;
    height: 120px;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3s ease-in-out infinite;
}

.planet {
    width: 135px;
    height: 135px;
    top: 15%;
    right: -12%;
    animation: float 4s ease-in-out infinite 0.5s;
}

.atom {
    width: 125px;
    height: 125px;
    top: 56%;
    right: -5%;
    transform: translateY(-50%);
    animation: float 3.5s ease-in-out infinite 1s;
}

.formula {
    width: 150px;
    height: 75px;
    bottom: 18%;
    right: -15%;
    animation: float 4.2s ease-in-out infinite 1.5s;
}

.books {
    width: 135px;
    height: 105px;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3.8s ease-in-out infinite 2s;
}

.test-tubes {
    width: 110px;
    height: 125px;
    bottom: 15%;
    left: 12%;
    animation: float 3.3s ease-in-out infinite 0.8s;
}

.headphones {
    width: 125px;
    height: 125px;
    top: 50%;
    left: -3%;
    transform: translateY(-50%);
    animation: float 4.1s ease-in-out infinite 1.2s;
}

.calculator {
    width: 110px;
    height: 115px;
    top: 18%;
    left: 15%;
    animation: float 3.7s ease-in-out infinite 1.8s;
}

.pencil {
    width: 120px;
    height: 150px;
    top: 32%;
    left: 12%;
    animation: float 3.9s ease-in-out infinite 0.3s;
    transform: rotate(25deg);
}

.telescope {
    width: 120px;
    height: 135px;
    top: 32%;
    right: -7%;
    animation: float 4.3s ease-in-out infinite 2.2s;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Character Swinging In Animation - Disabled, GSAP handles character animation */
/*
@keyframes characterFlyIn {
    0% {
        transform: translate(-150%, 100%) scale(0.8) rotate(-30deg);
        opacity: 0;
    }

    15% {
        opacity: 1;
        transform: translate(-120%, 20%) scale(0.9) rotate(25deg);
    }

    30% {
        transform: translate(-90%, -30%) scale(1.1) rotate(-20deg);
    }

    45% {
        transform: translate(-70%, 10%) scale(1.05) rotate(15deg);
    }

    60% {
        transform: translate(-55%, -20%) scale(1.08) rotate(-10deg);
    }

    75% {
        transform: translate(-52%, -45%) scale(1.02) rotate(8deg);
    }

    85% {
        transform: translate(-51%, -52%) scale(1.03) rotate(-3deg);
    }

    95% {
        transform: translate(-50%, -48%) scale(1.01) rotate(2deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}
*/

/* Fog Effect Animation */
@keyframes fogEffect {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Shadow Effect Animation */
@keyframes shadowEffect {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Character Particles */
.character-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #f4e85b 0%, #ffb347 100%);
    border-radius: 50%;
    opacity: 0;
    animation: particleTrail 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(244, 232, 91, 0.5);
}

.particle-1 {
    top: 80%;
    left: 20%;
    animation-delay: 0.2s;
}

.particle-2 {
    top: 70%;
    left: 25%;
    animation-delay: 0.4s;
}

.particle-3 {
    top: 60%;
    left: 15%;
    animation-delay: 0.6s;
}

.particle-4 {
    top: 75%;
    left: 18%;
    animation-delay: 0.8s;
}

.particle-5 {
    top: 65%;
    left: 22%;
    animation-delay: 1s;
}

/* Particle Trail Animation */
@keyframes particleTrail {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) scale(0);
    }

    25% {
        opacity: 1;
        transform: translateX(-30px) translateY(40px) scale(1);
    }

    50% {
        opacity: 0.9;
        transform: translateX(-60px) translateY(20px) scale(0.9);
    }

    75% {
        opacity: 0.5;
        transform: translateX(-90px) translateY(-10px) scale(0.6);
    }

    100% {
        opacity: 0;
        transform: translateX(-120px) translateY(-30px) scale(0.2);
    }
}

/* Character Settling Animation */
@keyframes characterSettle {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -52%) scale(1.02) rotate(1deg);
    }

    50% {
        transform: translate(-50%, -48%) scale(0.98) rotate(-1deg);
    }

    75% {
        transform: translate(-50%, -51%) scale(1.01) rotate(0.5deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-family: var(--font-header);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(44, 44, 44, 0.7);
    font-weight: 400;
}

.header-objects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.header-objects .object-3d {
    width: 60px;
    height: 60px;
    animation: float 3s ease-in-out infinite;
}

.floating-book {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-lightbulb {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.floating-mail {
    top: 25%;
    left: 20%;
    animation-delay: 0.5s;
}

.floating-phone {
    top: 35%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-phone-app {
    top: 20%;
    right: 25%;
    animation-delay: 0.8s;
}

.floating-download {
    top: 40%;
    left: 25%;
    animation-delay: 1.2s;
}

/* Blog Styles */
.blog-content {
    padding: var(--section-padding);
}

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

.blog-post {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.post-date,
.post-category {
    font-size: 14px;
    color: var(--primary-purple);
    font-weight: 500;
}

.post-category {
    background: rgba(139, 126, 216, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.post-title {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-excerpt {
    color: rgba(44, 44, 44, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.1);
}

.page-btn.next {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
}

/* Contact Styles */
.contact-content {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-form-container h2,
.contact-info h2 {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 126, 216, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(139, 126, 216, 0.3);
    border-radius: 15px;
    background: rgba(248, 249, 250, 0.9);
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(44, 44, 44, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(139, 126, 216, 0.1);
    transform: translateY(-1px);
}

.submit-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(139, 126, 216, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 126, 216, 0.4);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: 1px solid #10b981;
}

.form-message.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: 1px solid #ef4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Background Objects */
.contact-objects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.contact-objects .object-3d {
    position: absolute;
    animation: float 4s ease-in-out infinite;
}

.floating-mail-contact {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-phone-contact {
    top: 25%;
    right: 15%;
    width: 70px;
    height: 70px;
    animation-delay: 1.5s;
}

.floating-calculator-contact {
    bottom: 20%;
    left: 15%;
    width: 75px;
    height: 75px;
    animation-delay: 3s;
}

.floating-lightbulb-contact {
    bottom: 15%;
    right: 20%;
    width: 65px;
    height: 65px;
    animation-delay: 0.8s;
}

.floating-book-contact {
    top: 60%;
    left: 5%;
    width: 60px;
    height: 60px;
    animation-delay: 2.2s;
}

.contact-objects .object-3d img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Contact Info */
.contact-info p {
    color: rgba(44, 44, 44, 0.7);
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 126, 216, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.contact-text h3 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.contact-text p {
    color: rgba(44, 44, 44, 0.7);
    margin: 0;
}

/* Social Links */
.social-links {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-links h3 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 126, 216, 0.2);
}

.social-icon:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 126, 216, 0.3);
}

/* Prototype Page Styles */
.prototype-content {
    padding: var(--section-padding);
}

.prototype-demo {
    text-align: center;
    margin-bottom: 120px;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
}

.prototype-frame {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 126, 216, 0.2);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.prototype-placeholder {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin-bottom: 30px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    z-index: 2;
}

.prototype-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(139, 126, 216, 0.4);
    color: white;
}

.prototype-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(139, 126, 216, 0.5);
}

.prototype-preview {
    max-width: 300px;
    height: auto;
    opacity: 0.8;
    z-index: 1;
}

.prototype-info {
    text-align: left;
}

.prototype-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.prototype-info p {
    color: rgba(44, 44, 44, 0.7);
    font-size: 16px;
}

/* Features Preview */
.features-preview {
    margin-bottom: 120px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 126, 216, 0.1);
    border-radius: 20px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(44, 44, 44, 0.7);
    line-height: 1.6;
}

/* Launch Timeline */
.launch-timeline {
    margin-bottom: 120px;
    text-align: center;
}

.timeline-container {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--accent-pink));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 40px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(139, 126, 216, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.current .timeline-dot {
    background: var(--accent-yellow);
    box-shadow: 0 0 0 4px rgba(244, 232, 91, 0.3);
    animation: pulse 2s infinite;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.timeline-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 15px;
    display: block;
}

.timeline-content p {
    color: rgba(44, 44, 44, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Expectations Section */
.expectations-section {
    margin-bottom: 120px;
    text-align: center;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.expectation-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expectation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
}

.expectation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

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

.expectation-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.expectation-card p {
    color: rgba(44, 44, 44, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Early Access CTA */
.early-access-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.early-access-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-content {
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-purple);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-visual {
    text-align: center;
    z-index: 2;
}

.cta-character {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Download Styles */
.download-content {
    padding: var(--section-padding);
}

.app-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.app-mockup {
    text-align: center;
}

.app-mockup img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.app-features h2 {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(139, 126, 216, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h3 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.feature-text p {
    color: rgba(44, 44, 44, 0.7);
    margin: 0;
}

/* Download Options */
.download-options {
    text-align: center;
    margin-bottom: 80px;
}

.download-options h2 {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text .small {
    font-size: 12px;
    opacity: 0.8;
}

.btn-text .large {
    font-size: 18px;
    font-weight: 600;
}

/* System Requirements */
.system-requirements {
    margin-bottom: 80px;
}

.system-requirements h2 {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 40px;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.requirement-card h3 {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    padding: 8px 0;
    color: rgba(44, 44, 44, 0.7);
    position: relative;
    padding-left: 20px;
}

.requirement-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-section h2 {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.newsletter-section p {
    color: rgba(44, 44, 44, 0.7);
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.8);
}

.newsletter-form button {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 126, 216, 0.3);
}

/* Mobile adjustments for image container system */
@media (max-width: 1024px) {
    .feature-image .image-container {
        height: 350px;
    }

    .image-container .object-3d {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .feature-image .image-container {
        height: 300px;
    }

    .background-image-wrapper {
        border-radius: 15px;
    }

    .image-container .object-3d {
        transform: scale(0.6);
    }

    /* Hero Section Tablet Optimization */
    .objects-container {
        height: 450px;
    }
    
    .character {
        width: 200px;
        height: 200px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
    }
    
    /* 3D objects for tablet */
    .lightbulb { width: 60px; height: 60px; }
    .planet { width: 65px; height: 65px; }
    .atom { width: 55px; height: 55px; }
    .formula { width: 60px; height: 60px; }
    .books { width: 55px; height: 55px; }
    .test-tubes { width: 55px; height: 55px; }
    .headphones { width: 55px; height: 55px; }
    .calculator { width: 55px; height: 55px; }
    .pencil { width: 50px; height: 50px; }
    .telescope { width: 55px; height: 55px; }
}

@media (max-width: 480px) {
    .feature-image .image-container {
        height: 250px;
    }

    .background-image-wrapper {
        border-radius: 12px;
    }

    .image-container .object-3d {
        transform: scale(0.5);
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        padding-top: 60px;
    }
    
    .hero-container {
        gap: 30px;
        padding: 0 15px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        text-align: center;
    }
    
    .objects-container {
        height: 400px;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .character {
        width: 180px;
        height: 180px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
    }
    
    /* Better sized 3D objects for mobile - positioned around character */
    .lightbulb { 
        width: 50px; 
        height: 50px; 
        top: 20%;
        left: 15%;
    }
    .planet { 
        width: 55px; 
        height: 55px; 
        top: 15%;
        right: 20%;
    }
    .atom { 
        width: 45px; 
        height: 45px; 
        top: 40%;
        left: 10%;
    }
    .formula { 
        width: 50px; 
        height: 50px; 
        top: 35%;
        right: 15%;
    }
    .books { 
        width: 45px; 
        height: 45px; 
        bottom: 30%;
        left: 20%;
    }
    .test-tubes { 
        width: 45px; 
        height: 45px; 
        bottom: 25%;
        right: 25%;
    }
    .headphones { 
        width: 45px; 
        height: 45px; 
        bottom: 40%;
        left: 5%;
    }
    .calculator { 
        width: 45px; 
        height: 45px; 
        bottom: 15%;
        right: 10%;
    }
    .pencil { 
        width: 40px; 
        height: 40px; 
        top: 60%;
        left: 25%;
    }
    .telescope { 
        width: 45px; 
        height: 45px; 
        top: 65%;
        right: 30%;
    }
    
    .hero-title {
        font-size: clamp(35px, 8vw, 60px);
        margin-bottom: 15px;
    }
    
    /* Scroll Indicator Mobile */
    .scroll-indicator {
        bottom: 30px;
        gap: 6px;
    }
    
    .scroll-indicator span {
        font-size: 16px;
        font-weight: 700;
    }
    
    .down-arrow {
        font-size: 28px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2;
        margin-left: 0;
        padding-left: 0;
        max-width: 100%;
    }

    .objects-container {
        order: 1;
        height: 400px;
        min-width: auto;
    }

    .character {
        width: 200px;
        height: 200px;
        position: absolute;
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%);
        z-index: 5;
    }

    .object-3d {
        transform: scale(0.4);
    }

    /* Specific 3D objects positioning for mobile */
    .lightbulb { top: 10%; left: 15%; width: 40px; height: 40px; }
    .planet { top: 15%; right: 20%; width: 45px; height: 45px; }
    .atom { top: 75%; left: 10%; width: 35px; height: 35px; }
    .formula { top: 80%; right: 15%; width: 40px; height: 40px; }
    .books { top: 25%; left: 5%; width: 35px; height: 35px; }
    .test-tubes { top: 25%; right: 10%; width: 35px; height: 35px; }
    .headphones { top: 65%; left: 20%; width: 35px; height: 35px; }
    .calculator { top: 70%; right: 25%; width: 35px; height: 35px; }
    .pencil { top: 85%; left: 25%; width: 30px; height: 30px; }
    .telescope { top: 85%; right: 30%; width: 35px; height: 35px; }

    /* Hero Section 3D Objects Mobile */
    .header-objects .object-3d,
    .floating-book,
    .floating-lightbulb,
    .floating-mail,
    .floating-phone,
    .floating-phone-app,
    .floating-download {
        width: 10px !important;
        height: 10px !important;
        transform: scale(0.7) !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact Objects Mobile */
    .contact-objects .object-3d {
        transform: scale(0.6);
    }

    .floating-mail-contact {
        width: 50px;
        height: 50px;
    }

    .floating-phone-contact {
        width: 45px;
        height: 45px;
    }

    .floating-calculator-contact {
        width: 48px;
        height: 48px;
    }

    .floating-lightbulb-contact {
        width: 42px;
        height: 42px;
    }

    .floating-book-contact {
        width: 40px;
        height: 40px;
    }

    .app-preview {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

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

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

    .nav-container {
        padding: 0 20px;
    }



    .audio-player {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .progress-container {
        flex-direction: column;
        gap: 10px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .requirement-card {
        padding: 20px;
    }

    /* Hero Section 3D Objects Extra Small Mobile */
    .header-objects .object-3d,
    .floating-book,
    .floating-lightbulb,
    .floating-mail,
    .floating-phone,
    .floating-phone-app,
    .floating-download {
        width: 10px !important;
        height: 10px !important;
        transform: scale(0.5) !important;
    }

    /* Prototype Page Extra Small Mobile */
    .prototype-frame {
        padding: 15px;
    }

    .prototype-placeholder {
        height: 200px;
    }

    .prototype-play-btn {
        width: 50px;
        height: 50px;
    }

    .prototype-play-btn svg {
        width: 20px;
        height: 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
}

.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Video Section */
.video-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(44, 44, 44, 0.6);
    margin-bottom: 10px;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-inter);
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.video-player {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    background: #000;
    aspect-ratio: 16/9;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Video Overlay (Play Button) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-yellow);
    box-shadow: 0 15px 40px rgba(244, 232, 91, 0.4);
}

.video-play-btn svg {
    color: var(--dark-gray);
    margin-left: 4px;
}

/* Custom Video Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-player:hover .video-controls,
.video-controls.show {
    transform: translateY(0);
}

.video-progress-container {
    margin-bottom: 15px;
}

.video-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.video-progress-fill {
    height: 100%;
    background: var(--primary-purple);
    border-radius: 3px;
    width: 0%;
    position: relative;
    transition: width 0.1s ease;
}

.video-progress-handle {
    width: 14px;
    height: 14px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 126, 216, 0.3);
}

.video-progress-bar:hover .video-progress-handle {
    opacity: 1;
}

.video-control-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-time {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-left: auto;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
}

.volume-control:hover .volume-slider {
    width: 80px;
}

.volume-slider input {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    border-radius: 2px;
    cursor: pointer;
}

.volume-slider input::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-purple);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider input::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-purple);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Video Section Floating Objects */
.video-objects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.video-objects .object-3d {
    width: 50px;
    height: 50px;
    animation: float 4s ease-in-out infinite;
}

.floating-play {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-video {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-sound {
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .video-container {
        margin: 0 -20px;
    }

    .video-player {
        border-radius: 0;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-controls {
        padding: 15px;
    }

    .video-control-buttons {
        gap: 10px;
    }

    .volume-control {
        display: none;
    }

    .video-time {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
    }

    .video-play-btn svg {
        width: 20px;
        height: 20px;
    }

    .control-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Feature Sections Extra Small Mobile */
    .feature-section {
        padding: 60px 0;
    }

    .feature-grid {
        gap: 30px;
        padding: 0 10px;
    }

    .feature-title {
        font-size: clamp(28px, 7vw, 36px);
        margin-bottom: 16px;
    }

    .feature-description {
        font-size: 16px;
        line-height: 1.6;
    }

    /* All Containers Extra Small */
    .conversational-scene,
    .ai-buddy-scene,
    .personalized-scene,
    .bite-sized-visual,
    .smart-content-scene,
    .gamification .gamification-visual {
        width: 85%;
        height: 200px;
        border-radius: 15px;
    }

    /* Character Sizes Extra Small */
    .woman-character {
        width: 100px !important;
    }

    .man-character {
        width: 110px !important;
    }

    .boy-character {
        width: 130px !important;
    }

    .man-learning-character {
        width: 150px !important;
    }

    .wisme-character,
    .wisme-tutor-character {
        width: 80px !important;
    }

    /* Cloud and Object Sizes */
    .cloud1-image,
    .cloud2-image {
        width: 80px !important;
    }

    .phone-device {
        width: 100px !important;
    }

    .math-image {
        width: 60px !important;
    }

    /* Gamification Extra Small */
    .student-1 img,
    .student-2 img {
        width: 100px;
        height: 160px;
    }

    .ai-mascot img {
        width: 80px;
        height: 80px;
    }

    .level-panel-image {
        width: 140px;
    }

    .achievement-panel {
        right: 10px;
        top: 10%;
    }

    /* Floating Elements */
    .bite-sized-visual .floating-book img {
        width: 40px;
    }

    .bite-sized-visual .learning-icon img {
        width: 25px;
    }

    .smart-content-scene .content-image {
        width: 60px;
    }

    .smart-content-scene .content-label {
        font-size: 7px;
        padding: 3px 6px;
    }

    /* Coming Soon Extra Small Mobile */
    .coming-soon-section {
        min-height: 100vh;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .coming-soon-content {
        flex-direction: column;
        min-height: 100vh;
        gap: 0;
        position: relative;
    }

    .coming-soon-info {
        order: 1;
        padding: 30px 15px;
        text-align: center;
        z-index: 10;
        background: transparent;
    }

    .coming-soon-visual {
        order: 2;
        height: auto;
        flex: 1;
        padding-left: 0;
        justify-content: flex-start;
        align-items: flex-end;
        position: relative;
    }

    .coming-soon-title {
        font-family: var(--font-inter);
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .store-button {
        min-width: 200px;
        padding: 12px 20px;
        font-size: 14px;
        justify-content: center;
    }

    /* Nature Scene Extra Small Mobile Layout */
    .nature-scene {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .coming-soon-section .tree-image {
        position: absolute;
        left: 0;
        bottom: 60px;
        transform: none;
        width: 150px !important;
        margin-left: 0;
        z-index: 5;
    }

    .coming-soon-section .wisme-character {
        position: absolute;
        bottom: 60px;
        left: 120px;
        transform: none;
        width: 120px !important;
        z-index: 4;
    }

    .coming-soon-section .wisme-character img {
        max-width: 100px !important;
    }

    .grass-patches {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        padding: 0 15px;
        z-index: 1;
    }

    .grass-1,
    .grass-2,
    .grass-3,
    .grass-4,
    .grass-5,
    .grass-6 {
        position: relative;
        left: auto;
        width: 40px;
        height: auto;
        bottom: 0;
    }

    .grass-1 img,
    .grass-2 img,
    .grass-3 img,
    .grass-4 img,
    .grass-5 img,
    .grass-6 img {
        width: 40px;
        height: auto;
        filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1)) !important;
    }
}

/* Feature Sections */
.feature-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.feature-grid.reverse .feature-visual {
    order: 1;
}

.feature-grid.reverse .feature-content {
    order: 2;
}

.feature-content {
    z-index: 2;
}

.feature-title {
    font-family: var(--font-header);
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 900;
    color: var(--dark-gray);
    margin-bottom: 32px;
    line-height: 1.1;
}

.feature-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(44, 44, 44, 0.8);
    max-width: 520px;
}

.feature-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

.feature-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
    /* Allow 3D objects to overflow */
}

.feature-image .background-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    /* Contain background images */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-image:hover {
    transform: scale(1.02);
}

/* Feature Objects */
.feature-objects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-objects .object-3d {
    width: 60px;
    height: 60px;
    animation: float 4s ease-in-out infinite;
}

/* Conversational Learning Objects */
.floating-microphone {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-laptop {
    bottom: 15%;
    right: 15%;
    width: 80px;
    height: 60px;
    animation-delay: 1.5s;
}

.floating-notes {
    top: 60%;
    left: 5%;
    width: 50px;
    height: 50px;
    animation-delay: 0.8s;
}

/* AI Study Buddy Objects */
.floating-rocket {
    top: 10%;
    right: 10%;
    width: 70px;
    height: 70px;
    animation-delay: 0.5s;
}

.floating-brain {
    bottom: 20%;
    left: 15%;
    width: 65px;
    height: 65px;
    animation-delay: 2s;
}

.floating-stars {
    top: 50%;
    right: 5%;
    width: 55px;
    height: 55px;
    animation-delay: 1.2s;
}

/* Smooth floating animation with reduced movement */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Smarter Content Section */
.smart-content-scene {
    position: relative;
    width: 80%;
    height: 400px;
    margin: 0 auto;
    overflow: visible;
    /* 3D Tilt Transform Setup */
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.smart-content-scene .background-image-wrapper {
    position: relative;
    width: 80%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Contain background images */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.smart-content-scene .scene-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    z-index: 1;
}

.smart-content-scene .scene-bg {
    width: 100%;
    left: -10px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.smart-content-scene .scene-woman {
    position: absolute;
    bottom: -10%;
    left: 15%;
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(55px);
    transform-style: preserve-3d;
}

.smart-content-scene .woman-character {
    width: 290px;
    height: auto;
    z-index: 6;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.smart-content-scene .scene-content1 {
    position: absolute;
    top: 15%;
    left: 10%;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(70px);
    transform-style: preserve-3d;
}

.smart-content-scene .scene-content2 {
    position: absolute;
    top: 20%;
    right: 1%;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(75px);
    transform-style: preserve-3d;
}

.smart-content-scene .content-image {
    width: 100px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    border-radius: 12px;
}

.smart-content-scene .content-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.smart-content-scene .content-label.smart {
    background: linear-gradient(45deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: var(--light-gray);
    font-weight: 800;
}

.smart-content-scene .smart-interactions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 4;
}

.smart-content-scene .interaction-element {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: element-float 3s ease-in-out infinite;
}

.smart-content-scene .interaction-element.element-1 {
    top: 60%;
    left: 15%;
    animation-delay: 0s;
}

.smart-content-scene .interaction-element.element-2 {
    top: 25%;
    right: 35%;
    animation-delay: 1s;
}

.smart-content-scene .interaction-element.element-3 {
    bottom: 15%;
    left: 50%;
    animation-delay: 2s;
}

.smart-content-scene .element-content {
    font-size: 20px;
}

.smart-content-scene .content-transition {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.smart-content-scene .transition-arrow {
    font-size: 32px;
    color: #7c3aed;
    animation: arrow-pulse 2s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.smart-content-scene .bubble-content {
    font-size: 20px;
}

/* Smarter Content Animations */
@keyframes content-float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

@keyframes element-float {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

@keyframes arrow-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Gamification Section */
.gamification .gamification-visual {
    position: relative;
    width: 80%;
    height: 400px;
    border-radius: 90px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    /* 3D Tilt Transform Setup */
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.gamification .gamification-visual .scene-background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 90px;
    overflow: hidden;
}

.gamification .gamification-visual .scene-bg {
    width: 140%;
    height: 100%;
    left: -10px;
    object-fit: cover;
    border-radius: 90px;
    display: block;
}

.students-group {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 3;
}

.student-1,
.student-2 {
    position: absolute;
}

.student-1 {
    left: -4em;
    bottom: -5em;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(50px);
    transform-style: preserve-3d;
}

.student-2 {
    left: 190px;
    bottom: -5em;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(50px);
    transform-style: preserve-3d;
}

.student-1 img,
.student-2 img {
    width: 180px;
    height: 300px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.ai-mascot {
    position: absolute;
    left: 120px;
    bottom: 0px;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(70px);
    transform-style: preserve-3d;
}

.ai-mascot img {
    width: 160px;
    height: 160px;
    filter: drop-shadow(0 5px 15px rgba(139, 126, 216, 0.3));
}

.achievement-panel {
    position: absolute;
    right: 60px;
    top: -30%;
    transform: translateY(-50%) translateZ(80px);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform-style: preserve-3d;
}

.level-panel-image {
    width: 290px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(139, 126, 216, 0.3));
    border-radius: 16px;
}



.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-coins .coin {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: float 3s ease-in-out infinite;
    transform: translateZ(90px);
    transform-style: preserve-3d;
}

.floating-coins .coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floating-coins .coin:nth-child(1) {
    top: -15%;
    right: 10%;
    animation-delay: 0s;
}

.floating-coins .coin:nth-child(2) {
    top: -10%;
    left: 8%;
    animation-delay: 1s;
}

.floating-coins .coin:nth-child(3) {
    bottom: -10%;
    left: 44%;
    animation-delay: 2s;
}

/* Additional Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes chartGrow {
    0% {
        width: 0%;
    }

    50% {
        width: 75%;
    }

    100% {
        width: 0%;
    }
}

/* Image Container System */
.image-container {
    position: relative;
    overflow: visible;
    /* Allow 3D objects to overflow */
    z-index: 1;
}

.background-image-wrapper {
    position: relative;
    overflow: hidden;
    /* Contain background images */
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.image-container .object-3d {
    position: absolute;
    z-index: 2;
    /* Ensure 3D objects are above background */
    pointer-events: none;
    /* Optional: make objects non-interactive if needed */
}

/* Feature sections with new container structure */
.feature-image {
    position: relative;
    overflow: visible;
    /* Allow 3D objects to overflow the feature image area */
}

.feature-image .image-container {
    width: 100%;
    height: 400px;
    /* Adjust as needed */
}

.feature-image .background-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    position: relative;
    background: var(--gradient-bg);
    overflow: hidden;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-section .section-title {
    font-family: var(--font-header);
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 900;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.1;
}

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

.testimonial-card {
    background: var(--light-gray);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-text {
    flex: 1;
    margin-bottom: 32px;
}

.testimonial-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    position: relative;
}

.testimonial-text p::before {
    content: '"';
    font-size: 64px;
    color: var(--primary-purple);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-gray);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: rgba(44, 44, 44, 0.6);
    font-weight: 500;
}

/* Testimonial Decorations */
.testimonial-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-quote {
    position: absolute;
    font-size: 120px;
    color: var(--primary-purple);
    opacity: 0.05;
    font-family: serif;
    animation: float 6s ease-in-out infinite;
}

.floating-quote-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-quote-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.floating-star {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: twinkle 3s ease-in-out infinite;
}

.floating-star-1 {
    top: 25%;
    right: 20%;
    animation-delay: 0s;
}

.floating-star-2 {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

.floating-star-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

.floating-heart {
    position: absolute;
    top: 45%;
    right: 10%;
    font-size: 20px;
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.coming-soon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 700px;
    position: relative;
}

.coming-soon-visual {
    flex: 1;
    position: relative;
    height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 80px;
}

.nature-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.coming-soon-section .tree-image {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 10;
    margin-left: -500px;
    width: 350px !important;
    height: auto;
}

.coming-soon-section .tree-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.grass-patches {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 20px;
}

.grass-1 {
    position: absolute;
    bottom: -10px;
    left: -100%;
    width: 480px;
    height: auto;
}

.grass-2 {
    position: absolute;
    bottom: -15px;
    left: -5%;
    width: 480px;
    height: auto;
}

.grass-3 {
    position: absolute;
    bottom: -19px;
    left: 85%;
    width: 480px;
    height: auto;
}

.grass-4 {
    position: absolute;
    bottom: -25px;
    left: 180%;
    width: 480px;
    height: auto;
}

.grass-5 {
    position: absolute;
    bottom: -10px;
    left: 275%;
    width: 480px;
    height: auto;
}

.grass-6 {
    position: absolute;
    bottom: -10px;
    left: 370%;
    width: 480px;
    height: auto;
}

.grass-1 img,
.grass-2 img,
.grass-3 img,
.grass-4 img,
.grass-5 img,
.grass-6 img {
    width: 105%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgb(180, 207, 159));
}

/* .grass-3 img {
    filter: drop-shadow(0 8px 20px rgb(58, 122, 40)) drop-shadow(0 4px 8px rgb(40, 125, 39)) drop-shadow(0 2px 4px rgba(69, 181, 32, 0.05)) !important;
}

.grass-4 img {
    filter: drop-shadow(0 12px 30px rgb(58, 122, 40)) drop-shadow(0 6px 15px rgb(40, 125, 39)) drop-shadow(0 3px 8px rgba(69, 181, 32, 0.05)) !important;
}

.grass-5 img {
    filter: drop-shadow(0 7px 20px rgb(58, 122, 40)) drop-shadow(0 3px 8px rgb(40, 125, 39)) drop-shadow(0 1px 4px rgba(69, 181, 32, 0.05)) !important;
}

.grass-6 img {
    filter: drop-shadow(0 8px 24px rgb(223, 224, 222)) drop-shadow(0 4px 11px rgb(40, 125, 39)) drop-shadow(0 2px 5px rgba(69, 181, 32, 0.05)) !important;
} */

.coming-soon-section .wisme-character {
    position: absolute;
    bottom: 50px;
    z-index: 4;
    width: 250px !important;
    left: -100px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-section .wisme-character img {
    width: 100% !important;
    height: auto !important;
    max-width: 210px !important;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.coming-soon-info {
    flex: 1;
    text-align: center;
    padding: 80px 40px;
    z-index: 5;
}

.coming-soon-title {
    font-family: var(--font-inter);
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 40px;
    margin-top: -190px;
    line-height: 1.2;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.store-button.app-store {
    background: #000;
}

.store-button.google-play {
    background: #000;
}

.store-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-icon svg {
    width: 100%;
    height: 100%;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-name {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

/* Footer */
.footer {
    background: #2C2C2C;
    padding: 80px 0;
    position: relative;
    min-height: 200px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2C2C2C;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.medium:hover {
    background: #00ab6c;
    color: white;
}

.social-link.gmail:hover {
    background: #ea4335;
    color: white;
}

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

@keyframes sway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(2deg);
    }
}



/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .testimonial-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {

    /* Feature Sections Mobile */
    .feature-section {
        padding: 80px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Mobile: Image first, then content for ALL sections */
    .feature-visual {
        order: 1;
    }

    .feature-content {
        order: 2;
    }

    .feature-grid.reverse .feature-visual {
        order: 1;
    }

    .feature-grid.reverse .feature-content {
        order: 2;
    }

    .feature-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 20px;
    }

    .feature-description {
        font-size: 18px;
        max-width: 100%;
    }

    /* All Feature Containers Mobile */
    .conversational-scene,
    .ai-buddy-scene,
    .personalized-scene,
    .bite-sized-visual,
    .smart-content-scene,
    .gamification .gamification-visual {
        width: 90%;
        height: 250px;
        margin: 0 auto;
    }

    /* Conversational Learning Mobile */
    .scene-desk {
        width: 90%;
        bottom: -10%;
    }

    .scene-woman {
        bottom: 0%;
        left: 5%;
    }

    .woman-character {
        width: 120px;
    }

    .scene-man {
        bottom: 5%;
        right: 5%;
    }

    .man-character {
        width: 130px;
    }

    .audio-waves {
        bottom: 25%;
        gap: 3px;
    }

    .wave {
        width: 3px;
    }

    /* AI Study Buddy Mobile */
    .scene-cloud1 {
        top: 0%;
        left: -5%;
    }

    .cloud1-image {
        width: 120px;
    }

    .scene-cloud2 {
        top: 15%;
        right: 5%;
    }

    .cloud2-image {
        width: 100px;
    }

    .scene-boy {
        bottom: -5%;
        left: 0%;
    }

    .boy-character {
        width: 160px;
    }

    .scene-wisme {
        bottom: 25%;
        right: 5%;
    }

    .wisme-character {
        width: 200px;
    }

    .knowledge-icon {
        font-size: 18px;
    }

    /* Personalized Reinforcement Mobile */
    .scene-man-learning {
        bottom: -15%;
        left: 0%;
    }

    .man-learning-character {
        width: 200px;
    }

    .scene-phone {
        bottom: 20%;
        left: 50%;
    }

    .phone-device {
        width: 120px;
    }

    .scene-wisme-tutor {
        bottom: 45%;
        right: -5%;
    }

    .wisme-tutor-character {
        width: 100px;
    }

    .math-image {
        width: 80px;
    }

    .math-element.math-1 {
        top: 5%;
        left: 0%;
    }

    .math-element.math-2 {
        top: 40%;
        right: -5%;
    }

    .math-element.math-3 {
        top: 70%;
        left: 0%;
    }

    /* Bite-Sized Episodes Mobile */
    .bite-sized-visual .running-character {
        bottom: 15%;
        left: 35%;
    }

    .bite-sized-visual .running-character img {
        width: 120px;
    }

    .bite-sized-visual .floating-book img {
        width: 60px;
    }

    .bite-sized-visual .learning-icon img {
        width: 30px;
    }

    .bite-sized-visual .step-platform {
        bottom: 0%;
        right: 5%;
        width: 60%;
    }

    .bite-sized-visual .step {
        width: 20px;
    }

    /* Smart Content Mobile */
    .smart-content-scene .scene-woman {
        bottom: -20%;
        left: 10%;
    }

    .smart-content-scene .woman-character {
        width: 200px;
    }

    .smart-content-scene .content-image {
        width: 80px;
    }

    .smart-content-scene .scene-content1 {
        top: 10%;
        left: 5%;
    }

    .smart-content-scene .scene-content2 {
        top: 15%;
        right: -5%;
    }

    .smart-content-scene .content-label {
        font-size: 8px;
        padding: 4px 8px;
    }

    /* Gamification Mobile */
    .students-group {
        left: 20px;
        bottom: 20px;
    }

    .student-1 {
        left: -2em;
        bottom: -3em;
    }

    .student-2 {
        left: 100px;
        bottom: -3em;
    }

    .student-1 img,
    .student-2 img {
        width: 120px;
        height: 200px;
    }

    .ai-mascot {
        left: 80px;
        bottom: -10px;
    }

    .ai-mascot img {
        width: 100px;
        height: 100px;
    }

    .achievement-panel {
        right: 20px;
        top: 15%;
    }

    .level-panel-image {
        width: 180px;
    }

    /* Coming Soon Section Mobile */
    .coming-soon-section {
        min-height: 100vh;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .coming-soon-content {
        flex-direction: column;
        min-height: 100vh;
        gap: 0;
        position: relative;
    }

    .coming-soon-info {
        order: 1;
        padding: 40px 20px;
        text-align: center;
        z-index: 10;
        background: transparent;
    }

    .coming-soon-visual {
        order: 2;
        height: auto;
        flex: 1;
        padding-left: 0;
        justify-content: flex-start;
        align-items: flex-end;
        position: relative;
    }

    .coming-soon-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .store-button {
        min-width: 250px;
        justify-content: center;
    }

    /* Nature Scene Mobile Layout */
    .nature-scene {
        position: relative;
        width: 100%;
        height: 100%;
        left: -200px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .coming-soon-section .tree-image {
        position: absolute;
        bottom: -80px;
        transform: none;
        width: 200px !important;
        margin-left: 0;
        z-index: 5;
    }

    .coming-soon-section .wisme-character {
        position: absolute;
        bottom: -80px;
        left: 150px;
        transform: none;
        width: 150px !important;
        z-index: 4;
    }

    .coming-soon-section .wisme-character img {
        max-width: 120px !important;
    }

    .grass-patches {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        padding: 0 20px;
        z-index: 1;
    }

    .grass-1,
    .grass-2,
    .grass-3,
    .grass-4,
    .grass-5,
    .grass-6 {
        position: relative;
        left: auto;
        width: 300px;
        height: auto;
        bottom: 0;
    }

    .grass-1 img,
    .grass-2 img,
    .grass-3 img,
    .grass-4 img,
    .grass-5 img,
    .grass-6 img {
        width: 300px;
        height: auto;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-section .section-header {
        margin-bottom: 60px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text p {
        font-size: 16px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    .floating-quote {
        font-size: 80px;
    }

    .personalized-visual,
    .bite-sized-visual,
    .smart-content-visual,
    .gamification-visual {
        height: 350px;
    }

    .mobile-screen {
        width: 150px;
        height: 220px;
        padding: 15px;
    }

    .content-comparison {
        flex-direction: column;
        gap: 10px;
    }

    .static-content,
    .smart-content-panel {
        width: 140px;
        height: 180px;
    }

    .achievement-panel {
        width: 200px;
        height: 240px;
        padding: 15px;
    }

    .character-studying img,
    .running-character img,
    .presenter-character img {
        width: 80px;
        height: 100px;
    }

    /* Coming Soon responsive */
    .coming-soon-section {
        min-height: 100vh;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .coming-soon-content {
        flex-direction: column;
        min-height: 100vh;
        gap: 0;
        position: relative;
    }

    .coming-soon-info {
        order: 1;
        padding: 40px 20px;
        text-align: center;
        z-index: 10;
        background: transparent;
    }

    .coming-soon-visual {
        order: 2;
        height: auto;
        flex: 1;
        padding-left: 0;
        justify-content: flex-start;
        align-items: flex-end;
        position: relative;
    }

    .coming-soon-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .store-button {
        min-width: 250px;
        justify-content: center;
    }

    /* Nature Scene Mobile Layout */
    .nature-scene {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .coming-soon-section .tree-image {
        position: absolute;
        left: 0;
        bottom: 80px;
        transform: none;
        width: 200px !important;
        margin-left: 0;
        z-index: 5;
    }

    .coming-soon-section .wisme-character {
        position: absolute;
        bottom: 80px;
        left: 150px;
        transform: none;
        width: 150px !important;
        z-index: 4;
    }

    .coming-soon-section .wisme-character img {
        max-width: 120px !important;
    }

    .grass-patches {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        padding: 0 20px;
        z-index: 1;
    }

    .grass-1,
    .grass-2,
    .grass-3,
    .grass-4,
    .grass-5,
    .grass-6 {
        position: relative;
        left: auto;
        width: 60px;
        height: auto;
        bottom: 0;
    }

    .grass-1 img,
    .grass-2 img,
    .grass-3 img,
    .grass-4 img,
    .grass-5 img,
    .grass-6 img {
        width: 60px;
        height: auto;
    }



    /* Footer responsive */
    .social-media {
        gap: 15px;
    }

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

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

    /* Prototype Page Mobile */
    .prototype-frame {
        padding: 20px;
    }

    .prototype-placeholder {
        height: 250px;
    }

    .prototype-play-btn {
        width: 70px;
        height: 70px;
    }

    .prototype-preview {
        max-width: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-dot {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-content {
        margin-left: 60px;
        text-align: left !important;
        padding: 20px !important;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expectation-card {
        padding: 25px 20px;
    }

    .early-access-cta {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 30px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-character {
        max-width: 200px;
    }
}

/* Conversational Learning Scene */
.conversational-scene {
    position: relative;
    width: 80%;
    height: 400px;
    margin: 0 auto;
    overflow: visible;
    /* Allow 3D objects to overflow */
}

.conversational-scene .background-image-wrapper {
    position: relative;
    width: 80%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Contain background images */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.scene-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 90px;
    overflow: hidden;
}

.scene-bg {
    width: 120%;
    height: 120%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.scene-desk {
    position: absolute;
    bottom: -5%;
    transform: translateX(-50%) translateZ(30px);
    z-index: 3;
    width: 105%;
    max-width: 450px;
}

.desk-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scene-woman {
    position: absolute;
    bottom: 5%;
    left: 8%;
    z-index: 2;
    /* Hidden initially - will emerge on scroll */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.3);
}

.woman-character {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.scene-man {
    position: absolute;
    bottom: 10%;
    right: 8%;
    z-index: 1;
    /* Hidden initially - will emerge on scroll */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.3);
}

.man-character {
    width: 190px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Conversation Bubbles */
.conversation-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.speech-bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: bubble-float 4s ease-in-out infinite;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.9);
}

.bubble-content {
    font-size: 20px;
}

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

.bubble-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.bubble-3 {
    top: 35%;
    left: 45%;
    animation-delay: 3s;
}

/* Audio Waves */
.audio-waves {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%) translateZ(65px);
    display: flex;
    align-items: end;
    gap: 4px;
    z-index: 5;
    transform-style: preserve-3d;
}

.wave {
    width: 4px;
    background: linear-gradient(to top, var(--primary-purple), var(--accent-yellow));
    border-radius: 2px;
    animation: wave-animation 1s ease-in-out infinite;
}

.wave-1 {
    height: 20px;
    animation-delay: 0s;
}

.wave-2 {
    height: 35px;
    animation-delay: 0.1s;
}

.wave-3 {
    height: 50px;
    animation-delay: 0.2s;
}

.wave-4 {
    height: 35px;
    animation-delay: 0.3s;
}

.wave-5 {
    height: 20px;
    animation-delay: 0.4s;
}

/* Animations */
@keyframes gentle-bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes bubble-float {

    0%,
    100% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }

    20%,
    80% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes wave-animation {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1.2);
    }
}

/* AI Study Buddy Scene */
.ai-buddy-scene {
    position: relative;
    width: 80%;
    height: 400px;
    margin: 0 auto;
    overflow: visible;
    /* Allow 3D objects to overflow */
}

.ai-buddy-scene .background-image-wrapper {
    position: relative;
    width: 90%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Contain background images */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.ai-buddy-scene .scene-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 90px;
    overflow: hidden;
}

.ai-buddy-scene .scene-bg {
    width: 140%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.scene-cloud1 {
    position: absolute;
    top: 5%;
    left: 0%;
    z-index: 1;
    animation: cloud-drift 8s ease-in-out infinite;
}

.cloud1-image {
    width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

.scene-cloud2 {
    position: absolute;
    top: 25%;
    right: 10%;
    z-index: 1;
    animation: cloud-drift 10s ease-in-out infinite reverse;
}

.cloud2-image {
    width: 160px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
}

.scene-boy {
    position: absolute;
    bottom: 1%;
    left: 4%;
    transform: translateX(-50%) translateZ(50px);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform-style: preserve-3d;
}

.boy-character {
    width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.scene-wisme {
    position: absolute;
    bottom: 30%;
    right: 10%;
    transform: translateX(0%) translateZ(70px);
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform-style: preserve-3d;
}

.wisme-character {
    width: 260px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0, 8px, 16px rgba(103, 58, 183, 0.3));
}

/* AI Interaction Bubbles */
.ai-interactions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.interaction-bubble {
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(103, 58, 183, 0.3);
    animation: ai-bubble-float 5s ease-in-out infinite;
}

.interaction-bubble .bubble-content {
    font-size: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.interaction-bubble.bubble-1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.interaction-bubble.bubble-2 {
    top: 12%;
    right: 25%;
    animation-delay: 1.5s;
}

.interaction-bubble.bubble-3 {
    top: 35%;
    left: 15%;
    animation-delay: 3s;
}

/* Knowledge Icons */
.knowledge-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.knowledge-icon {
    position: absolute;
    font-size: 24px;
    animation: knowledge-float 6s ease-in-out infinite;
    opacity: 0.6;
}

.knowledge-icon.icon-1 {
    top: 65%;
    left: 15%;
    animation-delay: 0s;
}

.knowledge-icon.icon-2 {
    top: 55%;
    right: 20%;
    animation-delay: 2s;
}

.knowledge-icon.icon-3 {
    top: 75%;
    left: 75%;
    animation-delay: 4s;
}

/* Additional Animations for AI Study Buddy */
@keyframes cloud-drift {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(15px);
    }
}

@keyframes wisme-float {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes ai-bubble-float {

    0%,
    100% {
        opacity: 0;
        transform: translateY(25px) scale(0.7);
    }

    20%,
    80% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes knowledge-float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.8;
    }
}

/* Personalized Reinforcement Scene */
.personalized-scene {
    position: relative;
    width: 80%;
    height: 400px;
    margin: 0 auto;
    overflow: visible;
    /* 3D Tilt Transform Setup */
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.personalized-scene .background-image-wrapper {
    position: relative;
    width: 80%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Contain background images */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.personalized-scene .scene-background {
    position: absolute;
    top: 0;
    width: 130%;
    height: 100%;
    z-index: 0;
    border-radius: 20px;
    overflow: hidden;
}

.personalized-scene .scene-bg {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.scene-man-learning {
    position: absolute;
    bottom: -1%;
    left: 15%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(50px);
    transform-style: preserve-3d;
}

.man-learning-character {
    width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.scene-phone {
    position: absolute;
    bottom: 25%;
    left: 45%;
    transform: translateX(-50%) translateZ(80px);
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform-style: preserve-3d;
}

.phone-device {
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.scene-wisme-tutor {
    position: absolute;
    bottom: 50%;
    right: 1%;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(70px);
    transform-style: preserve-3d;
}

.wisme-tutor-character {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0, 8px, 16px rgba(103, 58, 183, 0.3));
}

/* Mathematical Elements */
.math-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.math-element {
    position: absolute;
    animation: math-float 6s ease-in-out infinite;
}

.math-image {
    width: 130px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.math-element.math-1 {
    top: 1%;
    left: 5%;
    animation-delay: 0s;
}

.math-element.math-2 {
    top: 48%;
    right: 1%;
    animation-delay: 2s;
}

.math-element.math-3 {
    top: 75%;
    left: 3%;
    animation-delay: 4s;
}

/* Learning Progress Indicators */
.learning-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.progress-indicator {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
    animation: progress-pulse 3s ease-in-out infinite;
}

.progress-content {
    font-size: 18px;
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.progress-indicator.indicator-1 {
    top: 25%;
    right: 8%;
    animation-delay: 0s;
}

.progress-indicator.indicator-2 {
    top: 45%;
    left: 75%;
    animation-delay: 1s;
}

.progress-indicator.indicator-3 {
    top: 70%;
    right: 40%;
    animation-delay: 2s;
}

/* Adaptive Learning Waves */
.adaptive-waves {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    gap: 6px;
    z-index: 1;
}

.adaptive-wave {
    width: 5px;
    background: linear-gradient(to top, var(--primary-purple), var(--accent-yellow));
    border-radius: 3px;
    animation: adaptive-wave-animation 2s ease-in-out infinite;
}

.adaptive-wave.wave-1 {
    height: 25px;
    animation-delay: 0s;
}

.adaptive-wave.wave-2 {
    height: 40px;
    animation-delay: 0.2s;
}

.adaptive-wave.wave-3 {
    height: 35px;
    animation-delay: 0.4s;
}

.adaptive-wave.wave-4 {
    height: 20px;
    animation-delay: 0.6s;
}

/* Additional Animations for Personalized Reinforcement */
@keyframes phone-pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes wisme-tutor-float {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes math-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-12px) rotate(5deg);
        opacity: 1;
    }
}

@keyframes progress-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes adaptive-wave-animation {

    0%,
    100% {
        transform: scaleY(0.6);
        opacity: 0.6;
    }

    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}

/* Bite-Sized Episodes Section */
.bite-sized-visual {
    position: relative;
    width: 80%;
    height: 400px;
    margin: 0 auto;
    overflow: visible;
    /* Allow 3D objects to overflow */
}

.bite-sized-visual .background-image-wrapper {
    position: relative;
    width: 80%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Contain background images */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.bite-sized-visual .scene-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    z-index: 1;
}

.bite-sized-visual .scene-bg {
    width: 140%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.bite-sized-visual .running-character {
    position: absolute;
    bottom: 18%;
    left: 15%;
    z-index: 5;
    opacity: 1;
    visibility: visible;
    scale: 1;
}

.bite-sized-visual .running-character img {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.bite-sized-visual .floating-books {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.bite-sized-visual .floating-book {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(70px);
    transform-style: preserve-3d;
}

.bite-sized-visual .floating-book img {
    width: 80px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.bite-sized-visual .floating-book.book-1 {
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.bite-sized-visual .floating-book.book-2 {
    top: 25%;
    left: 75%;
    animation-delay: 1s;
}

.bite-sized-visual .floating-book.book-3 {
    bottom: 20%;
    right: -15%;
    animation-delay: 2s;
}

.bite-sized-visual .learning-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 4;
}

.bite-sized-visual .learning-icon {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    scale: 0.3;
    transform: translateZ(80px);
    transform-style: preserve-3d;
}

.bite-sized-visual .learning-icon img {
    width: 70px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.bite-sized-visual .learning-icon.calender {
    top: -5%;
    right: 15%;
    animation-delay: 0.5s;
}

.bite-sized-visual .learning-icon.lightbulb {
    top: 70%;
    left: 5%;
    animation-delay: 1.5s;
}

.bite-sized-visual .learning-icon.stare {
    bottom: 6%;
    left: 25%;
    opacity: 1;
    visibility: visible;
}

.bite-sized-visual .learning-icon.stare img {
    width: 300px;
    height: auto;
}

/* Bite-Sized Episodes Animations */
@keyframes book-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Prototype Page Styles */
.prototype-content {
    padding: var(--section-padding);
}

.prototype-demo {
    text-align: center;
    margin-bottom: 120px;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
}

.prototype-frame {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 126, 216, 0.2);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.prototype-placeholder {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin-bottom: 30px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    z-index: 2;
}

.prototype-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(139, 126, 216, 0.4);
    color: white;
}

.prototype-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(139, 126, 216, 0.5);
}

.prototype-preview {
    max-width: 300px;
    height: auto;
    opacity: 0.8;
    z-index: 1;
}

.prototype-info {
    text-align: left;
}

.prototype-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.prototype-info p {
    color: rgba(44, 44, 44, 0.7);
    font-size: 16px;
}

/* Features Preview */
.features-preview {
    margin-bottom: 120px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 126, 216, 0.1);
    border-radius: 20px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(44, 44, 44, 0.7);
    line-height: 1.6;
}

/* Launch Timeline */
.launch-timeline {
    margin-bottom: 120px;
    text-align: center;
}

.timeline-container {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--accent-pink));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 40px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(139, 126, 216, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.current .timeline-dot {
    background: var(--accent-yellow);
    box-shadow: 0 0 0 4px rgba(244, 232, 91, 0.3);
    animation: pulse 2s infinite;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.timeline-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 15px;
    display: block;
}

.timeline-content p {
    color: rgba(44, 44, 44, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Expectations Section */
.expectations-section {
    margin-bottom: 120px;
    text-align: center;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.expectation-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expectation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
}

.expectation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

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

.expectation-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.expectation-card p {
    color: rgba(44, 44, 44, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Early Access CTA */
.early-access-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.early-access-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-content {
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-purple);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-visual {
    text-align: center;
    z-index: 2;
}

.cta-character {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}