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

/* Brand Colors */
:root {
    --brand-cyan-cornflower: #3FA4FC;
    --brand-violet-blue: #000687;
    --brand-dark-blue: #000687;
    --brand-medium-turquoise: #35CCDD;
    --brand-tango-pink: #E27676;
    --brand-blueberry: #3647C1;
    --brand-maya-blue: #66C1FF;
    --brand-light-red-ochre: #E86752;
    --brand-black: #141312;
    --brand-grey: #454949;
    --brand-light-grey: #E8E8E8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--brand-black);
    background: var(--brand-light-grey);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FFF;
    opacity: 1;
    z-index: 1000;
    padding: 0;
    height: 54px;
    transition: none;
    border-bottom: 2px solid var(--brand-cyan-cornflower);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 54px;
    height: 54px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-cyan-cornflower);
}

.logo img {
    height: 44px;
    width: auto;
    margin-right: 0.5rem;
    max-width: 100px;
    max-height: 100px;
}

.logo i {
    font-size: 1.8rem;
}

.logo span {
    color: var(--brand-cyan-cornflower);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--brand-black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-cyan-cornflower);
}

.cta-button {
    background: var(--brand-cyan-cornflower);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--brand-blueberry);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-cyan-cornflower) 0%, var(--brand-blueberry) 100%);
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.app-store-btn img,
.google-play-btn img {
    height: 50px;
    transition: transform 0.3s ease;
}

.app-store-btn:hover img,
.google-play-btn:hover img {
    transform: scale(1.05);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #e8e8e8;
}
.hero-slideshow .slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}
.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
}
.slideshow-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 3;
}
.slideshow-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    border: 2px solid var(--brand-cyan-cornflower);
    cursor: pointer;
    transition: background 0.3s;
}
.slideshow-dots .dot.active {
    background: var(--brand-cyan-cornflower);
}
@media (max-width: 600px) {
    .hero-slideshow {
        max-width: 95vw;
        height: 55vw;
        min-height: 300px;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-cyan-cornflower), var(--brand-blueberry));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section - Alignment Fix */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    min-height: 420px;
    justify-content: flex-start;
}

.step-number {
    margin-bottom: 1rem;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.step-content h3 {
    min-height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
    text-align: center;
}

.step-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

/* Community Section */
.community {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.community h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.community-gallery img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.community-gallery img:hover {
    transform: scale(1.05);
}

/* Download Section */
.download {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.download p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--brand-violet-blue);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--brand-cyan-cornflower);
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--brand-cyan-cornflower);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--brand-cyan-cornflower);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--brand-tango-pink);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-minimal {
    background: var(--brand-cyan-cornflower);
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    .step {
        min-height: 0;
        padding: 1.5rem 0.5rem;
    }
    .step-content h3 {
        min-height: 2.5em;
    }
    .hero {
        padding-top: 70px;
    }
    .navbar {
        padding: 0;
        height: 54px;
    }
    .nav-container {
        min-height: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} 

.watch-millie {
    padding: 4rem 0 2rem 0;
    background: #fff;
}
.watch-millie h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--brand-blueberry);
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
} 