/* ============================================
   HARO — Design system 2026 (V2)
   Sombre · palette alignée sur le mode sombre de l'application
   ============================================ */

/*
 * Les fonds, le texte et les surfaces reprennent les jetons du mode sombre de
 * l'application (resources/css/theme.scss, bloc html.dark) pour que le site
 * vitrine et le produit se ressemblent. Correspondances :
 *   --bg         <- --c-bg-gray-900  (fond de page)
 *   --bg-alt     <- --c-bg-white     (panneau, sections alternées, pied de page)
 *   --panel      <- --c-bg-gray-800  (cadres de captures, listes déroulantes)
 *   --text       <- --c-fg-gray-900
 *   --text-muted <- --c-fg-gray-500
 *
 * Les accents restent ceux de la marque Haro : l'application ne les utilise pas
 * — elle s'en tient à la palette Tailwind — mais c'est l'identité visuelle du
 * site, et le dégradé des titres en dépend.
 */
:root {
  color-scheme: dark;
  --bg: #0b1117;
  --bg-alt: #0f1821;
  --panel: #16212c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --text: #e6edf3;
  --text-muted: #8d9caa;
  /*
   * L'accent de l'application est le violet (bg-purple-600, 34 usages), mais
   * en mode sombre theme.scss le fait basculer vers la sarcelle : purple-600
   * devient #0e7f93 en fond et #4dd0e1 en texte. C'est donc la sarcelle, pas
   * le violet, qu'il faut reprendre ici.
   */
  --accent-1: #0e7f93;   /* fond d'action    <- --c-bg-purple-600 */
  --accent-2: #4dd0e1;   /* texte et icônes  <- --c-fg-purple-500 */
  --accent-3: #0a6172;   /* fond appuyé      <- --c-bg-purple-700 */
  --lime: #66d9e8;       /* cyan pâle        <- --c-fg-purple-700 */

  /*
   * Deux dégradés, pas un. L'original allait de l'ambre au rouge : toutes ses
   * étapes étaient claires, donc le même dégradé servait au texte et aux
   * fonds. La sarcelle n'a pas cette propriété — les étapes de fond sont
   * sombres et disparaîtraient en texte, les étapes de texte sont trop claires
   * pour porter du blanc. D'où la séparation, la même que celle des jetons
   * `-solid` du mode sombre de l'application.
   */
  --gradient: linear-gradient(100deg, var(--lime), var(--accent-2));
  --gradient-solid: linear-gradient(100deg, var(--accent-1), var(--accent-3));
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

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

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Fond décoratif ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
}

.bg-glow {
  position: fixed; z-index: -3; border-radius: 50%;
  filter: blur(120px); pointer-events: none; opacity: 0.5;
}
.bg-glow--1 {
  width: 640px; height: 640px; top: -240px; left: 50%; transform: translateX(-30%);
  background: radial-gradient(circle, rgba(14, 127, 147, 0.38), transparent 65%);
}
.bg-glow--2 {
  width: 520px; height: 520px; top: 30vh; left: -200px;
  background: radial-gradient(circle, rgba(14, 127, 147, 0.20), transparent 65%);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--primary {
  background: var(--gradient-solid); color: #fff;
  box-shadow: 0 8px 32px rgba(14, 127, 147, 0.38);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(14, 127, 147, 0.5); }
.btn--ghost {
  background: var(--surface); color: var(--text); border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--surface-strong); transform: translateY(-2px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 17, 23, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo-img { height: 34px; width: auto; }
.nav__links {
  display: flex; gap: 36px; list-style: none;
}
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__lang {
  font-family: var(--font-display); font-size: 13.5px; font-weight: 600;
  color: var(--text-muted); padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--border);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav__lang:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }

.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 24px;
  background: rgba(11, 17, 23, 0.95); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a { padding: 12px 0; font-weight: 500; }
.nav__mobile .btn { margin-top: 12px; }
.nav__mobile.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
  min-height: 92vh; padding-top: 130px; padding-bottom: 80px;
}
.hero__title {
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 700;
  margin-bottom: 24px;
  white-space: nowrap;
}
.hero__subtitle {
  font-size: 18px; color: var(--text-muted); max-width: 540px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Maquette produit ---------- */
.hero__visual { position: relative; }
.mockup {
  background: rgba(15, 24, 33, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
}
.mockup__header {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-muted);
}
.mockup__dots { display: flex; gap: 6px; }
.mockup__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.mockup__dots span:first-child { background: #ff5f57; }
.mockup__dots span:nth-child(2) { background: #febc2e; }
.mockup__dots span:nth-child(3) { background: #28c840; }
.mockup__title { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup__live {
  display: inline-flex; align-items: center; gap: 7px;
  color: #4ade80; font-weight: 600;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
}

.mockup__body { padding: 12px; display: flex; flex-direction: column; gap: 8px; min-height: 280px; }
.crow {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid transparent;
  transition: border-color 0.4s ease, background 0.4s ease;
  font-size: 13.5px;
}
.crow__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  background: linear-gradient(135deg, rgba(14, 127, 147, 0.35), rgba(10, 97, 114, 0.28));
  border: 1px solid var(--border);
}
.crow__info { flex: 1; min-width: 0; }
.crow__info strong { display: block; font-weight: 600; }
.crow__info small { color: var(--text-muted); font-size: 12px; }
.crow__status {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: var(--text-muted);
  white-space: nowrap; transition: 0.4s ease;
}
.crow--calling { border-color: rgba(77, 208, 225, 0.45); background: rgba(77, 208, 225, 0.06); }
.crow--calling .crow__status { background: rgba(77, 208, 225, 0.15); color: var(--accent-2); }
.crow--declined .crow__status { background: rgba(227, 34, 34, 0.15); color: #f26969; }
.crow--accepted { border-color: rgba(74, 222, 128, 0.45); background: rgba(74, 222, 128, 0.07); }
.crow--accepted .crow__status { background: rgba(74, 222, 128, 0.15); color: #4ade80; }

.mockup__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
}
.mockup__footer strong { color: #4ade80; }

.mockup__card {
  position: absolute; bottom: -24px; right: -16px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 16px;
  background: rgba(15, 24, 33, 0.92); border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  font-size: 13px;
}
.mockup__card small { display: block; color: var(--text-muted); font-size: 11.5px; }
.mockup__card-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(74, 222, 128, 0.15); color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.mockup__card--float { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Bande clients (claire) ---------- */
.trust {
  background: #f3f4f6;
  color: #111827;
  padding: 72px 0;
}
.trust__title {
  text-align: center;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin-bottom: 44px;
}
.trust__logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px 56px; flex-wrap: wrap;
}
.trust__logos img {
  height: 38px; width: auto; max-width: 180px; object-fit: contain;
  mix-blend-mode: multiply;
}
.trust__logos img.trust__logo--tall { height: 60px; }

/* ---------- Sections ---------- */
.section { padding: 110px 24px; }
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 700; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 16px;
}

/* ---------- Produit : vitrine ---------- */
.feature {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center;
  padding: 48px 0;
}
.feature--reverse .feature__text { order: 2; }
.feature--reverse .feature__media { order: 1; }
.feature__tag {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  background: var(--surface-strong); border: 1px solid var(--border);
  font-family: var(--font-display); font-size: 13.5px; font-weight: 600;
  margin-bottom: 20px;
}
.feature__text h3 { font-size: clamp(26px, 2.8vw, 34px); margin-bottom: 16px; }
.feature__text > p { color: var(--text-muted); font-size: 16px; margin-bottom: 24px; }
.feature__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature__list li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 14.5px; color: var(--text-muted);
}
.feature__list li::before {
  content: "✓"; color: var(--accent-2); font-weight: 700; flex-shrink: 0;
}

.browser {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.browser:hover { transform: translateY(-6px); box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55); }
.browser__bar {
  display: flex; gap: 6px; padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.browser__bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.browser__bar span:first-child { background: #ff5f57; }
.browser__bar span:nth-child(2) { background: #febc2e; }
.browser__bar span:nth-child(3) { background: #28c840; }
.browser img { width: 100%; background: #fff; }

/* ---------- Comment ça marche ---------- */
.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how__step {
  padding: 36px 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}
.how__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.how__icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.16), rgba(14, 127, 147, 0.12));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
}
.how__icon svg { width: 26px; height: 26px; }
.how__num {
  font-family: var(--font-display); font-size: 44px; font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1;
}
.how__step h3 { font-size: 20px; margin-bottom: 10px; }
.how__step p { color: var(--text-muted); font-size: 15px; }

/* ---------- Secteurs ---------- */
.sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sector {
  display: block; position: relative;
  padding: 32px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.sector:hover { transform: translateY(-4px); border-color: rgba(77, 208, 225, 0.5); }
.sector__icon { font-size: 32px; display: block; margin-bottom: 16px; }
.sector h3 { font-size: 19px; margin-bottom: 10px; }
.sector p { color: var(--text-muted); font-size: 14.5px; }
.sector__arrow {
  position: absolute; top: 28px; right: 28px;
  font-size: 20px; color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}
.sector:hover .sector__arrow { transform: translateX(6px); color: var(--accent-2); }

/* ---------- Témoignages ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.quote {
  padding: 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 24px;
  justify-content: space-between;
}
.quote blockquote {
  font-size: 16.5px; line-height: 1.6; font-weight: 500;
}
.quote figcaption { display: flex; align-items: center; gap: 14px; }
.quote__logo {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 6px;
}
.quote__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.quote figcaption small { display: block; color: var(--text-muted); }

/* ---------- À propos ---------- */
.about__text { max-width: 760px; }
.about__text h2 { font-size: clamp(32px, 4.2vw, 52px); margin-bottom: 24px; }
.about__text p { color: var(--text-muted); font-size: 17px; margin-bottom: 18px; max-width: 640px; }

/* ---------- CTA / formulaire ---------- */
.cta { padding: 120px 24px; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 50% 110%, rgba(77, 208, 225, 0.14), transparent 70%),
    radial-gradient(ellipse 40% 60% at 50% 120%, rgba(14, 127, 147, 0.12), transparent 70%);
}
.cta__panel {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
  padding: 56px;
  border-radius: 28px;
  background: rgba(22, 33, 44, 0.8);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.cta__info h2 { font-size: clamp(32px, 3.8vw, 46px); margin-bottom: 18px; }
.cta__info > p { color: var(--text-muted); font-size: 16.5px; margin-bottom: 28px; }
.cta__points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cta__points li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 14.5px; color: var(--text-muted);
}
.cta__points li::before { content: "✓"; color: var(--accent-2); font-weight: 700; }
.cta__contact { font-size: 14px; color: var(--text-muted); display: flex; flex-direction: column; gap: 4px; }
.cta__contact a { color: var(--accent-2); font-weight: 600; }
.cta__contact a:hover { text-decoration: underline; }

.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field { display: flex; flex-direction: column; gap: 7px; }
.form__field label {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form__field input,
.form__field select,
.form__field textarea {
  padding: 13px 16px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size: 14.5px;
  outline: none; transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
}
.form__field select { appearance: none; cursor: pointer; }
.form__field select option { background: var(--panel); color: var(--text); }
.form__field textarea { resize: vertical; min-height: 96px; }
.form__field input::placeholder,
.form__field textarea::placeholder { color: rgba(168, 160, 160, 0.6); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-color: var(--accent-2); background: var(--surface-strong); }
.form__submit { margin-top: 4px; }
.form__submit:disabled { opacity: .6; cursor: progress; }
.form__status { font-size: 13.5px; color: #4ade80; min-height: 20px; }
.form__status--error { color: #f26969; }

/* Piège à pourriel : hors écran plutôt que display:none, que certains robots
   savent détecter. aria-hidden + tabindex="-1" l'écartent des lecteurs d'écran
   et du parcours au clavier. */
.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile { margin-top: 4px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-alt); }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding: 64px 24px 48px;
}
.footer__brand p { color: var(--text-muted); font-size: 14px; margin-top: 16px; max-width: 300px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 6px; }
.footer__col a, .footer__col span { font-size: 14.5px; color: var(--text-muted); }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
}
.footer__bottom a:hover { color: var(--text); }

/* ---------- Animations au défilement ---------- */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .mockup__card--float, .pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 64px; min-height: auto; padding-top: 140px; }
  .hero__visual { max-width: 620px; }
  .feature { grid-template-columns: 1fr; gap: 36px; padding: 36px 0; }
  .feature--reverse .feature__text { order: 1; }
  .feature--reverse .feature__media { order: 2; }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .cta__panel { grid-template-columns: 1fr; padding: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.is-open { display: flex; }
  .hero__title { font-size: clamp(38px, 11vw, 52px); }
  .how, .sectors, .quotes { grid-template-columns: 1fr; }
  .section { padding: 80px 24px; }
  .mockup__card { right: 8px; bottom: -18px; }
  .trust__logos { gap: 32px 40px; }
  .trust__logos img { height: 28px; }
  .trust__logos img.trust__logo--tall { height: 46px; }
  .cta__panel { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
