/* =============================================
   FOXYLINO FINANCE — style.css v2
   Fonts : Syne 700/800 + DM Sans 400/500/600
   Palette : #090D18 #0A0F1C #111827 #F59E0B
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --bg:           #090D18;
    --bg-sidebar:   #0A0F1C;
    --bg-card:      #111827;
    --bg-elevated:  #161E2E;
    --border:       #1F2D42;
    --border-soft:  #162030;
    --accent:       #F59E0B;
    --accent-hover: #FBB43A;
    --accent-dim:   rgba(245,158,11,0.12);
    --accent-glow:  rgba(245,158,11,0.25);
    --text:         #F0F4FF;
    --text-sec:     #7A8BA0;
    --text-muted:   #3D4E62;
    --success:      #10B981;
    --danger:       #EF4444;
    --font-head:    'Syne', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --sidebar-w:    230px;
    --radius:       12px;
    --radius-sm:    8px;
    --transition:   0.2s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =============================================
   LAYOUT
   ============================================= */
.app {
    display: flex;
    min-height: 100vh;
}

.main {
    margin-left: var(--sidebar-w);
    flex: 1;
    min-height: 100vh;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
    width: var(--sidebar-w);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 50;
    overflow-y: auto;
}

.sidebar-header {
    padding: 24px 18px 16px;
    border-bottom: 1px solid var(--border-soft);
    flex-shrink: 0;
}

.logo-link { display: block; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.logo-icon { font-size: 22px; }

.logo-text {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.3px;
}

.logo-subtitle {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-left: 32px;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-sec);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
}

.nav-item:hover {
    background: var(--accent-dim);
    color: var(--text);
}

.nav-item.active {
    background: var(--accent-dim);
    color: var(--accent);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 2px;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
}

.nav-icon { font-size: 15px; width: 22px; text-align: center; }

.sidebar-footer {
    padding: 16px 18px;
    border-top: 1px solid var(--border-soft);
    flex-shrink: 0;
}

.footer-link {
    font-size: 11px;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-link:hover { color: var(--text-sec); }

/* =============================================
   PAGE HERO (pages internes)
   ============================================= */
.page-hero {
    padding: 64px 60px 48px;
    border-bottom: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 15px;
    color: var(--text-sec);
    max-width: 500px;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 72px 60px;
    position: relative;
}

.section-alt { background: var(--bg-sidebar); }

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-sec);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   ACCENT
   ============================================= */
.accent { color: var(--accent); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #090D18;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}

.btn-primary.btn-large { padding: 14px 28px; font-size: 15px; }
.btn-primary.btn-block { width: 100%; justify-content: center; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-sec);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.btn-secondary.btn-large { padding: 14px 28px; font-size: 15px; }
.btn-secondary.btn-block { width: 100%; justify-content: center; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-sec);
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition);
    text-decoration: none;
}
.btn-ghost:hover { color: var(--text); }

/* =============================================
   CARDS generiques
   ============================================= */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
}

/* =============================================
   FEATURES GRID
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: rgba(245,158,11,0.25);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon { font-size: 28px; margin-bottom: 16px; }

.feature-card h3 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p { font-size: 13px; color: var(--text-sec); line-height: 1.65; }

/* =============================================
   PERSONAS GRID
   ============================================= */
.personas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.persona-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.persona-card:hover {
    border-color: rgba(245,158,11,0.2);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.persona-card:hover::before { opacity: 1; }

.persona-avatar { font-size: 36px; margin-bottom: 14px; }

.persona-card h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
}

.persona-card > p {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.65;
    margin-bottom: 20px;
}

.persona-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.persona-features li {
    font-size: 13px;
    color: var(--text-sec);
    display: flex;
    align-items: center;
    gap: 8px;
}

.persona-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* =============================================
   PRICING GRID
   ============================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.pricing-highlight {
    border-color: rgba(245,158,11,0.35);
    background: linear-gradient(160deg, #161E2E 0%, #111827 100%);
    box-shadow: 0 0 0 1px rgba(245,158,11,0.1), 0 20px 50px rgba(0,0,0,0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #090D18;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 100px;
}

.pricing-header h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
    line-height: 1;
}

.pricing-price span {
    font-size: 15px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.pricing-header > p { font-size: 13px; color: var(--text-muted); }

.pricing-features ul { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.pricing-features li {
    font-size: 13px;
    color: var(--text-sec);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-features li.disabled { color: var(--text-muted); }

/* =============================================
   FAQ
   ============================================= */
.pricing-faq {
    max-width: 680px;
    margin: 0 auto;
}

.pricing-faq h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
}

.faq-item {
    border-bottom: 1px solid var(--border-soft);
    padding: 20px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.faq-item p { font-size: 13px; color: var(--text-sec); line-height: 1.65; }

/* =============================================
   ROADMAP
   ============================================= */
.roadmap {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-left: 32px;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 7px; top: 12px; bottom: 12px;
    width: 2px;
    background: var(--border-soft);
}

.roadmap-item {
    position: relative;
    padding: 0 0 40px 28px;
}

.roadmap-item:last-child { padding-bottom: 0; }

.roadmap-dot {
    position: absolute;
    left: -25px; top: 6px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--bg-sidebar);
}

.roadmap-item.done .roadmap-dot { background: var(--success); }
.roadmap-item.current .roadmap-dot {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(245,158,11,0.2);
    animation: pulse 2s ease-in-out infinite;
}

.roadmap-content h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.roadmap-date {
    display: inline-block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.roadmap-item.done .roadmap-date { color: var(--success); }
.roadmap-item.current .roadmap-date { color: var(--accent); }

.roadmap-content ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }

.roadmap-content li {
    font-size: 13px;
    color: var(--text-sec);
    padding-left: 12px;
    position: relative;
}

.roadmap-content li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* =============================================
   CHANGELOG
   ============================================= */
.changelog { max-width: 720px; margin: 0 auto; }

.changelog h2 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 28px;
}

.changelog-item {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
}

.changelog-version {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.changelog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }

.changelog-item ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.changelog-item li {
    font-size: 13px;
    color: var(--text-sec);
    padding-left: 14px;
    position: relative;
}

.changelog-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 11px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { text-align: center; }

.cta-card {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, #0D1624 100%);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 20px;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.cta-card p {
    font-size: 15px;
    color: var(--text-sec);
    margin-bottom: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info h2 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-info p { font-size: 14px; color: var(--text-sec); line-height: 1.7; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
}

.contact-item-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.contact-item-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-val { font-size: 13px; color: var(--text-sec); }
.contact-item-val a { color: var(--accent); }
.contact-item-val a:hover { text-decoration: underline; }

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-sec);
    letter-spacing: 0.3px;
}

.form-input {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus { border-color: var(--accent); }

textarea.form-input {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A8BA0' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-submit { margin-top: 4px; }

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    color: var(--success);
    font-weight: 600;
    font-size: 15px;
}

/* =============================================
   MENTIONS LEGALES
   ============================================= */
.mentions-content {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mentions-block h2 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-soft);
}

.mentions-block p {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.mentions-block a { color: var(--accent); }
.mentions-block a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    border-top: 1px solid var(--border-soft);
    padding: 40px 60px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    color: var(--accent);
}

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

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--text-sec); }

.footer-copy { font-size: 12px; color: var(--text-muted); }

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10,15,28,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-soft);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 100;
}

.mobile-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: color var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-item .m-icon { font-size: 18px; }
.mobile-nav-item.active { color: var(--accent); }
.mobile-nav-item:hover { color: var(--text-sec); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(245,158,11,0.2); }
    50%       { box-shadow: 0 0 0 8px rgba(245,158,11,0.08); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes barGrow {
    from { width: 0 !important; }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 60px; }
}

@media (max-width: 900px) {
    .personas-grid  { grid-template-columns: 1fr; }
    .contact-grid   { grid-template-columns: 1fr; gap: 32px; }
    .form-row-2     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sidebar    { display: none; }
    .main       { margin-left: 0; padding-bottom: 72px; }
    .mobile-nav { display: block; }

    .page-hero    { padding: 44px 20px 36px; }
    .section      { padding: 52px 20px; }
    .footer       { padding: 32px 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }

    .features-grid { grid-template-columns: 1fr; gap: 14px; }
    .cta-card      { padding: 44px 24px; }
    .form-card     { padding: 24px 18px; }

    .mentions-content { padding: 0 4px; }
}

@media (max-width: 480px) {
    .cta-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { justify-content: center; }
}