/* ============================================================
   DIALOPRO — landing page v2
   Palette ancrée sur le logo : bleu #3759A7 + vert #3AA492,
   accent ambre pour la conversion, fond ivoire clair.
   ============================================================ */

:root {
  --blue:     #3759A7;
  --blue-d:   #27407c;
  --navy:     #16223f;
  --navy-d:   #101a31;
  --green:    #3AA492;
  --green-d:  #2c8073;
  --green-t:  #e3f3f0;
  --blue-t:   #e8edf8;
  --accent:   #f0a04b;
  --accent-d: #d9832e;
  --ink:      #1d2b45;
  --ink-soft: #55617a;
  --bg:       #fcfbf8;
  --card:     #ffffff;
  --line:     #e6e8ee;
  --radius:   16px;
  --shadow:   0 6px 24px rgba(30, 46, 88, 0.08);
  --shadow-l: 0 16px 48px rgba(30, 46, 88, 0.16);
  --font-head: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; color: var(--navy); }

.container { width: min(1160px, 92%); margin-inline: auto; }
section[id] { scroll-margin-top: 84px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-accent {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(240, 160, 75, 0.4);
}
.btn-accent:hover { background: var(--accent-d); color: #fff; }
.btn-outline {
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Header (clair) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(30, 46, 88, 0.08);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo:hover { text-decoration: none; }
.logo-mark { height: 36px; width: auto; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.22rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--navy);
}

.main-nav ul { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding-block: 0.4rem;
}
.main-nav a:hover { color: var(--navy); text-decoration: none; }
.main-nav .nav-cta {
  background: var(--accent);
  color: var(--navy);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
}
.main-nav .nav-cta:hover { background: var(--accent-d); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(640px 420px at 88% 8%, rgba(58, 164, 146, 0.10), transparent 70%),
    radial-gradient(560px 400px at 4% 88%, rgba(55, 89, 167, 0.08), transparent 70%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-areas:
    "head media"
    "rest media";
  column-gap: 3.5rem;
  align-items: center;
}
.hero-head { grid-area: head; align-self: end; }
.hero-media { grid-area: media; }
.hero-rest { grid-area: rest; align-self: start; }
.hero-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-d);
  background: var(--green-t);
  border-radius: 999px;
  padding: 0.4rem 1.05rem;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 800;
  margin-bottom: 1.3rem;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  max-width: 34em;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 0.6rem 1.6rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.hero-badges li { display: flex; align-items: center; gap: 0.45rem; }
.hero-badges li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero-media { position: relative; }
.hero-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-l);
  position: relative;
}
.hero-photo::after {
  /* voile dégradé discret pour asseoir les cartes flottantes */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(22, 34, 63, 0.25));
  pointer-events: none;
}
.hero-photo img { width: 100%; height: auto; }
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-l);
  padding: 0.8rem 1.1rem;
  display: grid;
  gap: 0.1rem;
}
.hero-float-1 { left: -22px; bottom: 26px; }
.hero-float-2 { right: -14px; top: 22px; }
.float-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue);
  line-height: 1;
}
.float-label { font-size: 0.78rem; color: var(--ink-soft); max-width: 150px; line-height: 1.35; }

/* ---------- Bandeau chiffres ---------- */
.stats {
  position: relative;
  background: linear-gradient(120deg, var(--navy), var(--blue-d));
  color: #fff;
  padding: 2.8rem 0;
  overflow: hidden;
}
.stats-map {
  position: absolute;
  inset: 0;
  background: url("../images/map.png") center 40% / min(1000px, 120%) no-repeat;
  opacity: 0.14;
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.1;
  color: #fff;
}
.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-tint { background: linear-gradient(180deg, #f4f8f6, var(--bg)); }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-kicker {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-d);
  margin-bottom: 0.7rem;
}
.section-head h2, .split-text h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.35rem);
  font-weight: 700;
}
.split-text h2 { margin-bottom: 1.2rem; }
.section-sub { margin-top: 1rem; color: var(--ink-soft); font-size: 1.05rem; }

/* Section sombre (infrastructure) */
.section-dark {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue-d) 100%);
  color: #fff;
  overflow: hidden;
}
.dark-map {
  position: absolute;
  inset: 0;
  background: url("../images/map.png") right -120px top -40px / 820px no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.section-dark .container { position: relative; }
.section-head-light h2 { color: #fff; }
.section-head-light .section-kicker { color: var(--green); }
.section-head-light .section-sub { color: rgba(255, 255, 255, 0.78); }

/* ---------- Split (texte / photo) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse { grid-template-columns: 1.1fr 1fr; }
.split-reverse .split-media { order: 2; }
.split-reverse .split-text { order: 1; }
.split-text p { color: var(--ink-soft); }
.split-text p + p { margin-top: 1rem; }
.split-text strong { color: var(--ink); }

.photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.photo-frame img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-l);
  position: relative;
  z-index: 1;
}
.photo-frame::before {
  /* aplat décoratif décalé derrière la photo */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  transform: translate(-16px, 16px);
}
.photo-frame-green::before { background: var(--green-t); }
.photo-frame-blue::before { background: var(--blue-t); transform: translate(16px, 16px); }

.dept-list { display: grid; gap: 0.9rem; margin-top: 1.2rem; }
.dept-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-soft);
}
.dept-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 11px; height: 11px;
  border-radius: 3px;
  background: var(--green);
  transform: rotate(45deg);
}

.callout {
  margin-top: 1.8rem;
  background: var(--blue-t);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.3rem 1.5rem;
}
.callout h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--blue-d); }
.callout p { font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- Cartes ---------- */
.cards { display: grid; gap: 1.6rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }
.card h3 { font-size: 1.12rem; margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--green-t);
  color: var(--green-d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 25px; height: 25px; }

/* cartes sur fond sombre */
.cards-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.cards-dark .card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.cards-dark .card h3 { color: #fff; }
.cards-dark .card p { color: rgba(255, 255, 255, 0.75); }
.cards-dark .card-icon { background: rgba(58, 164, 146, 0.22); color: #7fd6c6; }

.card-value { border-top: 4px solid var(--accent); }
.value-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-t);
  display: block;
  margin-bottom: 0.4rem;
}

/* ---------- Processus ---------- */
.process-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 4rem;
}
.process-intro h3 { font-size: 1.45rem; margin-bottom: 0.8rem; }
.process-intro p { color: var(--ink-soft); }
.process {
  counter-reset: step;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem 2rem;
  display: grid;
  gap: 1.15rem;
}
.process li {
  counter-increment: step;
  position: relative;
  padding-left: 3.1rem;
}
.process li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 2px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px; top: 40px; bottom: -15px;
  width: 2px;
  background: var(--blue-t);
}
.process strong { font-family: var(--font-head); font-size: 1rem; display: block; color: var(--navy); }
.process span { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Prestations ---------- */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.offer {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.1rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); }
.offer-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--blue-t);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.offer-icon svg { width: 28px; height: 28px; }
.offer h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.offer-pitch {
  color: var(--blue-d);
  font-weight: 500;
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
}
.checklist { display: grid; gap: 0.55rem; }
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--green-t);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--green-d);
  border-bottom: 2px solid var(--green-d);
  transform: rotate(-45deg);
}

/* ---------- Bande citation ---------- */
.quote-band {
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(16, 26, 49, 0.78), rgba(39, 64, 124, 0.82)),
    url("../images/plateau-production.jpg") center 30% / cover no-repeat;
}
.quote-inner { position: relative; }
.quote-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}
.quote-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.arglist { display: grid; gap: 1.5rem; }
.arglist li { padding-left: 2.1rem; position: relative; }
.arglist li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--accent);
  transform: rotate(45deg);
}
.arglist strong {
  font-family: var(--font-head);
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}
.arglist span { color: var(--ink-soft); font-size: 0.96rem; }

.contact-direct {
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.4rem;
  font-size: 1.03rem;
}
.contact-direct a { color: var(--blue); font-weight: 600; }

/* Formulaire */
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-l);
  padding: 2.3rem;
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.form-intro { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.form-field label span { color: var(--accent-d); }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea::placeholder,
.form-field input::placeholder { color: #a4adc0; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(55, 89, 167, 0.14);
}
.form-field.has-error input,
.form-field.has-error textarea { border-color: #d64545; }
.form-error {
  color: #c03434;
  font-size: 0.82rem;
  margin-top: 0.3rem;
}
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.form-success {
  margin-top: 1.1rem;
  background: var(--green-t);
  border: 1px solid #bfe3dc;
  color: var(--green-d);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
}
.form-failure {
  margin-top: 1.1rem;
  background: #fdf0ef;
  border: 1px solid #f2c7c3;
  color: #a32e2e;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
}
/* Honeypot : sorti de l'écran (pas display:none, certains bots l'évitent) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-d);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 0;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.logo-footer-mark { height: 42px; width: auto; margin-bottom: 0.9rem; }
.logo-footer { font-size: 1.25rem; margin-bottom: 0.7rem; color: #fff; }
.footer-tagline { font-size: 0.9rem; }
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: var(--accent); }
.footer-nav { display: grid; gap: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.3rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Animations d'apparition ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .offer { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  /* mobile/tablette : titre → image → texte+CTA (l'image ne doit pas être noyée) */
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "media" "rest";
    row-gap: 1.8rem;
  }
  .hero-media { max-width: 640px; }
  .hero h1 { margin-bottom: 0; }
  .hero-lead { font-size: 1.04rem; margin-bottom: 1.4rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .offers { grid-template-columns: 1fr; }
  .split, .split-reverse { grid-template-columns: 1fr; gap: 2.6rem; }
  .split-reverse .split-media { order: 1; }
  .split-reverse .split-text { order: 2; }
  .process-wrap { grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 4rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .hero h1 br { display: none; }
  .hero-float-1 { left: 8px; bottom: 12px; }
  .hero-float-2 { right: 8px; top: 12px; }

  /* Menu mobile */
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 18px 34px rgba(30, 46, 88, 0.16);
  }
  .main-nav.is-open { max-height: 360px; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 0 1rem;
  }
  .main-nav li { text-align: center; }
  .main-nav a { display: block; padding: 0.8rem 1rem; }
  .main-nav .nav-cta { margin: 0.6rem 1.4rem 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .stat strong { font-size: 1.7rem; }
  .cards-3 { grid-template-columns: 1fr; }
  .photo-frame::before { display: none; }
  .contact-form { padding: 1.7rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .quote-band { padding: 4.5rem 0; }
}
