/* ==========================================================================
   AxoFree — Design system
   Thème : pro, simple, fond blanc, couleur principale #43BA1C
   ========================================================================== */

:root {
    /* ===== Thème sombre — couleur principale conservée : #43BA1C ===== */
    --brand:        #43BA1C;
    --brand-600:    #4ecb22;   /* hover, légèrement plus clair */
    --brand-700:    #74e155;   /* accents & texte vert sur fond sombre */
    --brand-050:    rgba(67, 186, 28, .12);  /* fonds verts translucides */
    --brand-100:    rgba(67, 186, 28, .26);  /* bordures vertes */
    --brand-glow:   rgba(67, 186, 28, .40);

    --ink:          #e9f1ea;   /* texte principal */
    --ink-soft:     #a6b6ac;   /* texte secondaire */
    --muted:        #71827a;
    --line:         #232e27;   /* bordures / séparateurs */
    --bg:           #0c110e;   /* fond principal */
    --bg-soft:      #111813;   /* fond alterné */
    --bg-card:      #141c17;   /* cartes */
    --bg-input:     #0f1611;   /* champs de saisie */

    --danger:       #ff6b6b;
    --danger-bg:    rgba(255, 107, 107, .14);
    --success:      var(--brand);

    --radius:       16px;
    --radius-sm:    10px;
    --radius-lg:    24px;
    --shadow-sm:    0 1px 2px rgba(0,0,0,.4), 0 1px 3px rgba(0,0,0,.3);
    --shadow:       0 12px 34px rgba(0,0,0,.45);
    --shadow-brand: 0 10px 30px -8px var(--brand-glow);

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --maxw: 1160px;
    --nav-h: 68px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .4em; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; color: var(--ink-soft); }
a  { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Icônes Lucide : taille/couleur cohérentes */
[data-lucide] { width: 20px; height: 20px; stroke-width: 2; vertical-align: middle; }

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
    --bh: 46px;
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    height: var(--bh); padding: 0 20px;
    border-radius: 999px; border: 1px solid transparent;
    font: inherit; font-weight: 650; font-size: .96rem;
    cursor: pointer; white-space: nowrap;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
    background: var(--brand); color: #fff;
    box-shadow: var(--shadow-brand);
}
.btn-primary:hover { background: var(--brand-600); box-shadow: 0 14px 34px -8px var(--brand-glow); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-700); background: var(--brand-050); }
.btn-lg { --bh: 54px; padding: 0 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.nav {
    position: sticky; top: 0; z-index: 50;
    height: var(--nav-h);
    background: rgba(12,17,14,.78);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; font-size: 1.18rem; letter-spacing: -.03em; }
.brand-img { height: 36px; width: auto; display: block; }
.nav .brand-img, .auth-card .brand-img { height: 38px; }
.footer .brand-img { height: 40px; }
.brand-logo {
    width: 30px; height: 30px; border-radius: 9px;
    display: grid; place-items: center; color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-700));
    box-shadow: var(--shadow-brand);
}
.brand-logo [data-lucide] { width: 18px; height: 18px; }
.brand b { color: var(--brand-700); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a.link {
    padding: 8px 14px; border-radius: 10px; color: var(--ink-soft);
    font-weight: 550; font-size: .95rem; transition: background .18s, color .18s;
}
.nav-links a.link:hover { background: var(--bg-soft); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Pilule "espace client / utilisateur" */
.user-pill {
    display: inline-flex; align-items: center; gap: 9px;
    height: 44px; padding: 0 8px 0 14px;
    border: 1px solid var(--line); border-radius: 999px;
    font-weight: 650; font-size: .93rem; color: var(--ink);
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.user-pill:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.user-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .85rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-700));
}

.nav-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 72px; }
.hero-bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(60% 50% at 50% -10%, var(--brand-050), transparent 70%),
        radial-gradient(40% 40% at 85% 10%, rgba(67,186,28,.10), transparent 70%);
}
.hero-grid {
    position: absolute; inset: 0; z-index: -1; opacity: .5;
    background-image: linear-gradient(var(--line) 1px, transparent 1px),
                      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(70% 55% at 50% 0%, #000, transparent 75%);
            mask-image: radial-gradient(70% 55% at 50% 0%, #000, transparent 75%);
}
.hero-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px; border-radius: 999px;
    background: var(--brand-050); color: var(--brand-700);
    border: 1px solid var(--brand-100);
    font-weight: 650; font-size: .85rem; margin-bottom: 22px;
}
.badge [data-lucide] { width: 15px; height: 15px; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .grad {
    background: linear-gradient(120deg, var(--brand), var(--brand-700));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(1.02rem, 2vw, 1.22rem); color: var(--ink-soft); max-width: 620px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .88rem; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.hero-note [data-lucide] { width: 15px; height: 15px; color: var(--brand); }

/* Carte "aperçu console" flottante */
.hero-preview {
    margin: 54px auto 0; max-width: 880px;
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    background: #0e1512; color: #cfeee0; overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(16,26,18,.4);
}
.hero-preview .bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #0a0f0c; border-bottom: 1px solid #1c2620; }
.hero-preview .dot { width: 11px; height: 11px; border-radius: 50%; background: #2a3a30; }
.hero-preview .dot.g { background: var(--brand); }
.hero-preview .bar span { margin-left: 8px; font-size: .8rem; color: #6f8578; }
.hero-preview pre { margin: 0; padding: 20px 22px; font: .86rem/1.7 ui-monospace, "SF Mono", Menlo, Consolas, monospace; overflow-x: auto; text-align: left; }
.hero-preview .c-g { color: var(--brand); }
.hero-preview .c-m { color: #6f8578; }
.hero-preview .c-w { color: #e8f6ef; }

/* --------------------------------------------------------------------------
   Sections génériques
   -------------------------------------------------------------------------- */
section { padding: 76px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow { color: var(--brand-700); font-weight: 750; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.section-head h2 { margin: 10px 0 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* Bandeau specs */
.specs { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.spec {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.spec:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.spec .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin: 0 auto 14px; background: var(--brand-050); color: var(--brand-700); }
.spec .ic [data-lucide] { width: 24px; height: 24px; }
.spec .num { font-size: 1.9rem; font-weight: 850; letter-spacing: -.03em; }
.spec .lbl { color: var(--muted); font-size: .92rem; font-weight: 550; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.feature .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: linear-gradient(135deg, var(--brand-050), var(--brand-100)); color: var(--brand-700); }
.feature .ic [data-lucide] { width: 24px; height: 24px; }
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; font-size: .96rem; }

/* Étapes (comment ça marche) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); box-shadow: var(--shadow-sm); }
.step .n { counter-increment: step; width: 40px; height: 40px; border-radius: 11px; background: var(--brand); color: #fff; font-weight: 850; display: grid; place-items: center; margin-bottom: 14px; }
.step .n::before { content: counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; font-size: .95rem; }

/* Mise en avant AxoHost (offre premium) */
.axohost {
    position: relative; overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #16241a, #0e1712);
    border: 1px solid var(--brand-100);
    color: #eaf5ee; padding: 52px 48px;
    box-shadow: 0 30px 60px -25px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.03);
}
.axohost::after {
    content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, var(--brand-glow), transparent 65%);
}
.axohost .inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.axohost .eyebrow { color: var(--brand); font-weight: 750; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.axohost h2 { color: #fff; margin: 10px 0 12px; }
.axohost p { color: #b9ccc0; }
.axohost ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.axohost li { display: flex; align-items: center; gap: 11px; color: #dbebe1; font-weight: 550; }
.axohost li [data-lucide] { color: var(--brand); width: 20px; height: 20px; flex: none; }
.axohost .cta-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius); padding: 26px; backdrop-filter: blur(6px);
}
.axohost .cta-card .pfrom { color: #9db3a6; font-size: .9rem; }
.axohost .cta-card .price { font-size: 2.2rem; font-weight: 850; color: #fff; letter-spacing: -.03em; }
.axohost .cta-card .price small { font-size: .95rem; font-weight: 550; color: #9db3a6; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.qa { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-card); overflow: hidden; }
.qa summary { cursor: pointer; padding: 18px 20px; font-weight: 650; display: flex; align-items: center; justify-content: space-between; gap: 12px; list-style: none; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .chev { transition: transform .25s; color: var(--muted); }
.qa[open] summary .chev { transform: rotate(180deg); color: var(--brand); }
.qa .a { padding: 0 20px 18px; color: var(--ink-soft); font-size: .96rem; }

/* CTA final */
.cta-final { text-align: center; }
.cta-final .box {
    background: linear-gradient(135deg, var(--brand-050), var(--bg-soft));
    border: 1px solid var(--brand-100); border-radius: var(--radius-lg);
    padding: 56px 32px; box-shadow: var(--shadow-sm);
}

/* Footer */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 14px; }
.footer a { display: block; color: var(--ink-soft); padding: 5px 0; font-size: .93rem; }
.footer a:hover { color: var(--brand-700); }
.footer .muted { color: var(--muted); font-size: .9rem; max-width: 280px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: .88rem; }

/* --------------------------------------------------------------------------
   Emplacements publicitaires (monétisation, discrète)
   -------------------------------------------------------------------------- */
.ad-slot {
    max-width: var(--maxw); margin: 0 auto; padding: 10px 24px;
}
.ad-inner {
    border: 1px dashed var(--line); border-radius: var(--radius-sm);
    min-height: 90px; display: grid; place-items: center;
    color: var(--muted); font-size: .82rem; background: var(--bg-soft);
}

/* --------------------------------------------------------------------------
   Formulaires (auth)
   -------------------------------------------------------------------------- */
.auth-wrap { min-height: calc(100vh - var(--nav-h)); display: grid; place-items: center; padding: 40px 20px; position: relative; overflow: hidden; }
.auth-wrap .hero-bg, .auth-wrap .hero-grid { position: absolute; }
.auth-card {
    width: 100%; max-width: 460px; background: var(--bg-card);
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); padding: 36px; position: relative; z-index: 1;
}
.auth-card .top { text-align: center; margin-bottom: 26px; }
.auth-card .top .brand { justify-content: center; margin-bottom: 16px; }
.auth-card h1 { font-size: 1.6rem; margin-bottom: 6px; }
.auth-card .top p { font-size: .95rem; margin: 0; }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.input-wrap { position: relative; width: 100%; }
/* Tout input dans un input-wrap prend toute la largeur (corrige les champs coupés) */
.input-wrap > input:not([type="checkbox"]):not([type="radio"]) { width: 100%; }
.input-wrap [data-lucide].lead { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.field input {
    width: 100%; height: 50px; padding: 0 14px 0 44px;
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    font: inherit; font-size: .98rem; background: var(--bg-input); color: var(--ink);
    transition: border-color .18s, box-shadow .18s;
}
.field input::placeholder { color: var(--muted); }
.field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-050); }
.field input.no-icon { padding-left: 14px; }
.pw-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: 0; padding: 8px; cursor: pointer; color: var(--muted); }
.pw-toggle:hover { color: var(--ink); }

.field-error { color: var(--danger); font-size: .84rem; margin-top: 6px; display: none; }
.field.invalid input { border-color: var(--danger); }
.field.invalid .field-error { display: block; }

.check-row { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 20px; font-size: .92rem; }
.check { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; color: var(--ink-soft); }
.check input { width: 18px; height: 18px; accent-color: var(--brand); }

.alert { padding: 12px 15px; border-radius: var(--radius-sm); font-size: .92rem; margin-bottom: 18px; display: flex; gap: 10px; align-items: flex-start; }
.alert [data-lucide] { flex: none; width: 18px; height: 18px; margin-top: 1px; }
.alert-error { background: var(--danger-bg); color: var(--danger); }
.alert-ok { background: var(--brand-050); color: var(--brand-700); }

.auth-alt { text-align: center; margin-top: 22px; font-size: .93rem; color: var(--ink-soft); }
.auth-alt a { color: var(--brand-700); font-weight: 650; }

/* honeypot toujours caché */
.axo-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Force du mot de passe */
.pw-meter { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; margin-top: 8px; }
.pw-meter i { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--danger); transition: width .3s, background .3s; }
.pw-hint { font-size: .8rem; color: var(--muted); margin-top: 6px; }

/* --------------------------------------------------------------------------
   Wizard d'inscription (multi-étapes animé)
   -------------------------------------------------------------------------- */
.wizard-card { max-width: 560px; }
.stepper { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 28px; }
.stepper .s { display: flex; align-items: center; gap: 6px; }
.stepper .bubble {
    width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
    border: 2px solid var(--line); color: var(--muted); font-weight: 750; font-size: .9rem;
    background: var(--bg-card); transition: all .3s;
}
.stepper .s.active .bubble { border-color: var(--brand); color: var(--brand-700); box-shadow: 0 0 0 4px var(--brand-050); }
.stepper .s.done .bubble { border-color: var(--brand); background: var(--brand); color: #fff; }
.stepper .track { width: 42px; height: 2px; background: var(--line); border-radius: 2px; transition: background .3s; }
.stepper .track.filled { background: var(--brand); }

.wstep { display: none; animation: stepIn .45s cubic-bezier(.2,.7,.2,1); }
.wstep.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.wstep .lead-title { text-align: center; margin-bottom: 4px; }
.wstep .lead-sub { text-align: center; color: var(--ink-soft); font-size: .95rem; margin-bottom: 24px; }

/* Choix en cartes (Java/Bedrock, loader...) */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 8px; }
.choice {
    position: relative; border: 1.5px solid var(--line); border-radius: var(--radius);
    padding: 20px; cursor: pointer; text-align: center; background: var(--bg-card);
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.choice:hover { border-color: var(--brand-100); transform: translateY(-2px); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin: 0 auto 12px; background: var(--brand-050); color: var(--brand-700); }
.choice h4 { margin: 0 0 4px; font-size: 1.02rem; }
.choice p { margin: 0; font-size: .85rem; color: var(--muted); }
.choice.selected { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-050); }
.choice .tick { position: absolute; top: 12px; right: 12px; opacity: 0; transform: scale(.6); transition: .2s; color: var(--brand); }
.choice.selected .tick { opacity: 1; transform: scale(1); }

.wizard-actions { display: flex; gap: 12px; margin-top: 26px; }
.wizard-actions .btn { flex: 1; }

/* Écran de préparation (étape 3) */
.prep { text-align: center; padding: 20px 0; }
.prep .spinner {
    width: 76px; height: 76px; margin: 0 auto 24px; border-radius: 50%;
    border: 5px solid var(--brand-050); border-top-color: var(--brand);
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.prep-progress { height: 8px; background: var(--brand-050); border-radius: 999px; overflow: hidden; max-width: 340px; margin: 20px auto 16px; }
.prep-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--brand-600)); border-radius: 999px; transition: width .5s ease; }
.prep .tip { min-height: 46px; color: var(--ink-soft); font-size: .95rem; transition: opacity .4s; }
.prep .tip b { color: var(--brand-700); }
.prep .status { color: var(--muted); font-size: .85rem; margin-top: 10px; }

/* --------------------------------------------------------------------------
   Animations d'apparition au scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
    * { animation: none !important; scroll-behavior: auto !important; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .steps { grid-template-columns: 1fr; }
    .axohost .inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-burger { display: inline-flex; }
    .nav.open .nav-links {
        display: flex; position: absolute; top: var(--nav-h); left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 4px; padding: 14px 24px 20px;
        background: var(--bg-card); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    }
    .axohost { padding: 36px 24px; }
    .choice-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
