/* Landing page /app — conversion pure */

.app-landing-page {
    background: linear-gradient(135deg, #1a1f3a 0%, #2c3e6b 50%, #1a1f3a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Nav minimaliste */
.app-landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.app-landing-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.app-landing-logo {
    height: 32px;
    width: auto;
}

.app-landing-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.app-landing-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.app-landing-nav-links a:hover {
    color: #fff;
}

.app-landing-nav-links .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.35rem 1rem;
    border-radius: 6px;
}

.app-landing-nav-links .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Hero */
.app-landing-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem 2rem;
}

.app-landing-hero-content {
    text-align: center;
    max-width: 700px;
}

.app-landing-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.app-landing-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Bouton Play Store */
.app-landing-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.app-landing-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: #1a1f3a;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.app-landing-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

.app-landing-play-icon {
    width: 28px;
    height: 28px;
}

.app-landing-play-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-landing-play-text small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.app-landing-play-text strong {
    font-size: 1.15rem;
    font-weight: 700;
}

.app-landing-trial {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Badge souveraineté */
.app-landing-badge-section {
    display: flex;
    justify-content: center;
    padding: 1.5rem 2rem;
}

.app-landing-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 2rem;
    backdrop-filter: blur(8px);
}

.app-landing-badge-icon {
    font-size: 2rem;
    color: #4ade80;
}

.app-landing-badge-text {
    display: flex;
    flex-direction: column;
}

.app-landing-badge-text strong {
    color: #fff;
    font-size: 1rem;
}

.app-landing-badge-text span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

/* 3 arguments */
.app-landing-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.app-landing-feature {
    flex: 1;
    text-align: center;
    max-width: 260px;
}

.app-landing-feature-icon {
    font-size: 1.8rem;
    color: #93c5fd;
    margin-bottom: 0.75rem;
}

.app-landing-feature h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.app-landing-feature p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Footer minimal */
.app-landing-footer {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.app-landing-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.app-landing-footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.app-landing-footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.app-landing-footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .app-landing-hero-content h1 {
        font-size: 2rem;
    }

    .app-landing-hero-subtitle {
        font-size: 1rem;
    }

    .app-landing-features {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .app-landing-badge {
        padding: 0.8rem 1.2rem;
    }

    .app-landing-nav {
        padding: 0.75rem 1rem;
    }

    .app-landing-nav-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .app-landing-hero-content h1 {
        font-size: 1.6rem;
    }

    .app-landing-hero {
        padding: 2rem 1rem 1.5rem;
    }

    .app-landing-play-btn {
        padding: 0.7rem 1.5rem;
    }
}