:root {
    --primary: #5A7FA0;
    --primary-dark: #4A6A8A;
    --accent: #6B9F7F;
    --text-dark: #505d74;
    --text-medium: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F5F7FA;
    --bg-white: #ffffff;
    --border: #E5E7EB;
}

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

body {
    font-family: "Sans", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* ========================================
   NAVIGATION
   ======================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    /* border-bottom: 1px solid var(--border); */
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo-item {
    margin-right: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 100px;
    height: 60px;
    background-image: url(assets/images/f99c806110e282b8e673a0203e4969c8.png);
    background-size: cover;
    background-position: center;
    /* border-radius: 8px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

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

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: var(--bg-light);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(90, 127, 160, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
}

.nav-right {
    position: absolute;
    right: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* ========================================
   HERO SECTION WITH ANIMATION
   ======================================== */

.page-three {
    position: relative;
    background: transparent;
    z-index: 100;
}


/* Second Screen Wrapper */

.page-three-wrapper {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.page-three-wrapper.visible {
    opacity: 1;
}


/* Animation Section - contains threejs and side-image */

.animation-section {
    position: relative;
    width: 100%;
    height: 100vh;
}


/* Three.js canvas container - Left 50% - ON TOP */

.threejs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
}

.webgl {
    position: absolute;
    top: 0;
    left: 0;
    outline: none;
}


/* Side image container - Right 50% - BEHIND Three.js */

.side-image-container {
    margin-top: 5rem;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.side-content-wrapper {
    position: absolute;
    max-height: 100%;
    /*display: flex;
	   flex-direction: column;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    height: auto;
    object-fit: contain;
    left: 0;
}

.side-image-container img {
    max-width: 785px;
    max-height: 100%;
    width: 85%;
    height: auto;
    object-fit: contain;
    display: block;
}

.info-text {
    text-align: center;
    max-width: 785px;
    font-size: 1rem;
    line-height: 1.4;
    width: 80%;
    /*padding-left: 10%;
	   padding-right: 10%;*/
    color: #947c9b;
}

.app-store-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 80%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 15px;
}

.app-store-buttons a {
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-store-buttons a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.app-store-buttons img {
    height: 40px;
    width: auto;
    max-width: none;
    max-height: none;
}


/* Bottom Container with 4 Horizontal Divs */

.bottom-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1568px;
    z-index: 3;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 100px;
}

.text-box {
    padding: 1.2rem 1.2rem 1.5rem 1.5rem;
    width: 22%;
    background: rgba(252, 250, 238, 0.4);
    border-radius: 20px;
    box-shadow: 1px 1px 19px 1px rgba(198, 148, 147, 0.25);
}

h3 {
    font-size: 1.2rem;
    padding-bottom: 10px;
    font-weight: 600;
}

.text-box h3 {
    /*text-align: center;*/
    color: var(--text-dark);
    padding: 0.6rem 0 0.8rem 0;
    font-weight: 600;
}

.text-box p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-medium);
}

.text-box-symbol {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
    max-width: 30px;
    margin: auto;
    font-weight: bold;
}


/* ========================================
	     RESPONSIVE - TABLET
	     ======================================== */

@media (max-width: 768px) {
    .parallax-container {
        height: 60vh;
        min-height: 400px;
    }
    .parallax-spacer {
        height: calc(40vh + 300px);
    }
    .spacer {
        height: calc(10vw);
        pointer-events: none;
    }
    .doudou-in-parallax {
        width: 50%;
        max-width: 300px;
    }
    .about-text {
        flex-direction: column;
        gap: 20px;
    }
    .about-text .column {
        width: 100%;
    }
    .page-two {
        width: 90%;
    }
    .page-two h2 {
        font-size: 1.3rem;
    }
    .page-two p {
        font-size: 0.95rem;
    }
    /* Stack vertically on mobile */
    .page-three-wrapper {
        min-height: auto;
    }
    .animation-section {
        height: auto;
        min-height: 100vh;
    }
    .threejs-container {
        position: relative;
        width: 100%;
        height: 50vh;
    }
    .side-image-container {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 50vh;
    }
    .bottom-container {
        flex-direction: column;
        padding: 30px 20px;
        width: 90%;
        gap: 20px;
    }
    .text-box-symbol {
        transform: rotate(90deg);
        padding: 20px 0;
    }
}


/* Side content container - Right 50% */

.side-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
}

.hero-text {
    width: 100%;
}

.hero-text .subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-text h1 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text .description {
    color: var(--text-medium);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--text-dark);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(30, 41, 59, 0.3);
}

.play-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-btn:hover .play-icon {
    background: var(--text-dark);
    color: white;
}


/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}


/* .section-header h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
} */

.rainbow-text {
    background: var(--text-dark);
    background-color: var(--text-dark);
    /* background: linear-gradient(90deg, #bc8d98, #846099, #bc8d98); */
    /*background: linear-gradient(90deg, #90749e, #c69493, #90749e);*/
    background-size: 57%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h2 {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(3rem, 4vw, 3.5rem);
    font-weight: 800;
    margin: 0;
    padding-top: 5rem;
    padding-bottom: 2rem;
    text-align: center;
    line-height: 1;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.icon-gradient-1 {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
}

.icon-gradient-2 {
    background: linear-gradient(135deg, #14b8a6 0%, #5eead4 100%);
}

.icon-gradient-3 {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.icon-gradient-4 {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.icon-gradient-5 {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.icon-gradient-6 {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.feature-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
}


/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    padding: 100px 0;
    background: linear-gradient( 180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-card h3 {
    text-align: center;
}

.step-card {
    text-align: left;
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

ul {
    padding: 0 6rem;
}

.step-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: auto;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.step-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
}

.step-card p {
    color: var(--text-medium);
}


/* ========================================
   APP PREVIEW SECTION WITH SCROLL HIJACKING
   ======================================== */

.app-preview {
    min-height: 400vh;
    position: relative;
    background: var(--bg-white);
}

.preview-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
}

.preview-text {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.preview-text-left {
    text-align: right;
}

.preview-text-right {
    text-align: left;
}

.preview-text h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.preview-text p {
    color: var(--text-medium);
    font-size: 1.125rem;
    line-height: 1.8;
}

.preview-visual {
    display: flex;
    justify-content: center;
    z-index: 10;
}

.phone-mockup {
    width: 350px;
    position: relative;
    z-index: 100;
}

.phone-screen {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    overflow: hidden;
    z-index: 1;
    filter: drop-shadow(0px 30px 30px rgba(35, 10, 0, 0.4));
}

.phone-frame {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

#phone-screenshot {
    transition: opacity 0.5s ease;
    height: 100%;
    object-fit: cover;
}

.phone-screen-back {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    overflow: hidden;
}

#phone-screenshot-back {
    height: 100%;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.progress-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(90, 127, 160, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--primary-dark);
}


/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: 100px 0;
    background: linear-gradient( 180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: var(--primary);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-switch::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    top: 4px;
    right: 4px;
    transition: all 0.3s;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(90, 127, 160, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.875rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card .description {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.price {
    font-family: "Outfit", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 0;
    text-align: left;
    display: inline-block;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.5;
}

.features-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}


/* ========================================
   DOWNLOAD SECTION
   ======================================== */

.download {
    padding: 100px 0;
    background: var(--bg-white);
}

.download .app-store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 3rem auto 0;
    padding: 0;
    max-width: 100%;
}

.download .app-store-buttons a {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.download .app-store-buttons a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.download .app-store-buttons img {
    height: 50px;
    width: auto;
}


/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.testimonial-text {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.rating {
    margin-left: auto;
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
}


/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}


/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(90, 127, 160, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-footer {
    text-align: center;
}

.form-footer p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}


/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--bg-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-medium);
    margin-top: 1rem;
}

.footer-column h4 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-medium);
    text-decoration: none;
}

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


/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}


/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .animation-section {
        height: auto;
        min-height: 100vh;
    }
    .threejs-container {
        position: relative;
        width: 100%;
        height: 50vh;
    }
    .side-image-container {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 50vh;
    }
    .preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .preview-text-left,
    .preview-text-right {
        text-align: center;
    }
    .download-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 640px) {
    .hero {
        padding-top: 80px;
        min-height: auto;
    }
    .features,
    .how-it-works,
    .pricing,
    .testimonials,
    .download,
    .faq,
    .contact {
        padding: 60px 0;
    }
    .app-preview {
        min-height: 300vh;
    }
    .phone-mockup {
        width: 280px;
    }
    .store-buttons {
        flex-direction: column;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .contact-form {
        padding: 2rem 1.5rem;
    }
}


/* ========================================
   ANIMATIONS
   ======================================== */

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

.feature-card,
.step-card,
.pricing-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/*# sourceMappingURL=main.css.map*/