/* ============================================================
   Robert Stepa — site vitrine franco-polonais
   Mobile-first. Accent bleu marine + rappel drapeaux FR / PL.
   ============================================================ */

:root {
  --navy: #122E52;
  --navy-deep: #0B1E38;
  --navy-soft: #E8EEF8;
  --red: #DC143C;
  --red-soft: #FCE9ED;
  --ink: #122E52;
  --muted: #5A6478;
  --faint: #8B93A5;
  --bg: #F9F7F2;
  --card: #FFFFFF;
  --line: #E4E2D9;
  --line-soft: #ECEAE2;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(18, 46, 82, 0.05);
  --shadow-md: 0 6px 24px -8px rgba(18, 46, 82, 0.12);
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: none; }

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

/* ---------- Liseré drapeaux FR / PL ---------- */
.flag-ribbon {
  height: 4px;
  background: linear-gradient(90deg,
    #122E52 0%, #122E52 16.6%,
    #FFFFFF 16.6%, #FFFFFF 33.3%,
    #DC143C 33.3%, #DC143C 50%,
    #FFFFFF 50%, #FFFFFF 75%,
    #DC143C 75%, #DC143C 100%);
}
body.no-ribbon .flag-ribbon { display: none; }

.flag-pair { display: inline-flex; gap: 5px; align-items: center; flex: none; }
.flag-pair .flag {
  width: 21px; height: 14px;
  border-radius: 2.5px;
  overflow: hidden;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(24, 34, 58, 0.14);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-text { line-height: 1.2; min-width: 0; }
.brand-name { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--ink); display: block; }
.brand-tag { font-size: 12.5px; color: var(--muted); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.main-nav { display: none; align-items: center; gap: 4px; }
.main-nav > a, .nav-drop > button {
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav > a:hover, .nav-drop > button:hover { background: var(--navy-soft); color: var(--navy); }

.nav-drop { position: relative; }
.nav-drop .chev { transition: transform 0.18s ease; }
.nav-drop.open .chev { transform: rotate(180deg); }
.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 268px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 6px;
  display: none;
  flex-direction: column;
}
.nav-drop.open .drop-menu { display: flex; }
.drop-menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.drop-menu a:hover { background: var(--navy-soft); color: var(--navy); }
.drop-menu a svg { color: var(--navy); flex: none; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--card);
  flex: none;
}
.lang-switch button {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: none;
  padding: 4px 11px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--faint);
}
.lang-switch button.active { background: var(--navy); color: #fff; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  color: var(--ink);
  flex: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: #fff;
  padding: 10px 20px 18px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 11px 4px;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .mobile-sub a { padding-left: 18px; font-weight: 400; color: var(--muted); font-size: 14.5px; }
.mobile-nav .mobile-group-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); padding: 14px 4px 4px; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 56px 0; background: var(--card); }
.section.tinted { background: var(--bg); }
.section-head { margin-bottom: 28px; }
.section h2 {
  font-size: clamp(26px, 4.5vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}
.section-sub { color: var(--muted); margin-top: 8px; font-size: 16px; max-width: 60ch; text-wrap: pretty; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { padding: 48px 0 56px; background: var(--card); }
.hero-grid { display: grid; gap: 36px; align-items: center; }
.hero h1 {
  font-size: clamp(32px, 6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--navy); }
.hero-sub {
  margin-top: 18px;
  font-size: clamp(16px, 2.2vw, 18.5px);
  color: var(--muted);
  max-width: 52ch;
  text-wrap: pretty;
}
.hero-cta { margin-top: 28px; }
.hero-photo { width: 100%; max-width: 460px; justify-self: center; }
.hero-photo image-slot { width: 100%; aspect-ratio: 4 / 4.4; height: auto; }
.hero-img { width: 100%; height: auto; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: 16px; display: block; }

/* ---------- Barre de réassurance ---------- */
.reassure { background: var(--navy); color: #fff; padding: 18px 0; }
.reassure-items { display: grid; gap: 14px; }
.reassure-item { display: flex; align-items: center; gap: 11px; font-weight: 500; font-size: 15px; }
.reassure-item svg { flex: none; color: #AFC4E4; }

/* ---------- Audio ---------- */
.audio-grid { display: grid; gap: 18px; }
.audio-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.audio-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.audio-lang {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px 4px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.audio-lang .flag {
  width: 19px; height: 13px;
  border-radius: 2.5px;
  box-shadow: inset 0 0 0 1px rgba(24, 34, 58, 0.14);
  display: block;
}
.audio-lang.fr { background: var(--navy-soft); color: var(--navy); }
.audio-lang.pl { background: var(--red-soft); color: var(--red); }
.audio-time { font-size: 14px; color: var(--muted); font-variant-numeric: tabular-nums; }
.audio-main { display: flex; align-items: center; gap: 14px; }
.audio-play {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background 0.15s ease;
}
.audio-play:hover { background: var(--navy-deep); }
.audio-card.pl .audio-play { background: var(--red); }
.audio-card.pl .audio-play:hover { background: #B01030; }
.audio-card.pl .audio-wave span.played { background: var(--red); }
.audio-wave { display: flex; align-items: center; gap: 3px; height: 40px; flex: 1; min-width: 0; }
.audio-wave span {
  width: 3.5px;
  border-radius: 2px;
  background: var(--line);
  transition: background 0.12s linear;
  flex: none;
}
.audio-wave span.played { background: var(--navy); }
.audio-caption { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* ---------- Bien plus qu'un interprète ---------- */
.about-grid { display: grid; gap: 32px; }
.check-list { list-style: none; display: grid; gap: 14px; margin-top: 20px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; font-weight: 500; }
.check-list svg { flex: none; color: var(--navy); margin-top: 3px; }
.quote {
  border-left: 3px solid var(--red);
  padding-left: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 23px);
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
  align-self: center;
}
body.quote-sans .quote { font-family: var(--font-sans); font-style: normal; font-weight: 500; }

.about-title {
  font-size: clamp(26px, 4.5vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}

/* ---------- Rotateur de textes (défilement) ---------- */
.about-rotator {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.rotator-slide { display: none; }
.rotator-slide.active { display: block; animation: rotator-fade 0.45s ease; }
.rotator-slide h3 {
  font-size: clamp(19px, 2.8vw, 23px);
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--navy);
}
.rotator-slide p { margin-top: 10px; color: var(--muted); max-width: 76ch; text-wrap: pretty; font-size: 16px; }
@keyframes rotator-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.rotator-dots { display: flex; gap: 8px; margin-top: 20px; }
.rotator-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.rotator-dots button.active { background: var(--red); transform: scale(1.2); }
.about-rotator.static .rotator-slide { display: block; animation: none; }
.about-rotator.static .rotator-slide + .rotator-slide { margin-top: 24px; }

/* ---------- Cartes services ---------- */
.services-grid { display: grid; gap: 16px; }
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.service-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-soft);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-navy { background: var(--navy); color: #fff; }
.icon-red { background: var(--red); color: #fff; }
.icon-royal { background: #2B5CB0; color: #fff; }
.icon-white { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--line); }
.service-card h3 { font-size: 18.5px; letter-spacing: -0.01em; line-height: 1.25; }
.service-card p { color: var(--muted); font-size: 15px; flex: 1; }
.service-link { font-weight: 600; font-size: 15px; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .service-link { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Process ---------- */
.process-grid { display: grid; gap: 28px; }
.process-step { position: relative; }
.process-head { display: flex; align-items: center; gap: 13px; margin-bottom: 10px; }
.process-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.process-step:nth-child(1) .process-num { background: var(--navy); }
.process-step:nth-child(2) .process-num { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 2px var(--line); }
.process-step:nth-child(3) .process-num { background: var(--red); }
.process-step h3 { font-size: 20px; }
.process-step p { color: var(--muted); font-size: 15.5px; }

/* ---------- Cibles ---------- */
.targets-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.target-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  box-shadow: var(--shadow-sm);
}
.target-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Témoignages ---------- */
.testi-grid { display: grid; gap: 16px; }
.testi-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.testi-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  text-wrap: pretty;
}
.testi-card figcaption { margin-top: 14px; font-size: 14px; color: var(--muted); }
.logo-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.logo-strip image-slot { width: 132px; height: 52px; }

/* ---------- Partenaires (marquee défilant) ---------- */
.marquee {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  cursor: grab;
}
.marquee-track:active { cursor: grabbing; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 88px;
  padding: 16px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.logo-chip img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.logo-chip:hover img { filter: grayscale(0); opacity: 1; }
.logo-chip--dark { background: var(--navy); border-color: var(--navy-deep); }
.logo-chip--dark img { filter: none; opacity: 0.92; }
.logo-chip--dark:hover img { opacity: 1; }

@media (max-width: 640px) {
  .logo-chip { width: 132px; height: 72px; padding: 12px 16px; }
  .marquee-track { gap: 12px; animation-duration: 28s; }
}

/* Accessibilité : pas d'animation, défilement manuel gauche-droite */
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .marquee-track { animation: none; }
}

/* ---------- Réseaux sociaux ---------- */
.section-photo { margin-bottom: 32px; }
.section-photo image-slot { width: 100%; aspect-ratio: 21 / 9; height: auto; }

.social-layout { display: grid; gap: 24px; align-items: center; }
.social-grid { display: grid; gap: 12px; }
.video-card { position: relative; }
.video-card image-slot { width: 100%; aspect-ratio: 16 / 10; height: auto; }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 52px;
  border-radius: 14px;
  background: #f03;
  background: linear-gradient(180deg, #f50000, #d40000);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(160, 0, 0, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  z-index: 2;
}
.video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 16px 36px rgba(160, 0, 0, 0.5);
}
.video-play svg { margin-left: 3px; }
.social-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.social-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.social-card .social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-soft);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.social-card strong { display: block; font-size: 15.5px; }
.social-card span { display: block; font-size: 13.5px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 36px; }
.contact-channels { list-style: none; display: grid; gap: 14px; margin-top: 24px; }
.contact-channels a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.contact-channels a:hover { color: var(--navy); }
.contact-channels svg { color: var(--navy); flex: none; }

.contact-form { display: grid; gap: 12px; }
.form-row { display: grid; gap: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  appearance: none;
  -webkit-appearance: none;
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6478' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color: var(--muted);
}
.contact-form select.filled { color: var(--ink); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-soft);
}
.contact-form ::placeholder { color: var(--faint); }
.form-success {
  display: none;
  background: #EDF6EF;
  border: 1px solid #BFDFC8;
  color: #1F5C33;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 15px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #C6D2E6;
  padding: 48px 0 28px;
  font-size: 14.5px;
}
.footer-grid { display: grid; gap: 32px; }
.footer-brand .brand-name { color: #fff; font-size: 16px; }
.footer-pitch { margin-top: 10px; max-width: 34ch; text-wrap: pretty; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a { color: #C6D2E6; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C6D2E6;
}
.footer-social a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13.5px;
  color: #8FA0BF;
}
.footer-bottom a { color: #8FA0BF; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Pages services ---------- */
.page-hero { background: var(--card); padding: 52px 0; border-bottom: 1px solid var(--line-soft); }
.page-hero .crumb { font-size: 13.5px; color: var(--faint); margin-bottom: 16px; display: inline-flex; gap: 8px; align-items: center; }
.page-hero .crumb a { color: var(--navy); font-weight: 500; }
.page-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 24ch;
  text-wrap: balance;
}
.page-hero .lead { margin-top: 16px; color: var(--muted); font-size: 17px; max-width: 62ch; text-wrap: pretty; }
.page-body { padding: 48px 0 8px; background: var(--card); }
.page-body .prose { max-width: 760px; }
.prose h2 { font-size: clamp(22px, 3.4vw, 27px); letter-spacing: -0.015em; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #3C4458; margin-bottom: 14px; font-size: 16px; }
.prose ul { margin: 0 0 14px 0; padding-left: 0; list-style: none; display: grid; gap: 8px; }
.prose ul li { display: flex; gap: 10px; align-items: flex-start; color: #3C4458; }
.prose ul li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--navy);
  flex: none;
  margin-top: 8px;
}
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 34px 28px;
  margin: 48px 0 56px;
  display: grid;
  gap: 18px;
}
.cta-banner h2 { font-size: clamp(21px, 3vw, 26px); letter-spacing: -0.015em; }
.cta-banner p { color: #C6D2E6; max-width: 56ch; }
.cta-banner .btn { background: #fff; color: var(--navy); justify-self: start; }
.cta-banner .btn:hover { background: var(--navy-soft); }

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 720px) {
  .section { padding: 76px 0; }
  .hero { padding: 64px 0 76px; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
  .reassure-items { grid-template-columns: repeat(3, 1fr); justify-items: center; }
  .audio-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .targets-grid { grid-template-columns: repeat(4, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .social-layout { grid-template-columns: 0.85fr 1.15fr; gap: 40px; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr auto; align-items: center; padding: 38px 40px; }
}

@media (min-width: 980px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
