/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    
    /* Couleurs neutres */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typographie */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Espacements */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border radius */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition: all 0.2s ease-in-out;
    --transition-slow: all 0.3s ease-in-out;
}

body {
    background: #fdf6ef;
    font-family: 'Inter', sans-serif;
    color: #0D4744;
    margin: 0;
    min-height: 100vh;
}
.spacer {
    height: 10px;
}

.legal-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fdf6ef;
}

.legal-header {
    width: 100%;
    background: #fdf6ef;
    border-bottom: 2px solid #ececec;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 12px;
}

.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.logo-img {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0D4744;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.legal-main {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0 0 0;
}

.legal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0D4744;
    text-align: center;
    margin-bottom: 32px;
}

.legal-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.legal-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6ede2;
    color: #0D4744;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    padding: 16px 20px;
    text-decoration: none;
    box-shadow: none;
    border: none;
    transition: background 0.2s;
}

.legal-link:hover {
    background: #f1e3d0;
}

.legal-link-icon {
    font-size: 1.3rem;
    color: #0D4744;
    margin-left: 8px;
    display: flex;
    align-items: center;
}

.legal-section {
    display: none;
    background: #F4EADC;
    border-radius: 12px;
    margin-top: 32px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    width: 100%;
    max-width: 400px;
}

.legal-section.active {
    display: block;
}

.legal-date {
    font-size: 0.95rem;
    color: #0D4744;
    opacity: 0.85;
    font-weight: 500;
    margin-bottom: 18px;
    text-align: left;
}

.legal-section ul {
    list-style: none;
    padding-left: 1em;
    margin-bottom: 12px;
}
.legal-section ul li {
    position: relative;
    margin-bottom: 7px;
    padding-left: 1em;
}
.legal-section ul li::before {
    content: '*';
    position: absolute;
    left: 0;
    color: #0D4744;
    font-weight: bold;
    font-size: 1.1em;
    top: 0.1em;
}

@media (max-width: 480px) {
    .legal-main {
        padding-top: 18px;
    }
    .legal-title {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    .legal-link {
        font-size: 0.98rem;
        padding: 14px 14px;
    }
    .legal-section {
        padding: 14px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-4) 0;
}

.logo h1 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-6);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: var(--transition);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--radius);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--gray-100);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-2);
    gap: var(--spacing-1);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--gray-600);
    transition: var(--transition);
    border-radius: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: var(--spacing-16) 0;
    text-align: center;
}

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

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-6);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    opacity: 0.9;
    font-weight: 400;
}

/* Main Content */
.main-content {
    padding: var(--spacing-16) 0;
}

/* Navigation Cards */
.nav-cards {
    margin-bottom: var(--spacing-16);
}

.card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
    max-width: 600px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-4);
}

.card-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-3);
}

.card-description {
    color: var(--gray-600);
    margin-bottom: var(--spacing-6);
    line-height: 1.6;
}

.card-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: var(--font-size-base);
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Content Sections */
.content-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    margin-bottom: var(--spacing-8);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-8);
    padding-bottom: var(--spacing-6);
    border-bottom: 2px solid var(--gray-100);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-2);
}

.section-subtitle {
    color: var(--gray-500);
    font-size: var(--font-size-lg);
}

.content-block {
    margin-bottom: var(--spacing-8);
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
    padding-bottom: var(--spacing-2);
    border-bottom: 1px solid var(--gray-200);
}

.content-block p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--spacing-4);
}

.content-block ul {
    list-style: none;
    padding-left: var(--spacing-4);
}

.content-block li {
    position: relative;
    padding-left: var(--spacing-6);
    margin-bottom: var(--spacing-2);
    color: var(--gray-700);
    line-height: 1.6;
}

.content-block li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.content-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.content-block a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--spacing-12) 0 var(--spacing-6);
    margin-top: var(--spacing-16);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-4);
    color: var(--white);
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-2);
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-6);
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 var(--spacing-6);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .hero {
        padding: var(--spacing-20) 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .content-section {
        padding: var(--spacing-12);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-8);
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .card-container {
        gap: var(--spacing-8);
    }
    
    .card {
        padding: var(--spacing-10);
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-4);
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .card {
        padding: var(--spacing-6);
    }
    
    .content-section {
        padding: var(--spacing-6);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
}

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

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

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

.card:nth-child(2) {
    animation-delay: 0.1s;
}

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

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .nav-cards,
    .footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: var(--gray-900);
        padding: var(--spacing-8) 0;
    }
    
    .content-section {
        box-shadow: none;
        border: 1px solid var(--gray-300);
        page-break-inside: avoid;
    }
}

/* ===== LANDING PAGE STYLES ===== */

/* Container principal du landing page */
.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #FFF8F0; /* Fond crème/beige clair */
    font-family: 'Inter', sans-serif;
    color: #0D4744; /* Vert foncé */
}

/* Header avec logo */
.landing-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #0D4744;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

/* Section principale */
.landing-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    text-align: center;
}

/* Section hero avec titre */
.hero-section {
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.hero-line {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-line:not(.highlight) {
    color: #60F2B1; /* Vert clair/mint */
}

.hero-line .highlight {
    color: #0D4744; /* Vert foncé/teal */
}

/* Section de téléchargement */
.download-section {
    margin-bottom: 2rem;
}

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

.download-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Boutons CTA */
.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px; /* Boutons plus arrondis */
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 250px; /* Largeur fixe identique pour tous les boutons */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ios-cta {
    background: #0d4744; /* Vert foncé */
    color: white;
}

.ios-cta:hover {
    background: #0a3a37;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 71, 68, 0.3);
}

.android-cta {
    background: white;
    color: #0d4744; /* Vert foncé */
    border: 2px solid #0d4744;
}

.android-cta:hover {
    background: #0d4744;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 71, 68, 0.3);
}

/* Informations des stores */
.store-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0d4744;
    font-size: 0.9rem;
    font-weight: 500;
}

.store-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.store-name {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 250px; /* Même largeur fixe */
    }
    
    /* Afficher les icônes à l'intérieur des boutons sur mobile */
    .cta-button .button-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
        vertical-align: middle;
    }
    
    /* Masquer les informations des stores sur mobile */
    .store-info {
        display: none;
    }
    
    .landing-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .logo-container {
        width: 90px;
        height: 90px;
    }
    
    .brand-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
    
    .cta-button {
        width: 250px; /* Même largeur fixe */
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button .button-icon {
        width: 18px;
        height: 18px;
        margin-right: 0.4rem;
    }
    
    .landing-main {
        padding: 0 0.75rem;
    }
    
    .logo-container {
        width: 80px;
        height: 80px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
}

/* ===== SECTION "COMMENT ÇA MARCHE ?" ===== */

.how-it-works-section {
    padding: 4rem 2rem;
    background: #F4EADC;
}

/* Images mobiles (masquées par défaut) */
.mobile-top-image,
.mobile-bottom-image {
    display: none;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Contenu explicatif à gauche */
.how-it-works-content {
    padding-right: 2rem;
}

.how-it-works-title {
    font-size: 3rem;
    font-weight: 700;
    color: #27C6A9; /* Nouvelle couleur verte */
    margin-bottom: 3rem;
    line-height: 1.2;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(39, 198, 169, 0.1);
    border-left: 4px solid #27C6A9;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(8px);
    background: rgba(39, 198, 169, 0.15);
    box-shadow: 0 8px 25px rgba(39, 198, 169, 0.2);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #27C6A9;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1rem;
    color: #0D4744;
    line-height: 1.6;
    margin: 0;
}

/* Captures d'écran mobiles à droite */
.mobile-screenshots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    transition: all 0.3s ease;
}

.phone-left {
    transform: rotate(-5deg) translateY(-20px);
    z-index: 2;
}

.phone-right {
    transform: rotate(5deg) translateY(20px);
    z-index: 1;
    margin-left: -60px;
}

.phone-mockup:hover {
    transform: scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

/* Responsive Design pour la section "Comment ça marche ?" */
@media (max-width: 1024px) {
    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .how-it-works-content {
        padding-right: 0;
        text-align: center;
    }
    
    .how-it-works-title {
        font-size: 2.5rem;
    }
    
    .mobile-screenshots {
        min-height: 500px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .phone-left {
        transform: rotate(-3deg) translateY(-10px);
    }
    
    .phone-right {
        transform: rotate(3deg) translateY(10px);
        margin-left: -40px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 1rem;
    }
    
    .how-it-works-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .steps-container {
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.25rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    /* Masquer les images desktop sur mobile */
    .mobile-screenshots {
        display: none;
    }
    
    /* Afficher les images mobiles */
    .mobile-top-image,
    .mobile-bottom-image {
        display: flex;
        justify-content: center;
        margin: 2rem 0;
    }
    
    .mobile-top-image img,
    .mobile-bottom-image img {
        width: 200px;
        height: 400px;
        object-fit: cover;
        border-radius: 22px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        transform: none !important;
        margin-left: 0 !important;
    }
    
    .phone-left,
    .phone-right {
        transform: none;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 2rem 0.75rem;
    }
    
    .how-it-works-title {
        font-size: 1.75rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
    
    .step {
        padding: 1rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .mobile-top-image img,
    .mobile-bottom-image img {
        width: 180px;
        height: 360px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
} 

/* ===== SECTION NEWSLETTER ===== */

.newsletter-section {
    padding: 4rem 2rem;
    background: #FFF8F0;
}

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

/* Contenu du formulaire à gauche */
.newsletter-content {
    padding-right: 2rem;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0D4744;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.newsletter-description {
    font-size: 1.1rem;
    color: #0D4744;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Formulaire */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #0D4744;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    outline: none;
    border-color: #60f2b1;
    box-shadow: 0 0 0 3px rgba(96, 242, 177, 0.1);
}

.newsletter-button {
    background: #60f2b1;
    color: #0D4744;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.newsletter-button:hover {
    background: #4dd89f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 242, 177, 0.3);
}

/* Mock-up mobile à droite */
.newsletter-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-phone {
    width: 280px;
    height: 560px;
    object-fit: cover;
    border-radius: 22px;
    transition: all 0.3s ease;
}

.newsletter-phone:hover {
    transform: scale(1.05);
}

/* Responsive pour la section newsletter */
@media (max-width: 768px) {
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-content {
        padding-right: 0;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-phone {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 480px) {
    .newsletter-phone {
        width: 200px;
        height: 400px;
    }
} 

/* ===== SECTION 4: APPEL À L'ACTION FINAL ===== */

.final-cta-section {
    padding: 4rem 2rem;
    background: #F4EADC; /* Même fond que la section 2 */
    text-align: center;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0D4744; /* Vert foncé comme dans l'image */
    line-height: 1.2;
    margin: 0;
}

.final-cta-description {
    font-size: 1.1rem;
    color: #0D4744; /* Vert foncé */
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    max-width: 600px;
}

/* Boutons de téléchargement finaux */
.final-download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.final-download-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Boutons CTA finaux */
.final-cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px; /* Boutons plus arrondis */
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 250px; /* Largeur fixe identique pour tous les boutons */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.button-text {
    display: inline;
}

.button-icon {
    display: none;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.final-cta-button.ios-cta {
    background: #0d4744; /* Vert foncé comme dans l'image */
    color: white;
}

.final-cta-button.ios-cta:hover {
    background: #0a3a37;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 71, 68, 0.3);
}

.final-cta-button.android-cta {
    background: white;
    color: #0d4744; /* Vert foncé */
    border: 2px solid #0d4744;
}

.final-cta-button.android-cta:hover {
    background: #0d4744;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 71, 68, 0.3);
}

/* Informations des stores finaux */
.final-store-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0d4744;
    font-size: 0.9rem;
    font-weight: 500;
}

.final-store-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.final-store-name {
    font-weight: 600;
}

/* Responsive Design pour la section finale */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 3rem 1rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-description {
        font-size: 1rem;
    }
    
    .final-download-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .final-cta-button {
        width: 250px; /* Même largeur fixe */
    }
    
    /* Afficher les icônes à l'intérieur des boutons sur mobile */
    .button-icon {
        display: inline-block;
    }
    
    /* Masquer les informations des stores sur mobile */
    .final-store-info {
        display: none;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 2rem 0.75rem;
    }
    
    .final-cta-title {
        font-size: 1.75rem;
    }
    
    .final-cta-description {
        font-size: 0.95rem;
    }
    
    .final-cta-button {
        width: 250px; /* Même largeur fixe */
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .button-icon {
        width: 18px;
        height: 18px;
        margin-right: 0.4rem;
    }
} 

/* ===== FOOTER ===== */

.landing-footer {
    background: #FFF8F0; /* Fond crème clair */
    padding: 2rem 0 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* Section supérieure du footer */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left .copyright {
    color: #0D4744; /* Vert foncé */
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.footer-center {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #0D4744; /* Vert foncé */
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #50C691; /* Nouvelle couleur verte au hover */
}

.footer-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #50C691; /* Nouvelle couleur verte */
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #45b382;
    transform: translateY(-2px);
}

.social-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Ligne de séparation */
.footer-divider {
    height: 1px;
    background: #e5e7eb; /* Gris clair */
    margin: 1.5rem 0;
}

/* Section inférieure du footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-text {
    color: #0D4744; /* Vert foncé */
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.contact-email {
    color: #50C691; /* Nouvelle couleur verte */
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: #45b382;
}

.external-link-icon {
    font-size: 0.8rem;
    font-weight: bold;
}

.design-credit {
    color: #0D4744; /* Vert foncé */
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.design-link {
    color: #50C691; /* Nouvelle couleur verte */
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.design-link:hover {
    color: #45b382;
}

/* Responsive Design pour le footer */
@media (max-width: 768px) {
    .landing-footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-center {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-right {
        order: -1; /* Place les icônes sociales en premier */
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-text {
        font-size: 0.85rem;
    }
    
    .design-credit {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .landing-footer {
        padding: 1rem 0 0.75rem;
    }
    
    .footer-container {
        padding: 0 0.75rem;
    }
    
    .footer-top {
        gap: 1rem;
    }
    
    .footer-center {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .contact-text {
        font-size: 0.8rem;
    }
    
    .design-credit {
        font-size: 0.8rem;
    }
} 