/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #3b82f6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #3b82f6;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Remove any default margins from common elements */
h1, h2, h3, h4, h5, h6, p, ul, ol, li, div, section, header, footer {
    margin: 0;
    padding: 0;
}

/* Ensure no gaps between sections */
section {
    margin: 0;
    padding: 0;
}

/* Prevent layout shift during animations */
.hero-content,
.feature-card,
.section-title,
.section-subtitle,
.testimonial-content,
.cta-content,
.step-item,
.pricing-card,
.app-logo-item {
    will-change: auto;
    transform: translateZ(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #3b82f6;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #ffffff;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: -10rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    background: transparent;
}

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.contact-btn {
    background: #ffffff;
    color: #3b82f6;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    margin-right: -11rem;
}

.contact-btn:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    order: 2;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: #3b82f6;
    color: #ffffff;
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    transform: translateZ(0);
    will-change: auto;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-title .highlight {
    color: #ffffff;
}

.hero-description {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin: 0 0 2rem 0;
    line-height: 1.6;
    max-width: 500px;
}

.hero .btn {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero .btn:hover {
    background: #ffffff;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.kid-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kid-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}


.cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.hero-phones {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.phones-image {
    max-width: 1800px;
    width: 120%;
    height: auto;
    min-height: 600px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
    transition: all 0.2s ease;
    animation: subtle-float 8s ease-in-out infinite;
    will-change: transform;
    background: transparent;
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.05);
}

.phones-image:hover {
    transform: scale(1.12);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
}

@keyframes subtle-float {
    0%, 100% {
        transform: scale(1.1) translateY(0px);
    }
    50% {
        transform: scale(1.1) translateY(-3px);
    }
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #3b82f6;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-gradient 8s ease-in-out infinite;
    will-change: background-position;
}

@keyframes title-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(255, 215, 0, 0.08);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    will-change: transform;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%, rgba(255, 215, 0, 0.01) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1.5;
}

.feature-card:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image {
    width: 50%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    width: 50%;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.feature-icon {
    display: none;
}

.feature-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.feature-tag {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Testimonial Section */
.testimonial {
    padding: 6rem 0;
    background: #3b82f6;
    text-align: center;
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 3rem;
    animation: fadeInUp 0.3s ease-out;
}

.testimonial-quote blockquote {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
}

.testimonial-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #1a1a1a;
    position: absolute;
    left: -2rem;
    top: -1rem;
    opacity: 0.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.author-title {
    color: #1a1a1a;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #3b82f6;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at top, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.cta-content {
    background: #3b82f6;
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.cta-content h2::after {
    content: '■';
    color: #ffffff;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.cta-content .cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.cta-content .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-content .cta-button:hover::before {
    left: 100%;
}

.cta-content .cta-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    color: #1a1a1a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #3b82f6;
    color: #ffffff;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    background: #ffd700;
    color: #1a1a1a;
}

.footer-bottom {
    color: #999;
    font-size: 0.875rem;
}

.mixo-credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }

    .nav-brand {
        margin-left: 0;
        order: 1;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        margin: 1rem 0 0 0;
        order: 3;
        background: rgba(59, 130, 246, 0.98);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 6px;
        transition: background 0.3s ease;
        text-align: left;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-btn {
        margin-right: 0;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        order: 3;
    }

    .hero {
        padding: 5rem 1rem 3rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0;
    }

    .hero-text {
        text-align: center;
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        padding: 0;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        padding: 0;
        line-height: 1.5;
    }

    .kid-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .container {
        padding: 0 1rem;
    }


    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        min-width: 120px;
    }

    .hero-logo-image {
        width: 120px;
        height: 120px;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .nav-brand .logo {
        font-size: 1.5rem;
    }

    .nav-brand {
        margin-left: 0.5rem;
    }

    .hero-phones {
        margin-top: 3rem;
        padding: 0 0.5rem;
    }

    .phones-image {
        max-width: 110%;
        width: 110%;
        min-height: 350px;
        border-radius: 20px;
        transform: scale(1.05);
        background: transparent;
        mix-blend-mode: multiply;
        filter: contrast(1.1) brightness(1.05);
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .features {
        padding: 3rem 0;
    }

    .features-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem 1rem;
        margin: 0;
        border-radius: 16px;
    }

    .feature-card:nth-child(even) {
        flex-direction: column;
    }

    .feature-image {
        width: 100%;
        height: 200px;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .feature-content {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .feature-tag {
        margin-top: 0.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .testimonial-quote blockquote {
        font-size: 1.25rem;
    }

    .testimonial-quote blockquote::before {
        font-size: 2.5rem;
        left: -1rem;
        top: -0.5rem;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Medium-sized phones (Xiaomi, larger Android phones) - 481px to 600px */
@media (min-width: 481px) and (max-width: 600px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .container,
    .hero-content,
    .feature-card,
    .step-item,
    .pricing-card,
    .screenshot-item,
    .screenshots-container {
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero {
        padding: 5rem 1.25rem 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .kid-image {
        width: 220px;
        height: 220px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }

    .features {
        padding: 3.5rem 0;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
        gap: 1.75rem;
    }

    .feature-image {
        height: 220px;
    }

    .feature-card h3 {
        font-size: 1.35rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-card {
        padding: 2rem 1.5rem;
    }

    .story-card h3 {
        font-size: 1.4rem;
    }

    .story-card p {
        font-size: 1rem;
    }

    .values-grid {
        flex-direction: column;
        gap: 1.25rem;
    }

    .value-item {
        padding: 1.5rem 1rem;
    }

    .how-it-works {
        padding: 4rem 0;
    }

    .step-item {
        padding: 2rem 1.25rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .app-logos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .logo-wrapper {
        padding: 1.75rem 1rem;
        min-height: 170px;
    }

    .pricing {
        padding: 4rem 0;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .plan-header h3 {
        font-size: 1.65rem;
    }

    .price {
        font-size: 2.75rem;
    }

    .testimonial {
        padding: 4rem 0;
    }

    .testimonial-quote blockquote {
        font-size: 1.35rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.85rem;
    }

    .cta-content p {
        font-size: 1.05rem;
    }

    .screenshots-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
        width: 100%;
        overflow-x: hidden;
    }

    .screenshot-item {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
    }

    .screenshot-wrapper {
        height: 400px;
    }

    .screenshot-image {
        max-height: 380px;
    }

    .modal-content {
        width: 90%;
        max-width: 500px;
    }

    .modal-title {
        font-size: 1.85rem;
    }

    .modal-description {
        font-size: 1rem;
    }
}

/* Additional mobile fixes for very small screens */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .nav {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4.5rem 0.75rem 2rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        padding: 0;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .kid-image {
        width: 180px;
        height: 180px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .nav {
        padding: 0.5rem 0.75rem;
    }

    .nav-brand .logo {
        font-size: 1.1rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .contact-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .nav-links {
        padding: 0.75rem;
    }

    .nav-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .features {
        padding: 2.5rem 0;
    }

    .feature-card {
        padding: 1.25rem 0.75rem;
        gap: 1rem;
    }

    .feature-image {
        height: 180px;
        margin-bottom: 0.75rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .feature-tag {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .about {
        padding: 3rem 0;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .story-card {
        padding: 1.5rem 1rem;
    }

    .story-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .story-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .story-card p {
        font-size: 0.9rem;
    }

    .about-values h3,
    .about-impact h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .values-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .value-item {
        padding: 1.25rem 0.75rem;
    }

    .value-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .value-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .value-item p {
        font-size: 0.85rem;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .how-it-works {
        padding: 3rem 0;
    }

    .steps-container {
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .step-item:nth-child(even) {
        flex-direction: column;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .how-app-works {
        padding: 3rem 0;
    }

    .app-logos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .logo-wrapper {
        padding: 1.5rem 0.75rem;
        min-height: 150px;
    }

    .logo-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .logo-wrapper h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .logo-wrapper p {
        font-size: 0.8rem;
    }

    .screenshots-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .screenshots-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .screenshots-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .screenshot-item {
        flex: 0 0 auto;
        min-width: 280px;
        max-width: 100%;
        margin: 0;
    }

    .screenshot-wrapper {
        height: 350px;
        padding: 0.25rem;
    }

    .screenshot-image {
        max-height: 330px;
    }

    .arrow-container {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .arrow {
        width: 35px;
    }

    .pricing {
        padding: 3rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .premium-plan {
        transform: none;
    }

    .plan-header h3 {
        font-size: 1.5rem;
    }

    .plan-icon {
        font-size: 2.5rem;
    }

    .price {
        font-size: 2.25rem;
    }

    .feature-item {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .testimonial {
        padding: 3rem 0;
    }

    .testimonial-quote blockquote {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .testimonial-quote blockquote::before {
        font-size: 2rem;
        left: -0.5rem;
        top: -0.25rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-title {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-content {
        padding: 2rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }

    .modal-body {
        padding: 1.5rem 1rem;
    }

    .modal-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .modal-description {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .contact-info {
        margin-top: 1rem;
        padding: 1rem;
    }

    .contact-info p {
        font-size: 0.85rem;
    }
}

/* Enhanced animations for smoother appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        visibility: hidden;
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.95);
        visibility: hidden;
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        visibility: visible;
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
        visibility: hidden;
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        visibility: visible;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
        visibility: hidden;
    }
    to {
        opacity: 1;
        transform: scale(1);
        visibility: visible;
    }
}

/* Initial hidden state */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Visible state */
.animate-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* Special animations for step items */
.step-item.animate-visible {
    transform: translateX(0) scale(1) !important;
}

/* Special animations for pricing cards */
.pricing-card.animate-hidden {
    transform: translateY(30px) scale(0.8);
}

.pricing-card.animate-visible {
    transform: translateY(0) scale(1);
}

/* Hover effects */
.hover-lift {
    transform: translateY(-10px) scale(1.02) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Improved feature card animations */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.02s; }
.feature-card:nth-child(3) { animation-delay: 0.04s; }
.feature-card:nth-child(4) { animation-delay: 0.06s; }

/* About Section */
.about {
    padding: 6rem 0;
    background: #3b82f6;
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: about-bg-float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes about-bg-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
        opacity: 1;
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
        opacity: 0.8;
    }
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(255, 215, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: story-card-entrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

@keyframes story-card-entrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.story-card:nth-child(1) {
    animation-delay: 0.2s;
}

.story-card:nth-child(2) {
    animation-delay: 0.4s;
}

.story-card:nth-child(3) {
    animation-delay: 0.6s;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%, rgba(255, 215, 0, 0.01) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.story-card:hover::before {
    opacity: 1.5;
}

.story-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.2);
}

.story-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: story-icon-combo 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

@keyframes story-icon-combo {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    }
    25% {
        transform: translateY(-8px) scale(1.05) rotate(2deg);
        filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.4));
    }
    50% {
        transform: translateY(-4px) scale(1.02) rotate(-1deg);
        filter: drop-shadow(0 8px 16px rgba(255, 215, 0, 0.5));
    }
    75% {
        transform: translateY(-12px) scale(1.08) rotate(1deg);
        filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    }
}

.story-card:hover .story-icon {
    animation-play-state: paused;
    transform: translateY(-15px) scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.6));
}

.story-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.story-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.about-values {
    margin-bottom: 5rem;
    text-align: center;
}

.about-values h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-gradient 8s ease-in-out infinite, about-title-entrance 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: background-position;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes about-title-entrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-values h3 {
    animation-delay: 0.5s;
}

.values-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(255, 215, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: value-item-entrance 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
    flex: 1;
    min-width: 0;
}

@keyframes value-item-entrance {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.value-item:nth-child(1) {
    animation-delay: 0.8s;
}

.value-item:nth-child(2) {
    animation-delay: 1.0s;
}

.value-item:nth-child(3) {
    animation-delay: 1.2s;
}

.value-item:nth-child(4) {
    animation-delay: 1.4s;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%, rgba(255, 215, 0, 0.01) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.value-item:hover::before {
    opacity: 1.5;
}

.value-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
    animation: value-icon-pulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes value-icon-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        filter: brightness(1.2);
    }
}

.value-item:hover .value-icon {
    animation-play-state: paused;
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.3) drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
}

.value-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.about-impact {
    text-align: center;
}

.about-impact h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-gradient 8s ease-in-out infinite, about-title-entrance 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: background-position;
    opacity: 0;
    transform: translateY(30px);
    animation-delay: 1.2s;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: stat-item-entrance 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
}

@keyframes stat-item-entrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-item:nth-child(1) {
    animation-delay: 1.6s;
}

.stat-item:nth-child(2) {
    animation-delay: 1.8s;
}

.stat-item:nth-child(3) {
    animation-delay: 2.0s;
}

.stat-item:nth-child(4) {
    animation-delay: 2.2s;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: stat-number-glow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes stat-number-glow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
        transform: scale(1.05);
    }
}

.stat-item:hover .stat-number {
    animation-play-state: paused;
    transform: scale(1.1);
    text-shadow: 0 6px 25px rgba(255, 215, 0, 0.8);
    color: #ffffff;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #3b82f6;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(255, 215, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%, rgba(255, 215, 0, 0.01) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.step-item:hover::before {
    opacity: 1.5;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.step-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.step-description p {
    margin-bottom: 1rem;
}

.step-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.step-description li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.step-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.2);
}

/* How App Works Section - Logo Design */
.how-app-works {
    padding: 6rem 0;
    background: #3b82f6;
    position: relative;
    overflow: visible;
}

.how-app-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    z-index: 1;
}

.how-app-works .container {
    position: relative;
    z-index: 2;
}

.app-logos-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.app-logo-item {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.app-logo-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.logo-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-logo-item:hover .logo-wrapper::before {
    opacity: 1;
}

.app-logo-item:hover .logo-wrapper {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.2);
}

.logo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: logo-float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    position: relative;
    z-index: 2;
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.logo-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.logo-wrapper p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* App Screenshots Section */
.app-screenshots {
    margin-top: 5rem;
    text-align: center;
    overflow: visible;
}

.screenshots-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-gradient 8s ease-in-out infinite;
    will-change: background-position;
}

.screenshots-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.screenshots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: nowrap;
    overflow-x: visible;
    padding: 2rem 6rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.screenshots-container::-webkit-scrollbar {
    display: none; /* WebKit */
}

.screenshot-item {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 350px;
    min-width: 350px;
    height: auto;
    margin: 0 0.25rem;
}

.screenshot-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.screenshot-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 100%;
}

.screenshot-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.screenshot-item:hover .screenshot-wrapper::before {
    opacity: 1;
}

.screenshot-item:hover .screenshot-wrapper {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.screenshot-image {
    width: 100%;
    height: auto;
    max-height: 480px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    display: block;
}

.screenshot-item:hover .screenshot-image {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    color: #ffffff;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.screenshot-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Arrow Styling */
.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 0.5rem;
}

.arrow {
    position: relative;
    width: 60px;
    height: 4px;
    display: flex;
    align-items: center;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.arrow-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.arrow-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: arrow-shimmer 3s ease-in-out infinite;
}

@keyframes arrow-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.arrow-head {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid #ffd700;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    filter: drop-shadow(2px 2px 4px rgba(255, 215, 0, 0.3));
    animation: arrow-head-bounce 2s ease-in-out infinite;
}

@keyframes arrow-head-bounce {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(4px);
    }
}

.arrow-container:hover .arrow {
    animation-play-state: paused;
    transform: scale(1.2);
}

.arrow-container:hover .arrow-line {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

.arrow-container:hover .arrow-head {
    filter: drop-shadow(4px 4px 8px rgba(255, 215, 0, 0.5));
}

/* Modal System */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease;
}

/* Get Started Modal Specific Styles */
.get-started-modal {
    max-width: 600px;
    width: 90%;
}

.contact-form {
    margin: 2rem 0;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    margin: 2% auto;
    padding: 0;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(255, 215, 0, 0.2);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.modal-close:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 20px;
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: block;
    animation: modalIconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

@keyframes modalIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.modal-description p {
    margin-bottom: 1.5rem;
}

.modal-description ul {
    text-align: left;
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.modal-description li {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.modal-description li::before {
    content: '✓';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #3b82f6;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(255, 215, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%, rgba(255, 215, 0, 0.01) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1.5;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.2);
}

.premium-plan {
    border: 2px solid rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 0.5rem 2rem;
    border-radius: 0 0 15px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.plan-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.plan-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.plan-subtitle {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

.plan-price {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.yearly-price {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.plan-features {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.feature-item i {
    color: #ffd700;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.plan-button {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.free-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.free-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.premium-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.premium-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .screenshots-container {
        gap: 0.5rem;
        padding: 1.5rem 3rem;
        max-width: 1400px;
    }
    
    .screenshot-item {
        flex: 0 0 300px;
        min-width: 300px;
        margin: 0 0.25rem;
    }
    
    .arrow-container {
        margin: 0 0.25rem;
    }
    
    .arrow {
        width: 50px;
    }
}

@media (max-width: 1024px) {
    .values-grid {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .value-item {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 250px;
    }
}

/* Additional responsive fixes for tablets and medium screens */
@media (min-width: 601px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .step-item {
        padding: 2rem 1.5rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .steps-container {
        gap: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .step-item:nth-child(even) {
        flex-direction: column;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .premium-plan {
        transform: none;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .plan-header h3 {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .app-logos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .logo-wrapper {
        padding: 2rem 1rem;
        min-height: 180px;
    }
    
    .logo-icon {
        font-size: 3rem;
    }
    
    .logo-wrapper h3 {
        font-size: 1.1rem;
    }
    
    .logo-wrapper p {
        font-size: 0.85rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        padding: 2rem;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .step-item {
        padding: 1.5rem 1rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .plan-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .app-logos-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logo-wrapper {
        padding: 1.5rem 1rem;
        min-height: 160px;
    }
    
    .logo-icon {
        font-size: 2.5rem;
    }
    
    .logo-wrapper h3 {
        font-size: 1rem;
    }
    
    .logo-wrapper p {
        font-size: 0.8rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .modal-icon {
        font-size: 4rem;
    }
    
    /* About Section Mobile Styles */
    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .story-card {
        padding: 2rem 1.5rem;
    }
    
    .story-icon {
        font-size: 3rem;
    }
    
    .story-card h3 {
        font-size: 1.5rem;
    }
    
    .story-card p {
        font-size: 1rem;
    }
    
    .about-values h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .values-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
    
    .about-impact h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* App Screenshots Mobile Styles */
    .screenshots-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .screenshots-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .screenshots-container {
        flex-direction: column;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 1.5rem 3rem;
        max-width: 100%;
    }
    
    .screenshot-item {
        flex: 0 0 auto;
        min-width: 300px;
        max-width: 320px;
    }
    
    .screenshot-wrapper {
        height: 400px;
        padding: 0.25rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
    }
    
    .screenshot-image {
        max-height: 380px;
    }
    
    .arrow-container {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .arrow {
        width: 40px;
    }
    
    .screenshot-wrapper {
        padding: 0.5rem;
    }
    
    .screenshot-overlay h4 {
        font-size: 1.1rem;
    }
    
    .screenshot-overlay p {
        font-size: 0.85rem;
    }
    
    /* Get Started Modal Mobile Styles */
    .get-started-modal {
        width: 95%;
        margin: 5% auto;
    }
    
    .contact-form {
        margin: 1.5rem 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-info {
        margin-top: 1.5rem;
        padding: 1rem;
    }
}

/* Check icon styling */
.check-icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 14px;
    margin-right: 8px;
}

/* Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
}

.chatbot-icon {
    font-size: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.chatbot-toggle:hover .chatbot-icon {
    transform: scale(1.1);
}

.chatbot-close {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    border: 2px solid white;
}

.chatbot-widget.active .chatbot-close {
    opacity: 1;
    transform: scale(1);
}

.chatbot-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.chatbot-widget.active .chatbot-container {
    display: flex;
    animation: chatbotSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes chatbotSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.chatbot-info h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.chatbot-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 2px 0 0 0;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.chatbot-message {
    display: flex;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
}

.user-message .message-content {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.bot-message .message-content {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-bottom-left-radius: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-content p {
    margin: 0;
    line-height: 1.4;
    font-size: 14px;
}

.chatbot-input-container {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#chatbot-input:focus {
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

#chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#chatbot-send {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

#chatbot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

#chatbot-send:active {
    transform: scale(0.95);
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Contact Us button in messages */
.contact-us-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.contact-us-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
    text-decoration: none;
}

.contact-us-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Mobile responsiveness for chatbot */
@media (max-width: 768px) {
    .chatbot-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-container {
        width: 300px;
        height: 450px;
    }
    
    .chatbot-toggle {
        width: 55px;
        height: 55px;
    }
    
    .chatbot-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .chatbot-container {
        width: calc(100vw - 30px);
        right: -15px;
        bottom: 70px;
    }
    
    .chatbot-messages {
        padding: 15px;
    }
    
    .chatbot-input-container {
        padding: 12px 15px;
    }
}