/* ==========================================================================
   My Bubble — Site vitrine
   Design system
   ========================================================================== */

:root {
  /* Couleurs de marque (issues de l'app iOS) */
  --blue: #2E86DE;
  --blue-dark: #1c66b3;
  --blue-light: #eaf3fd;
  --gold: #d4b164;
  --silver: #ababab;
  --bronze: #c19075;

  --ink: #10233b;
  --ink-soft: #43566d;
  --muted: #7d8da0;
  --line: #e6ecf3;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --bg-deep: #0d2440;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(16, 35, 59, 0.06);
  --shadow: 0 18px 45px rgba(16, 35, 59, 0.10);
  --shadow-lg: 0 30px 70px rgba(16, 35, 59, 0.16);

  --container: 1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------------------- */
/* Reset                                                                      */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.15; color: var(--ink); font-weight: 800; letter-spacing: -0.02em; }

/* -------------------------------------------------------------------------- */
/* Layout helpers                                                             */
/* -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }

.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 18px; }

.lead { font-size: 19px; color: var(--ink-soft); }

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.btn {
  --_bg: var(--blue);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  box-shadow: 0 10px 24px rgba(46, 134, 222, 0.28);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(46, 134, 222, 0.36); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --_bg: transparent;
  --_fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-sm); }

.btn--light {
  --_bg: #fff;
  --_fg: var(--blue);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.btn--lg { padding: 17px 34px; font-size: 17px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* -------------------------------------------------------------------------- */
/* Header / Nav                                                               */
/* -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand img { width: 144px; height: 34px; object-fit: contain; }
.brand span { color: var(--ink); }
.brand span b { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links a.active { color: var(--blue); background: var(--blue-light); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 84px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(46,134,222,0.14), transparent 60%),
    radial-gradient(50% 45% at 8% 20%, rgba(212,177,100,0.10), transparent 60%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(36px, 5.2vw, 60px); }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--blue), #62aef2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { margin-top: 22px; font-size: 20px; color: var(--ink-soft); max-width: 540px; }
.hero .btn-row { margin-top: 34px; }

.hero-badges { display: flex; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); font-weight: 600; }
.hero-badge svg { flex-shrink: 0; }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 300px;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #1a1f27, #0c0f14);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.phone::after {
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #0c0f14;
  border-radius: 100px;
  z-index: 3;
}
.phone img { border-radius: 34px; width: 100%; }

.phone--float { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.bubble-orbit {
  position: absolute;
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
  z-index: 4;
  font-size: 13px;
}
.bubble-orbit.gold { background: var(--gold); top: 12%; left: -6%; animation: float 5s ease-in-out infinite; }
.bubble-orbit.silver { background: var(--silver); bottom: 22%; left: -10%; animation: float 5.6s ease-in-out infinite 0.4s; }
.bubble-orbit.bronze { background: var(--bronze); bottom: 8%; right: -6%; animation: float 6.2s ease-in-out infinite 0.8s; }

/* -------------------------------------------------------------------------- */
/* Trust strip                                                                */
/* -------------------------------------------------------------------------- */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 44px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item { text-align: center; }
.trust-item b { display: block; font-size: 26px; color: var(--blue); }
.trust-item span { font-size: 14px; color: var(--muted); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* Feature cards                                                              */
/* -------------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: 18px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 16px; }

/* -------------------------------------------------------------------------- */
/* Bubbles explainer                                                          */
/* -------------------------------------------------------------------------- */
.bubbles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bubble-card {
  border-radius: var(--radius);
  padding: 34px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bubble-card .dot {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.bubble-card h3 { color: #fff; font-size: 22px; }
.bubble-card p { color: rgba(255,255,255,0.9); margin-top: 8px; font-size: 15.5px; }
.bubble-card.bronze { background: linear-gradient(150deg, #d0a488, var(--bronze)); }
.bubble-card.silver { background: linear-gradient(150deg, #c3c3c3, var(--silver)); }
.bubble-card.gold   { background: linear-gradient(150deg, #e2c684, var(--gold)); }

/* -------------------------------------------------------------------------- */
/* Split / showcase                                                           */
/* -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { display: flex; justify-content: center; }
.split-media .phone { width: 270px; }
.split h2 { font-size: clamp(26px, 3.4vw, 36px); }
.split p { margin-top: 16px; color: var(--ink-soft); }

.check-list { margin-top: 24px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink-soft); }
.check-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }

/* -------------------------------------------------------------------------- */
/* Steps                                                                      */
/* -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 15.5px; }

/* -------------------------------------------------------------------------- */
/* Pricing / offre pro                                                        */
/* -------------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border-color: transparent;
  background: linear-gradient(160deg, #0d2440, #14345a);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.plan.featured h3, .plan.featured .price { color: #fff; }
.plan.featured .plan-feat li { color: rgba(255,255,255,0.9); }
.plan-tag {
  position: absolute; top: 22px; right: 22px;
  background: var(--gold); color: #1a1a1a;
  font-size: 12px; font-weight: 800; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 100px; text-transform: uppercase;
}
.plan h3 { font-size: 22px; }
.plan .price { font-size: 40px; font-weight: 800; margin: 14px 0 4px; }
.plan .price small { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan .plan-sub { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.plan.featured .plan-sub { color: rgba(255,255,255,0.75); }
.plan-feat { display: grid; gap: 12px; margin-bottom: 28px; }
.plan-feat li { display: flex; gap: 10px; font-size: 15.5px; color: var(--ink-soft); }
.plan-feat li svg { flex-shrink: 0; color: var(--blue); }
.plan.featured .plan-feat li svg { color: var(--gold); }
.plan .btn { margin-top: auto; }

/* -------------------------------------------------------------------------- */
/* CTA band                                                                   */
/* -------------------------------------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 60% at 85% 20%, rgba(255,255,255,0.18), transparent 60%);
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 16px auto 0; max-width: 560px; position: relative; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; position: relative; }

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

.info-list { display: grid; gap: 18px; margin-top: 26px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px; background: var(--blue-light); color: var(--blue);
  display: grid; place-items: center;
}
.info-item b { display: block; font-size: 16px; }
.info-item a, .info-item span { color: var(--ink-soft); font-size: 15.5px; }
.info-item a:hover { color: var(--blue); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-status { margin-top: 14px; font-size: 15px; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #1a9d5c; }

/* -------------------------------------------------------------------------- */
/* Legal / doc pages                                                          */
/* -------------------------------------------------------------------------- */
.page-hero {
  padding: 70px 0 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(30px, 4.5vw, 46px); }
.page-hero p { margin-top: 14px; color: var(--ink-soft); font-size: 18px; }
.page-hero .updated { margin-top: 10px; font-size: 14px; color: var(--muted); }

.doc { padding: 60px 0 90px; }
.doc-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }

.toc {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
}
.toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; }
.toc a { display: block; padding: 7px 10px; border-radius: 8px; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }
.toc a:hover { background: var(--blue-light); color: var(--blue); }

.doc-body { max-width: 760px; }
.doc-body h2 {
  font-size: 24px;
  margin: 44px 0 14px;
  padding-top: 8px;
  scroll-margin-top: 92px;
}
.doc-body h2:first-child { margin-top: 0; }
.doc-body h3 { font-size: 18px; margin: 26px 0 8px; }
.doc-body p { color: var(--ink-soft); margin-bottom: 14px; }
.doc-body ul { margin: 0 0 16px; padding-left: 4px; display: grid; gap: 9px; }
.doc-body ul li { display: flex; gap: 10px; color: var(--ink-soft); }
.doc-body ul li::before { content: "•"; color: var(--blue); font-weight: 800; }
.doc-body a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.doc-body strong { color: var(--ink); }

.callout {
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 22px 0;
}
.callout p { margin: 0; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 22px;
  font-size: 15px;
}
.data-table th, .data-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.data-table th { background: var(--bg-alt); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.data-table td { color: var(--ink-soft); }

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 17px; font-weight: 700; color: var(--ink);
  text-align: left;
}
.faq-q .plus { flex-shrink: 0; transition: transform 0.3s var(--ease); color: var(--blue); }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; color: var(--ink-soft); }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-deep);
  color: #c6d3e2;
  padding: 66px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand span { color: #fff; }
.footer-brand p { margin-top: 16px; color: #90a2b8; font-size: 15px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #c6d3e2; transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: #90a2b8; font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 24px; flex-wrap: wrap;
}
.footer-bottom p { color: #7c8ea3; font-size: 14px; }
.footer-bottom .mini-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .mini-links a { color: #90a2b8; font-size: 14px; }
.footer-bottom .mini-links a:hover { color: #fff; }

/* -------------------------------------------------------------------------- */
/* Reveal animation                                                           */
/* -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .steps, .bubbles-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .doc-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  body { font-size: 16px; }

  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav-menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 22px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-menu-open .nav-links a { padding: 13px 15px; font-size: 16.5px; }
  .nav-menu-open .nav-cta .btn { display: inline-flex; }
  .nav-menu-open .nav-cta { display: flex; position: absolute; top: 74px; left: 0; right: 0; padding: 0 22px 20px; background:#fff; justify-content: stretch; }
  .nav-menu-open .nav-cta .btn { width: 100%; }

  .grid-2 { grid-template-columns: 1fr; }
  .cta-band { padding: 42px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .phone { width: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
