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

:root {
    --primary: #FF776C;
    --primary-500: #FF776C;
    --primary-hover: #ff5a4d;
    --primary-active: #ff3d2e;
    --background: #fef9f2;
    --text: #2D3A4A;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    
    /* Pastel Colors */
    --pastel-red: #FEE2E2;
    --pastel-blue: #DBEAFE;
    --pastel-green: #D1FAE5;
    --pastel-orange: #FED7AA;
    --pastel-purple: #F3E8FF;
    --pastel-yellow: #FEF3C7;
    --pastel-pink: #FCE7F3;
    --pastel-indigo: #E0E7FF;
    --pastel-emerald: #F0FDF4;
    --pastel-gray: #F3F4F6;
    
    --accent-yellow: #FBBF24;
    --accent-orange: #f97316;
    
    /* Button shadows matching app style */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --button-shadow: 0 0 0 0 rgba(255, 119, 108, 0.25), 0 5px 0 0 rgba(255, 119, 108, 0.25);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 249, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.logo-text {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 32px;
    text-transform: lowercase;
    color: #FF776C;
}

.logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.logo-icon-emoji {
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 10px 24px;
    font-size: 14px;
}

/* Buttons - Matching app style */
.cta-button {
    padding: 12px 32px;
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.cta-button.primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 0 rgba(255, 119, 108, 0.25), 0 5px 0 0 rgba(255, 119, 108, 0.25);
}

.cta-button.primary:hover {
    background: var(--primary-hover);
    transform: translateY(2px);
    box-shadow: 0 0 0 0 rgba(255, 119, 108, 0.25), 0 2px 0 0 rgba(255, 119, 108, 0.25);
}

.cta-button.primary:active {
    transform: translateY(5px);
    box-shadow: none;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: #F9F7F4;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Coming Soon Banner */
.coming-soon-banner {
    display: inline-block;
    margin-top: 24px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.launching-soon-button {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-orange) 100%);
    color: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 12px 32px;
    border-radius: 9999px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: default;
    box-shadow: 0 4px 12px rgba(255, 119, 108, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.launching-soon-button i {
    font-size: 18px;
}

.launching-soon-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 119, 108, 0.4);
}

@media (prefers-reduced-motion: no-preference) {
    .launching-soon-button:hover {
        animation: rocketFloat 1s ease-in-out infinite;
    }
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 640px) {
    .launching-soon-button {
        font-size: 16px;
        padding: 8px 24px;
    }
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* Screenshots Container */
.screenshots-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
}

.app-screenshot {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Learning Method Section */
.learning-method {
    background: var(--background-base);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.learning-method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.learning-method-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.learning-method-text .section-title {
    text-align: left;
    margin-bottom: 0;
}

.learning-method-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.learning-method-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    background: transparent;
}

/* Lesson Categories Section */
.lesson-categories {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.carousel-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lesson-image {
    width: 229.5px;
    height: 466.5px;
    display: block;
    background: transparent;
    object-fit: contain;
    margin: 0 auto;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.carousel-btn {
    background: var(--primary-500);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 119, 108, 0.3);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 119, 108, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:focus {
    outline: 3px solid var(--primary-500);
    outline-offset: 2px;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 119, 108, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-500);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(255, 119, 108, 0.6);
}

/* Features Section */
.features {
    background: var(--background-base);
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--white) 100%);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--white) 100%);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--white) 100%);
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--white) 100%);
}

.feature-card:nth-child(5) {
    background: linear-gradient(135deg, var(--pastel-purple) 0%, var(--white) 100%);
}

.feature-card:nth-child(6) {
    background: linear-gradient(135deg, var(--pastel-orange) 0%, var(--white) 100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-500);
}

.feature-icon i {
    font-size: inherit;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Progress Section */
.progress-section {
    background: var(--background);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(243, 232, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(254, 243, 199, 0.4) 0%, transparent 50%);
}

.progress-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.section-image {
    max-width: 100%;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 119, 108, 0.1);
}

.progress-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.progress-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.progress-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.feature-icon-small {
    font-size: 32px;
    flex-shrink: 0;
    color: var(--primary-500);
}

.feature-icon-small i {
    font-size: inherit;
}

.progress-feature h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.progress-feature p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Badges Section */
.badges-section {
    background: var(--white);
}

.badges-image-container {
    display: flex;
    justify-content: center;
}

/* Activities Section */
.activities-section {
    background: var(--background);
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(254, 226, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(219, 234, 254, 0.3) 0%, transparent 50%);
}

.activities-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

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

.activities-description p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Privacy Section */
.privacy {
    background: var(--white);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.privacy-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.privacy-card:nth-child(1) {
    background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--white) 100%);
}

.privacy-card:nth-child(2) {
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--white) 100%);
}

.privacy-card:nth-child(3) {
    background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--white) 100%);
}

.privacy-card:nth-child(4) {
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--white) 100%);
}

.privacy-card:nth-child(5) {
    background: linear-gradient(135deg, var(--pastel-purple) 0%, var(--white) 100%);
}

.privacy-card:nth-child(6) {
    background: linear-gradient(135deg, var(--pastel-orange) 0%, var(--white) 100%);
}

.privacy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.privacy-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-500);
}

.privacy-icon i {
    font-size: inherit;
}

.privacy-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.privacy-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.privacy-cta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.link-button {
    padding: 12px 32px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.link-button:hover {
    background: var(--primary);
    color: var(--white);
}

/* Benefits Section */
.benefits {
    background: var(--background);
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(254, 226, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(219, 234, 254, 0.3) 0%, transparent 50%);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-card {
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--white) 100%);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 119, 108, 0.1);
}

.benefits-header {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
    text-align: center;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.journey-step {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.journey-step.completed {
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--white) 100%);
    border-left: 4px solid var(--primary);
}

.journey-step.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.journey-step.active .step-title,
.journey-step.active .step-desc {
    color: var(--white);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.journey-step.active .step-number {
    background: var(--white);
    color: var(--primary);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    color: var(--white);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

/* App Store and Play Store Buttons */
.app-store-button,
.play-store-button {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.app-store-button:hover,
.play-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.app-store-button:active,
.play-store-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.app-store-button:focus,
.play-store-button:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

.store-button-image {
    display: block;
    height: auto;
    width: auto;
    max-height: 60px;
    object-fit: contain;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 5px 0 0 rgba(255, 255, 255, 0.2);
}

.cta-section .cta-button:hover {
    background: var(--background);
    transform: translateY(2px);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 2px 0 0 rgba(255, 255, 255, 0.2);
}

.cta-section .cta-button:active {
    transform: translateY(5px);
    box-shadow: none;
}

/* Footer */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 32px;
    text-transform: lowercase;
    color: #FF776C;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .benefits-content,
    .learning-method-content {
        grid-template-columns: 1fr;
    }

    .learning-method-text .section-title {
        text-align: center;
    }

    .progress-features {
        grid-template-columns: 1fr;
    }

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

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

    .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .screenshots-container {
        gap: 16px;
        margin-top: 32px;
    }

    .app-screenshot {
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 60px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .store-button-image {
        max-height: 50px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .features-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
    }

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

    .learning-method-content {
        gap: 40px;
    }

    .learning-method-description {
        font-size: 16px;
    }

    .carousel-controls {
        gap: 16px;
        margin-top: 24px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .screenshots-container {
        flex-direction: column;
        gap: 20px;
    }

    .app-screenshot {
        max-width: 250px;
    }

    .section-image {
        max-width: 100%;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: 100%;
    max-width: 900px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 2001;
}

.video-modal-close:hover {
    transform: rotate(90deg);
}

#demoVideo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

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

.feature-card,
.privacy-card {
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 640px) {
    .video-modal-content {
        max-width: 95%;
        padding: 12px;
    }

    .video-modal-close {
        top: -35px;
        font-size: 32px;
        width: 32px;
        height: 32px;
    }
}

