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

:root {
    --peach: #f3dcca;
    --mint: #d6e6e3;
    --slate: #61787e;
    --white: #ffffff;
    --text-dark: #2c3e45;
    --text-light: #6b7c82;
}

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

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

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate);
}

.nav-cta {
    background: var(--slate);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 120, 126, 0.3);
}

.branding-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--peach) 100%);
}

.branding-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-content > img.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

/* For tablets */
@media (max-width: 768px) {
    .hero-content > img.hero-logo {
        max-width: 300px;
        margin-bottom: 24px;
    }
}

/* For mobile phones */
@media (max-width: 480px) {
    .hero-content > img.hero-logo {
        max-width: 250px;
        margin-bottom: 20px;
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--peach) 0%, var(--mint) 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}


.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--slate);
    text-align: center;
    padding: 0 20px;
    word-wrap: break-word;
}
/* For tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
}

/* For mobile phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 16px;
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.2rem;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1rem;
    }
}
.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.6;
}

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

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--slate);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.store-button.large {
    padding: 18px 36px;
}

.store-icon {
    width: 32px;
    height: 32px;
}

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

.store-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.store-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--slate);
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--mint);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

/* CTA Section */
.cta-section {
    background: var(--peach);
    padding: 100px 0;
    text-align: center;
}

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

.cta-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-tagline {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

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

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

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

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

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

    .store-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }
}

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

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

    .features {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }
}

.language-selector {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: 2px solid #667eea;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #667eea;
    color: white;
}

.lang-btn.active {
    background: #667eea;
    color: white;
}

@media (max-width: 480px) {
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

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

/* Adjust size as needed */
@media (max-width: 768px) {
    .feature-icon img.feature-icon-img {
        width: 40px;
        height: 40px;
    }
}