/* ── VARIABLES ── */
:root {
    --primary: #1565C0;
    --primary-dark: #0D47A1;
    --primary-light: #1976D2;
    --primary-glow: rgba(21, 101, 192, 0.15);
    --business: #2E7D32;
    --business-light: rgba(46, 125, 50, 0.1);
    --gold: #FFB300;
    --bg: #F8FAFF;
    --bg-dark: #0F1629;
    --surface: #FFFFFF;
    --surface-2: #F0F4FF;
    --text: #0F1629;
    --text-secondary: #64748B;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --success: #10B981;
    --error: #EF4444;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(15, 22, 41, 0.06);
    --shadow-md: 0 8px 32px rgba(15, 22, 41, 0.1);
    --shadow-lg: 0 24px 64px rgba(15, 22, 41, 0.14);
    --shadow-glow: 0 8px 32px rgba(21, 101, 192, 0.2);
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ── CONTAINER ── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── HEADER ── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0;
    transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(248, 250, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}
.logo-icon { font-size: 1.4rem; }
.nav { display: flex; gap: 36px; }
.nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switcher {
    display: flex;
    background: var(--surface-2);
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
}
.lang-btn {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px var(--primary-glow);
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-glow);
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(21, 101, 192, 0.3);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: rgba(255,255,255,0.1);
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    opacity: 0.7;
    cursor: not-allowed;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s;
    width: 100%;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-business {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: var(--business);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
    width: 100%;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.2);
}
.btn-business:hover { background: #1B5E20; transform: translateY(-2px); }
.link-btn {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: inherit;
}

/* ── SECTION LABELS & TITLES ── */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 64px;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(21,101,192,0.12) 0%, transparent 70%);
    top: -200px; right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(21,101,192,0.08) 0%, transparent 70%);
    bottom: -100px; left: -50px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(21,101,192,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21,101,192,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1); }
}

/* ── TITRE HERO — clé du fix "tassé" ── */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 28px;
    max-width: 520px;
}
.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary) 0%, #42A5F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 460px;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hero-ios-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ── PHONE MOCKUP ── */
.hero-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.phone-frame {
    position: relative;
    width: 270px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 40px 80px rgba(15, 22, 41, 0.4),
        0 0 40px rgba(21, 101, 192, 0.15);
}
.phone-notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 26px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}
.phone-screen {
    background: #F8FAFF;
    border-radius: 34px;
    padding: 44px 18px 24px;
    min-height: 440px;
    overflow: hidden;
    position: relative;
}
.phone-status-bar {
    height: 6px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 20px;
    opacity: 0.4;
}
.phone-app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.phone-app-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}
.phone-badge {
    background: var(--gold);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50px;
}
.phone-ronde-card {
    background: var(--surface);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.phone-ronde-dot {
    width: 10px; height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
.phone-ronde-info { display: flex; flex-direction: column; flex: 1; }
.phone-ronde-site { font-weight: 600; font-size: 0.82rem; color: var(--text); }
.phone-ronde-timer { font-size: 0.75rem; color: var(--success); font-weight: 600; font-family: monospace; }
.phone-stats { display: flex; gap: 8px; margin-bottom: 18px; }
.phone-stat {
    flex: 1;
    background: var(--surface);
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid var(--border);
}
.phone-stat span { display: block; font-size: 1.1rem; font-weight: 700; margin-bottom: 2px; }
.phone-stat-ok { color: #10B981; }
.phone-stat-warn { color: #F59E0B; }
.phone-stat-danger { color: #EF4444; }
.phone-btn-row { display: flex; gap: 8px; }
.phone-btn {
    flex: 1;
    padding: 11px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
}
.phone-btn-note { background: var(--surface-2); color: var(--primary); border: 1px solid var(--border); }
.phone-btn-stop { background: #FEE2E2; color: #EF4444; }
.phone-screen-glow {
    position: absolute;
    bottom: -20px; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 60px;
    background: radial-gradient(ellipse, rgba(21,101,192,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.phone-shadow {
    width: 200px; height: 20px;
    background: radial-gradient(ellipse, rgba(15,22,41,0.2) 0%, transparent 70%);
    margin-top: 10px;
    filter: blur(8px);
}

/* ── FEATURES ── */
.features {
    padding: 120px 0;
    background: var(--surface);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(21,101,192,0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(21,101,192,0.2); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.feature-icon-blue { background: rgba(21,101,192,0.1); color: var(--primary); }
.feature-icon-green { background: rgba(46,125,50,0.1); color: var(--business); }
.feature-icon-orange { background: rgba(255,152,0,0.1); color: #F57C00; }
.feature-icon-purple { background: rgba(103,58,183,0.1); color: #673AB7; }
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ── PRICING ── */
.pricing {
    padding: 120px 0;
    background: var(--bg);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(21,101,192,0.02) 100%);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card-business {
    border-color: rgba(46,125,50,0.3);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(46,125,50,0.02) 100%);
}
.pricing-badge-recommended {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.04em;
}
.pricing-header { margin-bottom: 24px; }
.pricing-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.pricing-name-business { color: var(--business); }
.pricing-price { display: flex; align-items: baseline; gap: 8px; }
.price-amount {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
}
.price-custom { font-size: 1.4rem; color: var(--business); }
.price-period { font-size: 0.83rem; color: var(--text-secondary); }
.pricing-accroche {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.55;
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}
.pricing-features li.muted { color: var(--text-secondary); }
.check { color: var(--primary); font-weight: 700; flex-shrink: 0; }
.check-green { color: var(--business); }
.cross { color: var(--text-secondary); flex-shrink: 0; }

/* ── GUIDE ── */
.guide {
    padding: 120px 0;
    background: var(--surface);
}
.guide-inner {
    background: linear-gradient(135deg, var(--surface-2) 0%, rgba(21,101,192,0.04) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}
.guide-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}
.guide-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
    font-size: 0.98rem;
}
.guide-btn { gap: 10px; }
.guide-visual { flex-shrink: 0; }
.guide-doc {
    width: 150px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 18px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.guide-doc-header { height: 20px; background: var(--primary); border-radius: 4px; margin-bottom: 16px; opacity: 0.8; }
.guide-doc-line { height: 8px; background: var(--border); border-radius: 4px; margin-bottom: 10px; }
.guide-doc-line-short { width: 60%; }
.guide-doc-line-medium { width: 80%; }
.guide-doc-badge {
    position: absolute;
    top: -10px; right: -10px;
    background: var(--error);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

/* ── RGPD ── */
.rgpd { padding: 80px 0; background: var(--bg); }
.rgpd-inner {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
}
.rgpd-icon {
    width: 56px; height: 56px;
    background: rgba(21,101,192,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.rgpd-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.rgpd-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; }
.rgpd-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* ── CONTACT ── */
.contact { padding: 120px 0; background: var(--surface); }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.2s;
    outline: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-group textarea { resize: vertical; min-height: 150px; line-height: 1.65; }
.form-submit { width: 100%; justify-content: center; position: relative; }
.spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.success-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--radius-sm);
    margin-top: 18px;
    font-size: 0.92rem;
    color: #059669;
}
.success-icon {
    width: 26px; height: 26px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.error-msg {
    padding: 16px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--error);
}
.contact-info-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: sticky;
    top: 92px;
}
.contact-info-card h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-card > p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 18px; }
.contact-email { display: block; font-size: 0.9rem; color: var(--primary); font-weight: 500; margin-bottom: 28px; word-break: break-all; }
.contact-platforms { display: flex; flex-direction: column; gap: 10px; }
.platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text);
}
.platform-badge-soon { opacity: 0.6; }

/* ── FOOTER ── */
.footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 36px 0; }
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 8px; color: white; font-family: var(--font-display); font-weight: 700; }
.footer-by { font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.82rem; }

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,22,41,0.6);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 44px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 32px; height: 32px;
    background: var(--bg);
    border-radius: 50%;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-icon {
    width: 56px; height: 56px;
    background: var(--text);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.modal h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.modal p { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 28px; }
#ios-form { display: flex; flex-direction: column; gap: 12px; }
#ios-email {
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
#ios-email:focus { border-color: var(--primary); }
#ios-success { text-align: center; padding: 20px 0; }
#ios-success .success-icon {
    width: 52px; height: 52px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 18px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .container { padding: 0 28px; }
    .hero-inner { grid-template-columns: 1fr; gap: 56px; }
    .hero-mockup { order: -1; }
    .hero-title { font-size: clamp(2rem, 6vw, 2.8rem); max-width: 100%; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card-featured { transform: none; }
    .pricing-card-featured:hover { transform: translateY(-4px); }
    .contact-inner { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }
    .guide-inner { grid-template-columns: 1fr; padding: 40px 32px; gap: 40px; }
    .guide-visual { display: none; }
    .nav { display: none; }
    .section-title { margin-bottom: 44px; }
}
@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero { padding: 110px 0 70px; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .rgpd-inner { flex-direction: column; padding: 28px 24px; }
    .features { padding: 80px 0; }
    .pricing { padding: 80px 0; }
    .guide { padding: 80px 0; }
    .contact { padding: 80px 0; }
}
