/* ═══════════════════════════════════════════════════
   Assistance Numérique Versailles — style.css v4
   Police ronde moderne · Texte plus grand · Navbar propre
   ═══════════════════════════════════════════════════ */

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

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --or:        #C4952A;
  --or-l:      #E8C46A;
  --or-pale:   #FDF6E3;
  --marine:    #1B2A4A;
  --marine-m:  #243660;
  --marine-l:  #2E4480;
  --vert:      #3A5C3E;
  --fond:      #F7F4EE;
  --blanc:     #FFFFFF;
  --gris:      #5A6478;
  --gris-l:    #E8E2D6;
  --texte:     #1A1F2E;
  --radius:    14px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(27,42,74,.09);
  --shadow-lg: 0 12px 40px rgba(27,42,74,.16);
  --t:         .22s ease;
}

/* ── RESET ───────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 17px }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--fond);
  color: var(--texte);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100% }
a    { text-decoration: none; color: inherit }
button { cursor: pointer; border: none; background: none; font-family: inherit }

/* ── UTILS ──────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 5vw }

/* ══════════════════════════════════════════════════
   NAVBAR — version moderne pill + blur
   ══════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 300;
  background: rgba(27, 42, 74, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(196,149,42,.35);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

/* Logo */
.navbar__brand {
  display: flex; align-items: center; gap: .7rem;
  flex-shrink: 0;
}
.navbar__fleur { width: 32px; height: 32px; fill: var(--or) }
.navbar__name {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--blanc); line-height: 1.2;
  letter-spacing: -.01em;
}
.navbar__name span { color: var(--or-l) }

/* Nav links — desktop only */
.navbar__links {
  display: flex; align-items: center; gap: .2rem;
  flex: 1; justify-content: center;
}
.navbar__links a {
  color: rgba(255,255,255,.75);
  font-size: .88rem; font-weight: 600;
  padding: .45rem .85rem;
  border-radius: 100px;
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.navbar__links a:hover {
  color: var(--blanc);
  background: rgba(255,255,255,.1);
}

/* Right side */
.navbar__right {
  display: flex; align-items: center; gap: .6rem;
  flex-shrink: 0;
}
.navbar__tel {
  display: flex; align-items: center; gap: .4rem;
  color: var(--or-l); font-weight: 700; font-size: .88rem;
  padding: .4rem .8rem;
  border-radius: 100px;
  border: 1px solid rgba(196,149,42,.4);
  transition: background var(--t), border-color var(--t);
  white-space: nowrap;
}
.navbar__tel:hover {
  background: rgba(196,149,42,.12);
  border-color: var(--or);
}
.navbar__tel svg { width: 15px; height: 15px; flex-shrink: 0 }

.navbar__cta {
  background: var(--or);
  color: var(--marine);
  font-weight: 800; font-size: .88rem;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 14px rgba(196,149,42,.4);
  white-space: nowrap;
}
.navbar__cta:hover {
  background: var(--or-l);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,149,42,.5);
}

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: .35rem; width: 38px;
}
.navbar__burger span {
  display: block; height: 2.5px;
  background: var(--blanc); border-radius: 3px;
  transition: all var(--t);
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg) }
.navbar__burger.open span:nth-child(2) { opacity: 0 }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg) }

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--marine-m);
  padding: 1rem 5vw 1.5rem;
  gap: .3rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.navbar__mobile.open { display: flex }
.navbar__mobile a {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem; font-weight: 600;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.navbar__mobile a:last-of-type { border: none }
.navbar__mobile .m-tel {
  color: var(--or-l) !important; font-weight: 800 !important;
  font-size: 1.1rem !important; margin-top: .4rem;
}
.navbar__mobile .m-cta {
  background: var(--or); color: var(--marine);
  font-weight: 800; font-size: 1rem;
  padding: .8rem; border-radius: var(--radius);
  text-align: center; margin-top: .6rem;
  display: block; width: 100%;
}

/* ══════════════════════════════════════════════════
   HERO — bannière pleine largeur + contenu overlay
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--marine);
  overflow: hidden;
}
.hero__banner {
  width: 100%; height: 500px;
  position: relative; line-height: 0;
}
.hero__banner-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  display: block;
}
/* Dégradé gauche plus fort pour lisibilité texte */
.hero__banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(27,42,74,.94) 0%,
    rgba(27,42,74,.78) 45%,
    rgba(27,42,74,.25) 75%,
    rgba(27,42,74,.10) 100%
  );
}
/* Contenu positionné sur la bannière */
.hero__content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
}
.hero__content .container { width: 100% }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--or-l);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.hero__eyebrow::before {
  content: ''; display: inline-block;
  width: 22px; height: 2px; background: var(--or);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--blanc);
  line-height: 1.12; margin-bottom: 1rem;
  max-width: 580px;
}
.hero h1 em { color: var(--or-l); font-style: italic }

.hero__sub {
  font-size: 1.1rem; font-weight: 500;
  color: rgba(255,255,255,.82);
  max-width: 480px; margin-bottom: 1.8rem;
  line-height: 1.6;
}
.hero__sub strong { color: var(--blanc) }

.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem }

/* ── BOUTONS ────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--or); color: var(--marine);
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1rem;
  padding: .75rem 1.6rem; border-radius: 100px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 16px rgba(196,149,42,.38);
}
.btn-gold:hover { background: var(--or-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,149,42,.5) }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid rgba(255,255,255,.38);
  color: var(--blanc);
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 1rem;
  padding: .73rem 1.5rem; border-radius: 100px;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.btn-ghost:hover { border-color: var(--or-l); background: rgba(255,255,255,.07); transform: translateY(-2px) }

.btn-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1rem;
  padding: .75rem 1.6rem; border-radius: 100px;
  transition: background var(--t), transform var(--t);
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px) }

/* ── DISPO STRIP ────────────────────────────────── */
.dispo-strip {
  background: var(--vert);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.6rem;
  padding: .85rem 5vw;
}
.dispo-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.93); font-size: .88rem; font-weight: 600;
}

/* ── SECTION HEADINGS ────────────────────────────── */
.section-heading { text-align: center; margin-bottom: 2.8rem }
.section-heading__eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--or); margin-bottom: .55rem;
}
.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--marine); font-weight: 700; line-height: 1.2;
}
.section-heading__line {
  width: 44px; height: 2.5px; background: var(--or);
  margin: .75rem auto 0; border-radius: 2px;
}

/* ── 3 MODES ────────────────────────────────────── */
.modes { padding: 80px 0; background: var(--fond) }

.modes__tabs {
  display: flex; gap: .5rem;
  margin-bottom: 2.2rem;
  background: var(--blanc);
  border-radius: 18px; padding: .5rem;
  border: 1.5px solid var(--gris-l);
  box-shadow: var(--shadow);
}
.modes__tab {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1rem;
  border-radius: 12px;
  font-size: .95rem; font-weight: 700;
  color: var(--gris);
  transition: all var(--t);
}
.modes__tab:hover { color: var(--marine); background: var(--fond) }
.modes__tab--active {
  background: var(--marine); color: var(--blanc);
  box-shadow: 0 4px 14px rgba(27,42,74,.22);
}
.modes__tab-icon { font-size: 1.25rem }

.mode-panel { display: none }
.mode-panel--active { display: block; animation: fadeUp .3s ease }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px) }
  to   { opacity: 1; transform: translateY(0) }
}

.mode-panel__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.mode-panel__inner--reverse { direction: rtl }
.mode-panel__inner--reverse > * { direction: ltr }

.mode-panel__img {
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); line-height: 0;
}
.mode-panel__img img {
  width: 100%; height: 340px;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.mode-panel__img:hover img { transform: scale(1.02) }

.mode-panel__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--or-pale); border: 1px solid rgba(196,149,42,.3);
  color: var(--or); font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 100px; margin-bottom: .9rem;
}
.mode-panel__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--marine);
  line-height: 1.2; margin-bottom: .9rem;
}
.mode-panel__text p {
  font-size: 1rem; color: var(--gris);
  line-height: 1.75; margin-bottom: 1.3rem;
}
.mode-panel__text strong { color: var(--marine); font-weight: 700 }
.mode-panel__list {
  list-style: none; display: flex; flex-direction: column;
  gap: .6rem; margin-bottom: 1.7rem;
}
.mode-panel__list li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .97rem; font-weight: 600; color: var(--texte);
}
.mode-panel__list li svg { color: var(--vert); flex-shrink: 0; width: 17px; height: 17px }

/* ── SERVICES ────────────────────────────────────── */
.services { padding: 80px 0; background: var(--blanc) }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.service-card {
  background: var(--fond);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  border: 1.5px solid var(--gris-l);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.service-card:hover {
  border-color: var(--or); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196,149,42,.12);
}
.service-card__emoji { font-size: 2rem; display: block; margin-bottom: .9rem }
.service-card h3 { font-size: 1rem; font-weight: 800; color: var(--marine); margin-bottom: .4rem }
.service-card p  { font-size: .88rem; color: var(--gris); line-height: 1.55 }

/* ── ZONES ───────────────────────────────────────── */
.zones {
  padding: 80px 0; background: var(--marine);
  position: relative; overflow: hidden;
}
.zones::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,rgba(196,149,42,.05) 0px,rgba(196,149,42,.05) 1px,transparent 1px,transparent 28px),
    repeating-linear-gradient(-45deg,rgba(196,149,42,.05) 0px,rgba(196,149,42,.05) 1px,transparent 1px,transparent 28px);
}
.zones .section-heading h2   { color: var(--blanc) }
.zones .section-heading__eyebrow { color: var(--or-l) }
.zones__pills { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center }
.zone-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(196,149,42,.3);
  color: rgba(255,255,255,.88); font-size: .9rem; font-weight: 600;
  padding: .55rem 1.2rem; border-radius: 100px; transition: background var(--t);
}
.zone-pill:hover { background: rgba(196,149,42,.15) }
.zone-pill--main  { background: var(--or); color: var(--marine); font-weight: 800; border-color: var(--or) }
.zone-pill--visio { background: rgba(58,92,62,.5); border-color: rgba(58,92,62,.8) }
.zones__text {
  margin: 2rem auto 0; max-width: 780px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(196,149,42,.2);
  border-radius: var(--radius); padding: 1.3rem 1.6rem;
  font-size: .93rem; color: rgba(255,255,255,.72); line-height: 1.75;
}
.zones__text strong { color: var(--or-l) }
.zones__text a { color: var(--or-l); font-weight: 700 }

/* ── FAQ ─────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: var(--blanc) }
.faq__list { max-width: 740px; margin: 0 auto }
.faq__item {
  border: 1.5px solid var(--gris-l); border-radius: var(--radius);
  margin-bottom: .8rem; overflow: hidden; transition: border-color var(--t);
}
.faq__item[open] { border-color: var(--or) }
.faq__question {
  cursor: pointer; padding: 1.15rem 1.5rem;
  font-weight: 700; font-size: 1rem; color: var(--marine);
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; user-select: none;
}
.faq__question::-webkit-details-marker { display: none }
.faq__question::after {
  content: '+'; font-size: 1.5rem; font-weight: 300;
  color: var(--or); flex-shrink: 0; transition: transform var(--t);
}
.faq__item[open] .faq__question::after { transform: rotate(45deg) }
.faq__answer { padding: 0 1.5rem 1.3rem; font-size: .95rem; color: var(--gris); line-height: 1.7 }

/* ── CTA FINAL ───────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--marine) 0%, var(--marine-l) 100%);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,149,42,.2) 0%, transparent 65%);
}
.cta-final__inner { position: relative; z-index: 1 }
.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--blanc); font-weight: 700;
  margin-bottom: .7rem;
}
.cta-final p { color: rgba(255,255,255,.72); margin-bottom: 2rem; font-size: 1.05rem }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: #0C1628;
  border-top: 2px solid var(--or);
  padding: 2.2rem 0; text-align: center;
  color: rgba(255,255,255,.45); font-size: .85rem;
}
footer a { color: var(--or-l) }
footer a:hover { text-decoration: underline }
footer p+p { margin-top: .45rem }
.footer__kw  { font-size: .75rem; color: rgba(255,255,255,.28); margin-top: .6rem }
.footer__copy{ font-size: .7rem;  color: rgba(255,255,255,.18); margin-top: .8rem }

/* ══════════════════════════════════════════════════
   POPUP CONTACT
   ══════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(10,18,35,.72);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.popup-overlay--open { opacity: 1; pointer-events: all }

.popup {
  background: var(--blanc);
  border-radius: 22px;
  width: 100%; max-width: 540px;
  max-height: 92vh; overflow-y: auto;
  padding: 2.2rem; position: relative;
  box-shadow: 0 28px 80px rgba(10,18,35,.4);
  transform: translateY(14px);
  transition: transform .25s ease;
}
.popup-overlay--open .popup { transform: translateY(0) }

.popup__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--fond); border: 1px solid var(--gris-l);
  font-size: 1rem; color: var(--gris);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.popup__close:hover { background: var(--gris-l) }

.popup__header { text-align: center; margin-bottom: 1.5rem }
.popup__logo { display: flex; justify-content: center; margin-bottom: .7rem }
.popup__fleur { width: 38px; height: 38px; fill: var(--or) }
.popup__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--marine); font-weight: 700; margin-bottom: .3rem;
}
.popup__header p { font-size: .9rem; color: var(--gris) }

.popup__quick { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: 1.3rem }
.popup__call,.popup__wa {
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem 1.1rem; border-radius: 14px;
  transition: transform var(--t), box-shadow var(--t);
}
.popup__call { background: var(--marine); color: var(--blanc) }
.popup__call:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,42,74,.25) }
.popup__wa   { background: #25D366; color: #fff }
.popup__wa:hover   { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3) }
.popup__call-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .8 }
.popup__call-num   { font-size: 1rem; font-weight: 800 }

.popup__divider {
  display: flex; align-items: center; gap: .8rem;
  margin: 1rem 0; color: var(--gris); font-size: .82rem; font-weight: 600;
}
.popup__divider::before,.popup__divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gris-l);
}

/* ── FORMULAIRE ──────────────────────────────────── */
.popup__form { display: flex; flex-direction: column; gap: 1rem }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem }
.form-group { display: flex; flex-direction: column; gap: .35rem }
.form-group label {
  font-size: .8rem; font-weight: 700; color: var(--marine); letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 2px solid var(--gris-l); border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-size: .97rem;
  color: var(--texte); background: var(--fond);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--or); box-shadow: 0 0 0 3px rgba(196,149,42,.15);
}
.form-group textarea { resize: vertical; min-height: 100px }

.form-submit {
  width: 100%; padding: .9rem;
  background: var(--marine); color: var(--blanc);
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1rem;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background var(--t), transform var(--t);
  margin-top: .2rem;
}
.form-submit:hover { background: var(--marine-l); transform: translateY(-1px) }
.form-submit:disabled { opacity: .6; transform: none }

.form-success {
  background: #EDFAF3; border: 1.5px solid #25D366;
  color: #1A7340; padding: .9rem 1rem; border-radius: 10px;
  font-size: .93rem; font-weight: 600; text-align: center;
}
.form-error {
  background: #FEF2F2; border: 1.5px solid #EF4444;
  color: #B91C1C; padding: .9rem 1rem; border-radius: 10px;
  font-size: .93rem; font-weight: 600; text-align: center;
}

/* ── FAB FLOTTANT ────────────────────────────────── */
.fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  background: var(--or); color: var(--marine);
  border-radius: 100px; padding: .8rem 1.4rem;
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .9rem;
  box-shadow: 0 8px 28px rgba(196,149,42,.5);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.fab:hover { background: var(--or-l); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(196,149,42,.6) }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .navbar__links { display: none }
  .navbar__tel   { display: none }
  .navbar__cta   { display: none }
  .navbar__burger{ display: flex }
}

@media (max-width: 768px) {
  /* Hero */
  .hero__banner { height: 320px }
  .hero__content { position: relative; padding: 2.5rem 0 3rem }
  .hero { display: flex; flex-direction: column }
  .hero__banner { order: -1 }
  .hero__banner-overlay {
    background: linear-gradient(to bottom, rgba(27,42,74,.88) 0%, rgba(27,42,74,.65) 100%);
  }

  /* Modes */
  .modes__tab { font-size: .85rem; padding: .7rem .6rem }
  .modes__tab-icon { font-size: 1.1rem }
  .mode-panel__inner { grid-template-columns: 1fr; gap: 1.8rem }
  .mode-panel__inner--reverse { direction: ltr }
  .mode-panel__img { order: -1 }
  .mode-panel__img img { height: 240px }

  /* Popup */
  .popup__quick { grid-template-columns: 1fr }
  .form-row     { grid-template-columns: 1fr }
  .popup { padding: 1.6rem; border-radius: 18px }
}

@media (max-width: 500px) {
  html { font-size: 15px }
  .hero h1 { font-size: 1.7rem }
  .hero__actions { flex-direction: column }
  .btn-gold,.btn-ghost { width: 100%; justify-content: center }
  .cta-final__actions { flex-direction: column; align-items: center }
  .fab span { display: none }
  .fab { padding: .9rem; border-radius: 50%; width: 56px; height: 56px; justify-content: center }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { transition: none !important; animation: none !important }
}
