/* =============================================
   ALDE ROBO IA — CSS
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:         #07090f;
    --bg-2:       #0b0e18;
    --bg-3:       #0f1320;
    --blue:       #0066cc;
    --blue-dark:  #004fa3;
    --blue-glow:  rgba(0, 102, 204, .35);
    --pink:       #e0127c;
    --pink-glow:  rgba(224, 18, 124, .35);
    --text:       #eef2ff;
    --text-2:     #8a96b0;
    --text-3:     #424f6a;
    --border:     rgba(255,255,255,.07);
    --radius:     12px;
    --radius-lg:  16px;
    --radius-pill: 9999px;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--blue-dark); border-radius: 3px; }

/* ---- UTILS ---- */
.text-blue { color: var(--blue); }
.text-gold  { color: var(--pink); }  /* classe conservée, couleur = rose */

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 2rem;
    background: rgba(7, 9, 15, .30);
    backdrop-filter: blur(12px);
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    background: rgba(7, 9, 15, .85);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}
.nav-container {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center;
    height: 72px;
    position: relative;
    gap: 1rem;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--text);
    font-weight: 700; font-size: 1.1rem;
    flex-shrink: 0;
}
/* Logo ALDE PNG dans la nav */
.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
    flex-shrink: 0;
}
/* Badge ALDE fallback (si pas de logo) */
.alde-badge {
    height: 34px;
    padding: 0 10px;
    background: var(--blue);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 900; color: #fff;
    letter-spacing: .1em;
    flex-shrink: 0;
}

/* liens centrés absolument dans la navbar */
.nav-links {
    display: flex; list-style: none; gap: .25rem;
    position: absolute; left: 50%; transform: translateX(-50%);
    margin: 0;
}
.nav-links a {
    display: block; padding: .5rem .9rem;
    color: var(--text-2); text-decoration: none; font-size: .9rem; font-weight: 500;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }

/* ── Sélecteur de langue (nav) ── */
.lang-switcher {
    display: flex; gap: 4px;
    margin-left: auto;
}
.lang-btn {
    padding: .35rem .65rem;
    border-radius: 8px;
    background: none;
    border: 1px solid transparent;
    color: var(--text-2);
    font-size: .78rem; font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--border); color: var(--text); }
.lang-btn.active {
    background: rgba(0, 102, 204, .12);
    border-color: rgba(0, 102, 204, .35);
    color: var(--blue);
}

.nav-cta { flex-shrink: 0; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text-2); border-radius: 2px;
    transition: var(--transition);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 10px 20px; height: 40px;
    border-radius: var(--radius-pill); font-weight: 500; font-size: .875rem;
    cursor: pointer; text-decoration: none; border: none;
    transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
    background: var(--blue); color: #fff;
    box-shadow: 0 0 24px var(--blue-glow);
}
.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 0 36px rgba(0,102,204,.55);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent; color: var(--text);
    border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.3);
}
.btn-lg  { padding: 14px 28px; height: auto; font-size: .9375rem; }
.btn-icon { gap: 10px; }

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: stretch;
    padding-top: 72px;
    overflow: hidden;
}
/* Tache bleue EU — derrière le texte */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 34% 46% at 32% 52%, rgba(0, 80, 180, 0.52) 0%, transparent 72%);
    pointer-events: none; z-index: 0;
    animation: glowBreath 7s ease-in-out infinite alternate;
}
/* Tache rose/magenta — derrière le robot */
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 28% 40% at 70% 55%, rgba(168, 22, 72, 0.38) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
    animation: glowBreath 9s ease-in-out infinite alternate-reverse;
}
.hero-content {
    position: relative; z-index: 2;
    width: 48%; min-width: 360px; flex-shrink: 0;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 3rem 0 max(calc((100vw - 1280px) / 2), 2rem);
    animation: fadeInUp .8s ease both;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: .4rem .9rem; border-radius: 100px;
    background: rgba(0, 102, 204, .12);
    border: 1px solid rgba(0, 102, 204, .3);
    color: var(--blue); font-size: .8rem; font-weight: 600;
    margin-bottom: 1.75rem;
    width: fit-content;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700; line-height: 1.15;
    letter-spacing: -.01em;
    margin-bottom: 1.25rem;
}
.hero-alde-mark {
    height: 1.1em;
    width: auto;
    display: block;
}
.hero-desc {
    font-size: 18px; color: var(--text-2); line-height: 1.625;
    max-width: 512px; margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-robot {
    position: absolute;
    top: 75px; bottom: 0;
    left: 30%; right: -220px;
    pointer-events: none; z-index: 1;
}
.hero-robot spline-viewer {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}
.robot-loader {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 0;
}
.robot-loader-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(0,102,204,.2);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* Chevrons ALDE animés (scroll hint) */
.scroll-hint {
    position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    z-index: 2; cursor: pointer;
}
.alde-chevron {
    width: 54px; display: block;
}
.alde-chevron--blue {
    animation: chevronFall 1.9s ease-in-out infinite;
}
.alde-chevron--pink {
    margin-top: -13px;
    animation: chevronFall 1.9s ease-in-out 0.28s infinite;
}

/* ============ FEATURES ============ */
.features {
    padding: 8rem 2rem;
    position: relative;
}
.features::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--blue-dark), transparent);
}
.section-container { max-width: 1100px; margin: 0 auto; }
.section-badge {
    display: block; width: fit-content; margin: 0 auto 1.5rem;
    padding: 6px 16px; border-radius: 9999px;
    background: rgba(0, 102, 204, .10);
    border: 1px solid rgba(0, 102, 204, .25);
    color: var(--blue);
    font-size: 14px; font-weight: 600;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 48px; font-weight: 700;
    text-align: center; margin-bottom: 1rem; color: var(--text);
}
.section-subtitle {
    text-align: center; color: var(--text-2);
    font-size: 18px; margin-bottom: 4rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    opacity: 0; transform: translateY(30px);
}
.feature-card.visible {
    opacity: 1; transform: translateY(0);
    transition: opacity .6s ease, transform .6s ease, border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
    border-color: rgba(0,102,204,.3);
    box-shadow: 0 0 40px rgba(0,102,204,.08);
    transform: translateY(-4px);
}
.feature-icon {
    width: 48px; height: 48px;
    background: rgba(0,102,204,.12); border: 1px solid rgba(0,102,204,.2);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); margin-bottom: 1.25rem;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px; font-weight: 600; margin-bottom: .6rem;
}
.feature-card p { color: var(--text-2); font-size: 16px; line-height: 1.65; }

/* ============ CTA ============ */
.cta-section {
    padding: 8rem 2rem;
    background: radial-gradient(ellipse 80% 50% at 50% 60%, rgba(0,50,130,.18) 0%, transparent 70%);
}
.cta-inner { text-align: center; }
.cta-icon {
    width: 64px; height: 64px; margin: 0 auto 2rem;
    background: rgba(0,102,204,.12); border: 1px solid rgba(0,102,204,.25);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 48px; font-weight: 700; margin-bottom: 1rem;
}
.cta-section p { color: var(--text-2); font-size: 18px; margin-bottom: 2.5rem; line-height: 1.625; }

/* ============ FOOTER ============ */
.footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-container {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-left { display: flex; align-items: center; gap: 1.5rem; }
.footer-left p { color: var(--text-3); font-size: .85rem; }
.footer-right { display: flex; gap: 1.5rem; }
.footer-right a { color: var(--text-3); font-size: .85rem; text-decoration: none; transition: color var(--transition); }
.footer-right a:hover { color: var(--text); }

/* ============ CHAT WIDGET ============ */
.chat-fab {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
    width: 52px; height: 52px;
    background: var(--blue); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer;
    box-shadow: 0 4px 24px var(--blue-glow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.chat-fab:hover { transform: scale(1.1); box-shadow: 0 4px 36px rgba(0,102,204,.6); }
.chat-fab.hidden { opacity: 0; pointer-events: none; transform: scale(.8); }

.chat-panel {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 300;
    width: 400px; max-width: 100vw;
    background: var(--bg-2); border-left: 1px solid var(--border);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.4);
}
.chat-panel.open { transform: translateX(0); }

.chat-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0; gap: .5rem;
}
.chat-panel-info { display: flex; align-items: center; gap: 10px; }
.chat-panel-avatar {
    width: 36px; height: 36px;
    background: var(--blue); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
/* Avatar ALDE — texte blanc */
.alde-avatar {
    font-size: .58rem; font-weight: 900; letter-spacing: .06em; color: #fff;
}
.chat-panel-info strong { display: block; font-weight: 700; font-size: .92rem; }
.chat-status {
    font-size: .75rem; color: #34d399;
    display: flex; align-items: center; gap: 5px;
}
.chat-status::before {
    content: ''; display: inline-block;
    width: 7px; height: 7px; border-radius: 50%; background: #34d399;
}
.chat-panel-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.chat-action-btn {
    width: 32px; height: 32px; border-radius: 7px;
    background: none; border: none; cursor: pointer;
    color: var(--text-2); display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), color var(--transition);
}
.chat-action-btn:hover { background: rgba(255,255,255,.07); color: var(--text); }

/* ── Sélecteur de langue dans le header du chat ── */
.chat-lang-switcher {
    display: flex; gap: 2px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2px;
}
.chat-lang-btn {
    padding: .2rem .45rem;
    border-radius: 6px;
    background: none; border: none;
    color: var(--text-3);
    font-size: .72rem; font-weight: 700; letter-spacing: .03em;
    cursor: pointer;
    transition: all var(--transition);
}
.chat-lang-btn:hover { color: var(--text-2); }
.chat-lang-btn.active {
    background: var(--blue);
    color: #fff;
}

.chat-panel-body { flex: 1; overflow-y: auto; padding: 1.5rem; }

.chat-welcome {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 2rem 0 1rem;
}
.chat-welcome-icon {
    width: 64px; height: 64px; border-radius: var(--radius-lg);
    background: rgba(0,102,204,.12); border: 1px solid rgba(0,102,204,.25);
    color: var(--blue); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.chat-welcome h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.chat-welcome p { color: var(--text-2); font-size: .88rem; line-height: 1.6; max-width: 290px; }

/* Questions suggérées */
.suggested-questions {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; margin-top: 1.25rem;
}
.suggestion-chip {
    padding: .42rem .88rem; border-radius: 100px;
    background: rgba(0,102,204,.08); border: 1px solid rgba(0,102,204,.2);
    color: var(--text-2); font-size: .8rem; cursor: pointer;
    transition: all var(--transition); text-align: left;
}
.suggestion-chip:hover {
    background: rgba(0,102,204,.16); border-color: rgba(0,102,204,.4);
    color: var(--text); transform: translateY(-1px);
}
.topic-chip {
    background: rgba(224,18,124,.08); border-color: rgba(224,18,124,.25);
    font-weight: 500;
}
.topic-chip:hover {
    background: rgba(224,18,124,.16); border-color: rgba(224,18,124,.5);
}
.topic-chip-icon { margin-right: .25rem; }

.chat-messages { display: flex; flex-direction: column; gap: 12px; margin-top: 1rem; }
.msg { display: flex; gap: 10px; align-items: flex-end; }
.msg.msg-user { flex-direction: row-reverse; }
.msg-avatar {
    width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
    background: var(--blue); display: flex; align-items: center; justify-content: center;
    font-size: .56rem; font-weight: 900; color: #fff;
    letter-spacing: .05em; overflow: hidden;
}
/* Avatar avec logo PNG : fond blanc pour que le logo coloré ressorte */
.msg-avatar-alde {
    background: #fff;
    padding: 3px;
}
.msg-avatar-alde img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.msg-bubble {
    max-width: 78%; padding: .65rem 1rem; border-radius: 14px;
    font-size: .875rem; line-height: 1.55;
}
.msg.msg-bot .msg-bubble {
    background: var(--bg-3); color: var(--text);
    border-radius: 14px 14px 14px 4px;
}
.msg.msg-user .msg-bubble {
    background: var(--blue); color: #fff;
    border-radius: 14px 14px 4px 14px;
}
.typing-indicator {
    display: flex; gap: 4px; align-items: center;
    padding: .65rem 1rem; background: var(--bg-3);
    border-radius: 14px 14px 14px 4px;
}
.typing-indicator span {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--text-3); animation: typing .9s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: .2s; }
.typing-indicator span:nth-child(3) { animation-delay: .4s; }

.chat-panel-footer {
    display: flex; gap: 10px; align-items: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.chat-input {
    flex: 1; padding: .75rem 1rem; border-radius: var(--radius);
    background: var(--bg-3); border: 1px solid var(--border);
    color: var(--text); font-size: .9rem; outline: none;
    transition: border-color var(--transition);
    font-family: inherit;
}
.chat-input::placeholder { color: var(--text-3); }
.chat-input:focus { border-color: rgba(0,102,204,.5); }
.chat-send {
    width: 42px; height: 42px; border-radius: var(--radius);
    background: var(--blue); border: none; cursor: pointer;
    color: #fff; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background var(--transition), transform var(--transition);
}
.chat-send:hover { background: var(--blue-dark); transform: scale(1.05); }
.chat-send:active { transform: scale(.95); }

.chat-overlay {
    position: fixed; inset: 0; z-index: 250;
    background: rgba(0,0,0,.5);
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
}
.chat-overlay.visible { opacity: 1; pointer-events: auto; }

/* Réponses bot avec markdown simple */
.msg-bubble p  { margin-bottom: .6em; }
.msg-bubble p:last-child { margin-bottom: 0; }
.msg-bubble ul, .msg-bubble ol { padding-left: 1.2em; margin-bottom: .6em; }
.msg-bubble li { margin-bottom: .2em; }
.msg-bubble strong { color: var(--text); font-weight: 600; }
.msg-bubble a { color: #5599ee; text-decoration: none; }
.msg-bubble a:hover { text-decoration: underline; }
.msg-bubble code { background: rgba(255,255,255,.07); padding: .1rem .35rem; border-radius: 4px; font-size: .85em; font-family: monospace; }
.msg-bubble hr { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: .75rem 0; }
/* Tous les §§ après la ligne de séparation = footer de réponse */
.msg-bubble hr ~ p { font-size: .81rem; color: var(--text-2); line-height: 1.5; }
.msg-bubble hr ~ p a { color: #6aacff; }
.msg-bubble hr ~ p a:hover { color: var(--text); text-decoration: underline; }

/* ============ ANIMATIONS ============ */
@keyframes glowBreath {
    from { opacity: .6; transform: scale(1); }
    to   { opacity: 1;  transform: scale(1.08); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes chevronFall {
    0%, 100% { transform: translateY(0);   opacity: 1;   }
    50%       { transform: translateY(10px); opacity: 0.5; }
}
@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: .4; }
    50%       { transform: translateY(-4px); opacity: 1; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .lang-switcher { display: none; } /* caché sur mobile → uniquement dans le chat */

    .nav-links {
        display: flex !important;
        flex-direction: column; gap: 0;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(7, 9, 15, .94);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,.08);
        padding: .5rem 1rem 1rem;
        z-index: 10000;
        transform: translateY(-110%);
        opacity: 0; pointer-events: none;
        transition: transform .28s ease, opacity .28s ease;
    }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: .85rem 1rem; font-size: 1rem; border-radius: 10px; color: var(--text-2); }
    .nav-links a:hover { color: var(--text); }
    .navbar.nav-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-toggle span { transition: transform .25s ease, opacity .25s ease; }
    .navbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .navbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .navbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero {
        flex-direction: column; text-align: center;
        padding-top: 0; height: 100svh; min-height: unset; overflow: hidden;
    }
    .hero-content {
        order: 1; width: 100%; min-width: unset; flex-shrink: 0;
        padding: 76px 1.5rem 1.25rem; align-items: center;
    }
    .hero-badge { margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
    .hero-title { font-size: 3rem; margin-bottom: 0.75rem; }
    .hero-alde-mark { height: 2.8rem; margin: 0 auto 0; }
    .hero-desc { max-width: 100%; font-size: 1rem; margin-bottom: 1.25rem; }
    .hero-actions { justify-content: center; gap: .6rem; }
    .hero-robot {
        order: 2; position: relative; width: 100%; flex: 1; min-height: 0;
        left: auto; right: auto; top: auto; bottom: auto;
        pointer-events: none; overflow: hidden;
    }
    .hero-robot spline-viewer {
        position: absolute; inset: 0; width: 100%; height: 100%;
        transform: scale(1.15) translateY(-4%);
        transform-origin: center top;
    }
    .hero-robot::after {
        content: ''; position: absolute; bottom: 0; left: 0; right: 0;
        height: 60px;
        background: linear-gradient(to bottom, transparent, var(--bg));
        pointer-events: none; z-index: 9999;
    }
    .scroll-hint { display: none; }

    .chat-panel { width: 100%; border-left: none; border-top: 1px solid var(--border); }
    .footer-container { flex-direction: column; align-items: flex-start; }
    .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.6rem; }
    .hero-alde-mark { height: 2.4rem; }
    .section-title { font-size: 2rem; }
    .cta-section h2 { font-size: 2rem; }
}
