/* ============================================================
   GEOFIXE — Page Application / Tutoriel (refonte V2 clair)
   ============================================================ */

.app-hero { text-align: center; padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.app-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); }
.app-hero p { max-width: 50ch; margin: 1rem auto 0; }

/* Showcase de l'app */
.app-showcase {
    background: var(--surface); border: var(--card-border);
    border-radius: var(--r-xl); padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-md); max-width: 920px; margin-inline: auto;
}
.app-showcase__label { display: inline-block; }
.app-showcase__body { display: grid; gap: 2rem; align-items: center; margin-top: 1.25rem; }
@media (min-width: 760px) { .app-showcase__body { grid-template-columns: 1.4fr 1fr; } }
.app-showcase__left { display: flex; gap: 1.25rem; align-items: flex-start; }
.app-icon {
    flex: none; width: 64px; height: 64px; border-radius: var(--r-lg);
    display: grid; place-items: center;
    background: var(--gradient-primary, linear-gradient(135deg,#7C4DF0,#6D3BEB));
}
.app-icon svg { width: 40px; height: 40px; }
.app-showcase__name { font-size: 1.4rem; }
.app-showcase__desc { color: var(--muted); margin-top: .3rem; }
.app-features { margin-top: 1rem; display: grid; gap: .55rem; }
.app-features li { display: flex; align-items: center; gap: .55rem; font-size: .95rem; color: var(--ink-soft); }
.app-features li svg { width: 18px; height: 18px; flex: none; }
.app-showcase__right { text-align: center; }
.app-showcase__cta-label { font-weight: 600; color: var(--ink-soft); margin-bottom: .8rem; }
.store-badges { display: flex; flex-direction: column; gap: .6rem; align-items: center; }
.store-badges img { height: 50px; width: auto; border-radius: 8px; }

/* Étapes du tutoriel */
.tutorial-steps { display: grid; gap: 1.5rem; max-width: 920px; margin-inline: auto; }
.tutorial-step {
    background: var(--surface); border: var(--card-border);
    border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-sm);
    display: grid; gap: 1.25rem; align-items: center;
}
@media (min-width: 680px) { .tutorial-step { grid-template-columns: 1.5fr 1fr; } }
.tutorial-step__head { display: flex; align-items: center; gap: .9rem; margin-bottom: .6rem; }
.tutorial-step__num {
    width: 38px; height: 38px; border-radius: 50%; flex: none;
    display: grid; place-items: center;
    background: var(--brand); color: #fff; font-weight: 700; font-family: var(--font-display);
}
.tutorial-step__head h3 { font-size: 1.2rem; }
.tutorial-step p { color: var(--ink-soft); line-height: 1.7; }
.tutorial-step a { color: var(--brand-600); font-weight: 600; text-decoration: underline; }
.tutorial-step__img img {
    border-radius: var(--r-md); box-shadow: var(--shadow-md);
    margin-inline: auto; max-height: 360px; width: auto;
}
