/* =====================================================
   LE CHINEUR - Landing Page Ultra Stylée
   ===================================================== */

:root {
    /* Couleurs de l'app */
    --bg-cream: #FDF8EE;
    --primary: #000000;
    --accent-red: #c93325;
    --accent-yellow: #FFD608;
    --accent-yellow-dark: #C48B07;
    --green-dark: #1E3E2C;
    --white: #ffffff;
    --text-dark: #111827;
    --text-gray: #6B7280;
    
    /* Gradients */
    --gradient-red: linear-gradient(135deg, #c93325 0%, #ff5744 100%);
    --gradient-sunset: linear-gradient(135deg, #c93325 0%, #FFD608 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 60px rgba(201, 51, 37, 0.3);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   Animated Background
   ===================================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-red);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-yellow);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--green-dark);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.2;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(253, 248, 238, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-cta-icon {
    font-size: 16px;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

/* Badge amélioré */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-soft);
}

.badge-icon {
    font-size: 18px;
}

.badge-new {
    background: var(--accent-red);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Titre avec underline animé */
.hero h1 {
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.highlight-word {
    position: relative;
    display: inline-block;
}

.highlight-text {
    position: relative;
    z-index: 2;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-svg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 20px;
    color: var(--accent-yellow);
    z-index: 1;
    animation: draw-underline 1.5s ease forwards;
    animation-delay: 0.8s;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

@keyframes draw-underline {
    to { stroke-dashoffset: 0; }
}

.gradient-text {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-description strong {
    color: var(--primary);
    font-weight: 700;
}

/* Category Badges */
.category-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.category-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.category-badge.friperie {
    background: var(--accent-red);
    color: var(--white);
}

.category-badge.brocante {
    background: var(--accent-yellow);
    color: var(--primary);
}

.category-badge.events {
    background: #F3E8FF;
    color: #8B5CF6;
    border-color: #8B5CF6;
}

.badge-emoji {
    font-size: 18px;
}

/* =====================================================
   Download Buttons - NOUVEAUX BEAUX BOUTONS
   ===================================================== */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-btn {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    position: relative;
    z-index: 2;
}

.download-btn .btn-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.download-btn .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-btn .btn-label {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-btn .btn-store {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Primary Button - Noir avec effet shine */
.download-btn.primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.download-btn.primary .btn-shine {
    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.6s ease;
}

.download-btn.primary:hover .btn-shine {
    left: 100%;
}

.download-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-btn.primary:hover .btn-icon {
    transform: scale(1.1);
}

/* Secondary Button - Blanc avec bordure */
.download-btn.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.download-btn.secondary:hover {
    background: var(--bg-cream);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.download-btn.secondary:hover .btn-icon {
    transform: scale(1.1);
}

/* White Button - Pour CTA section */
.download-btn.white {
    background: var(--white);
    color: var(--primary);
    border: none;
}

.download-btn.white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Outline Button - Pour CTA section */
.download-btn.outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.download-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-4px);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.users-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-left: -12px;
    box-shadow: var(--shadow-soft);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.more {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.social-proof p {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

/* =====================================================
   Phone Mockup - iPhone 15 Pro Style
   ===================================================== */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 320px;
    height: 660px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 55px;
    padding: 14px;
    box-shadow: 
        0 60px 120px -30px rgba(0, 0, 0, 0.4),
        0 30px 60px -20px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Dynamic Island */
.phone-dynamic-island {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

/* Boutons physiques */
.phone-btn-side {
    position: absolute;
    right: -3px;
    top: 180px;
    width: 4px;
    height: 80px;
    background: #333;
    border-radius: 2px;
}

.phone-btn-volume-up {
    position: absolute;
    left: -3px;
    top: 140px;
    width: 4px;
    height: 40px;
    background: #333;
    border-radius: 2px;
}

.phone-btn-volume-down {
    position: absolute;
    left: -3px;
    top: 200px;
    width: 4px;
    height: 40px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    border-radius: 55px;
    pointer-events: none;
}

/* Floating Cards autour du phone */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary);
    animation: float-card 4s ease-in-out infinite;
}

.floating-card span {
    font-size: 18px;
}

.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: -50px;
    animation-delay: -1.5s;
}

.card-3 {
    bottom: 15%;
    right: -40px;
    animation-delay: -3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0; top: 20px; }
}

.scroll-indicator span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================================================
   Animations
   ===================================================== */
.animate-pop {
    animation: pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pop {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* AOS */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* =====================================================
   Features Section
   ===================================================== */
.features {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    background: var(--bg-cream);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid var(--primary);
}

.section-header h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--primary);
    line-height: 1.1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-cream);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--primary);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon {
    font-size: 36px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.cta-card {
    background: var(--primary);
    border-radius: var(--radius-2xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-circle.c1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-circle.c2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.cta-circle.c3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-emoji {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

.cta-content h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   Legal Section
   ===================================================== */
.legal {
    padding: 100px 0;
    background: var(--white);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.legal-card {
    background: var(--bg-cream);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    text-align: center;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.legal-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.legal-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary);
}

.legal-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary);
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 56px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-3px);
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   Blog Page - Coming Soon
   ===================================================== */
.blog-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.coming-soon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
}

.coming-soon-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.icon-main {
    font-size: 80px;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: ring-pulse 2s ease-out infinite;
}

.icon-ring.ring-2 {
    animation-delay: 0.4s;
}

.icon-ring.ring-3 {
    animation-delay: 0.8s;
}

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.coming-soon h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.coming-soon p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.coming-soon-features {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cs-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary);
    font-weight: 700;
    font-size: 15px;
}

.cs-emoji {
    font-size: 20px;
}

.newsletter-box {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary);
    margin-bottom: 32px;
}

.newsletter-box h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 4px rgba(201, 51, 37, 0.1);
}

.newsletter-form button {
    padding: 16px 28px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

.back-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
}

.footer-mini {
    padding: 24px 0;
    background: var(--primary);
    text-align: center;
}

.footer-mini p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* =====================================================
   Legal Pages (CGU, Confidentialité)
   ===================================================== */
.legal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-cream);
}

.legal-content {
    flex: 1;
    padding: 140px 24px 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.legal-date {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto 48px;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary);
}

.legal-body h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin: 32px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border, #E5E7EB);
}

.legal-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0 12px;
}

.legal-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-body ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-body li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-body a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
}

.legal-body a:hover {
    text-decoration: underline;
}

.legal-content .back-link {
    display: block;
    text-align: center;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.legal-content .back-link:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .legal-body {
        padding: 32px 24px;
    }
    
    .legal-body h2 {
        font-size: 20px;
    }
    
    .legal-body p, .legal-body li {
        font-size: 15px;
    }
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-phone {
        order: 2;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-cta, .category-badges {
        justify-content: center;
    }
    
    .social-proof {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .logo-img {
        height: 48px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-phone {
        order: 2;
        margin-top: 32px;
        margin-bottom: 0;
    }
    
    .category-badges {
        display: none;
    }
    
    .social-proof {
        display: none;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .phone-frame {
        width: 220px;
        height: 460px;
        border-radius: 40px;
    }
    
    .phone-screen {
        border-radius: 32px;
    }
    
    .phone-dynamic-island {
        width: 70px;
        height: 22px;
    }
    
    .floating-card {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 8px;
    }
    
    .floating-card span {
        font-size: 14px;
    }
    
    .card-1 {
        right: 5px;
        top: 15%;
    }
    
    .card-2 {
        left: 5px;
        top: 40%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .download-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        opacity: 0.85;
    }
    
    .download-btn .btn-content {
        padding: 14px 24px;
    }
    
    .download-btn .btn-icon {
        width: 26px;
        height: 26px;
    }
    
    .download-btn .btn-label {
        font-size: 10px;
    }
    
    .download-btn .btn-store {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .download-btn {
        width: 100%;
        max-width: 320px;
        opacity: 0.85;
    }
    
    .cta-buttons .download-btn .btn-content {
        padding: 14px 24px;
    }
    
    .cta-buttons .download-btn .btn-icon {
        width: 26px;
        height: 26px;
    }
    
    .cta-buttons .download-btn .btn-label {
        font-size: 10px;
    }
    
    .cta-buttons .download-btn .btn-store {
        font-size: 15px;
    }
    
    .cta-card {
        padding: 60px 32px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .category-badges {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 240px;
        height: 500px;
        border-radius: 42px;
    }
    
    .phone-screen {
        border-radius: 32px;
    }
    
    .badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .badge-new {
        display: none;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .features, .legal {
        padding: 80px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .feature-card, .legal-card {
        padding: 28px;
    }
}
