/* =========================================================
   NUMERIC'TIME — feuille de style du site
   ========================================================= */

:root {
  --navy-950: #101828;
  --navy-900: #141d30;
  --accent: #0848c8;
  --accent-600: #073ba4;
  --accent-light: #90ade6;
  --paper: #f7f8fa;
  --paper-dim: #eef1f6;
  --ink: #101828;
  --ink-soft: #646973;
  --line: #e1e5ec;

  --container: 1240px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Work Sans', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Newsreader', ui-serif, Georgia, serif;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a { color: var(--accent-600); text-decoration: none; }
a:hover { color: var(--navy-900); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 2px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--accent); color: #ffffff; }
.btn-primary:hover { background: var(--accent-600); color: #ffffff; }
.btn-ghost { background: transparent; color: #ffffff; border: 1px solid #4b5565; }
.btn-ghost:hover { border-color: #ffffff; color: #ffffff; }
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 2px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-600);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-outline-sm:hover { background: var(--accent); color: #ffffff; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-600);
}

.card {
  background: #fdfdfe;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: 2px;
  background: var(--paper-dim);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-900);
}

/* ---------- Top bar ---------- */

.topbar {
  background: var(--navy-950);
  color: #d9dde5;
  font-size: 13px;
}
.topbar .container {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.topbar__item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__sep { width: 1px; height: 14px; background: #384258; }
.topbar a { color: inherit; }
.topbar a:hover { color: #ffffff; }

/* ---------- Header / nav ---------- */

.site-header {
  background: #fdfdfe;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; height: 30px; }
.logo img { display: block; height: 100%; width: auto; max-width: none; object-fit: contain; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: #383f4c;
}
.main-nav a:hover { color: var(--accent-600); }

.nav-item { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: #383f4c;
  cursor: pointer;
}
.nav-dropdown-toggle:hover { color: var(--accent-600); }
.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}
.nav-item.is-open .nav-dropdown-toggle::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  background: #fdfdfe;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 40px -14px rgba(15, 30, 60, 0.22);
  padding: 8px;
  z-index: 60;
}
.nav-item.is-open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #383f4c;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: #f2f5fb; color: var(--accent-600); }

.testimonial-carousel { margin: 0 auto; }
.testimonial-carousel__viewport { overflow: hidden; }
.testimonial-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.testimonial-carousel__slide .testimonial { height: 100%; }
.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
.testimonial-carousel__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy-950);
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.testimonial-carousel__arrow:hover { background: var(--accent-600); color: #fff; border-color: var(--accent-600); }
.testimonial-carousel__dots { display: flex; align-items: center; gap: 8px; }
.testimonial-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.testimonial-carousel__dot.is-active { background: var(--accent-600); width: 22px; border-radius: 4px; }

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--gutter) 88px;
  line-height: 1.7;
  color: var(--ink);
}
.legal-content h2 { font-size: 24px; color: var(--navy-950); margin: 36px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 18px; color: var(--navy-950); margin: 22px 0 10px; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 20px; padding: 0; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { text-decoration: underline; }
.legal-content .legal-meta { color: var(--ink-soft); font-size: 14px; margin-top: 40px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-950);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.header-cta { flex-shrink: 0; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
  padding: 88px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero .container {
  position: relative;
  display: flex;
  align-items: center;
}
.hero__content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.hero__eyebrow { color: var(--accent-light); }
.hero h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.14;
  color: #fafbfc;
}
.hero p {
  font-size: 17px;
  line-height: 1.6;
  color: #c2c8d4;
  max-width: 540px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 4px; }

/* ---------- Trust strip ---------- */

.trust {
  background: #fdfdfe;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust__item { display: flex; align-items: center; gap: 14px; font-size: 14.5px; color: var(--ink-soft); }
.trust__sep { width: 1px; height: 24px; background: var(--line); }
.trust__cities { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.trust__chips { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Sections ---------- */

.section { padding: 88px 0; }
.section--tight-bottom { padding-bottom: 80px; }
.section--tinted { background: var(--paper-dim); }
.section--flush-top { padding-top: 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head h2 { font-size: clamp(26px, 3vw, 34px); color: var(--navy-950); }
.section-head p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Piliers ---------- */

.piliers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.pilier-card {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pilier-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pilier-card h3 { font-size: 21px; color: var(--navy-950); }
.pilier-card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.pilier-card a { font-size: 14.5px; font-weight: 600; }

/* ---------- Compétences (page d'accueil) ---------- */

.competence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
}
.competence-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 30px 20px;
}
.competence-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.competence-card h3 { font-size: 15.5px; line-height: 1.4; color: var(--navy-950); min-height: 44px; }

/* ---------- Nos valeurs (page d'accueil) ---------- */

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.valeur-card {
  text-align: center;
  padding: 34px 22px;
  background: #ffffff;
  border-top: 3px solid var(--accent);
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
}
.valeur-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.valeur-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-950);
  margin-bottom: 8px;
}
.valeur-card p { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }

/* ---------- Approche ---------- */

.approche {
  background: var(--paper-dim);
  padding: 88px 0;
}
.approche .container {
  display: flex;
  gap: 64px;
  align-items: center;
}
.approche__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}
.approche__text h2 { font-size: clamp(24px, 2.6vw, 32px); color: var(--navy-950); max-width: 480px; }
.approche__text > p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 480px; }
.approche__list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.approche__list li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
}
.approche__list .tick {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.approche__visual { flex: 1; display: flex; align-items: center; justify-content: center; min-width: 280px; }
.approche__visual svg { width: 100%; height: auto; max-width: 420px; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy-950);
  padding: 64px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 28px; color: #fafbfc; }
.cta-band__text p { font-size: 16px; color: #c2c8d4; margin-top: 8px; }
.cta-band__action { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cta-band__contact { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.cta-band__contact span:first-child { font-size: 15px; color: #e6e9ee; font-weight: 600; }
.cta-band__contact span:last-child { font-size: 13.5px; color: #a7afbd; }

/* ---------- Footer ---------- */

.site-footer { background: #fdfdfe; padding: 56px 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; max-width: 280px; }
.footer-brand__logo { display: inline-block; width: 176px; height: 34px; align-self: flex-start; flex-shrink: 0; }
.footer-brand__logo img { display: block; width: 100% !important; height: 100% !important; max-width: none !important; object-fit: contain; object-position: left center; }
.footer-brand p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-950);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col a, .footer-col span { font-size: 14.5px; color: var(--ink-soft); }
.footer-col a { color: #383f4c; }
.footer-col a:hover { color: var(--accent-600); }
.footer-divider { height: 1px; background: var(--line); margin: 44px 0 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: var(--ink-soft); }
.footer-legal a:hover { color: var(--accent-600); }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
  .site-header .container { height: 68px; }
  .logo { height: 26px; }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fdfdfe;
    border-bottom: 1px solid var(--line);
    padding: 20px var(--gutter) 28px;
    gap: 18px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .main-nav.is-open .nav-item { width: 100%; }
  .main-nav.is-open .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .main-nav.is-open .nav-dropdown {
    position: static;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: #f5f7fb;
    margin-top: 10px;
    padding: 4px;
    width: 100%;
    min-width: 0;
  }
  .main-nav.is-open .nav-item.is-open .nav-dropdown { display: block; }

  .piliers-grid { grid-template-columns: 1fr; }
  .approche .container { flex-direction: column; }
  .approche__visual { order: -1; max-width: 340px; margin: 0 auto; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 640px) {
  .topbar .container { justify-content: center; flex-wrap: wrap; height: auto; padding-top: 8px; padding-bottom: 8px; gap: 10px; }
  .topbar__sep { display: none; }
  .header-cta .btn { height: 40px; padding: 0 16px; font-size: 13.5px; }
  .hero { padding: 56px 0 56px; }
  .hero__actions .btn { flex: 1 1 auto; }
  .trust .container { flex-direction: column; align-items: flex-start; }
  .trust__sep { display: none; }
  .section { padding: 64px 0; }
  .approche { padding: 64px 0; }
  .cta-band .container { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band__contact { text-align: left; }
  .cta-band__action { width: 100%; justify-content: space-between; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Pages internes (gabarits sur mesure)
   ========================================================= */

.page-hero {
  background: var(--navy-950);
  padding: 64px 0 56px;
}
.page-hero h1 {
  color: #fafbfc;
  font-size: clamp(28px, 3.6vw, 42px);
  margin-top: 14px;
  max-width: 760px;
}
.page-hero p {
  color: #c2c8d4;
  font-size: 16px;
  line-height: 1.6;
  max-width: 660px;
  margin-top: 16px;
}

.intro-block { max-width: 760px; display: flex; flex-direction: column; gap: 18px; margin-bottom: 48px; }
.intro-block p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.section-cta { text-align: center; margin-top: 40px; }
.info-card {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-card h3 { font-size: 17.5px; color: var(--navy-950); line-height: 1.35; }
.info-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.info-card .badge { align-self: flex-start; }
.info-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 2px;
  background: var(--paper-dim);
  color: var(--accent-600);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.formation-card {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.formation-card h3 { font-size: 18px; color: var(--navy-950); line-height: 1.4; }
.formation-card p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }
.formation-card__actions { display: flex; gap: 14px; margin-top: 4px; flex-wrap: wrap; }
.formation-card__actions a { font-size: 14px; font-weight: 600; }

.ref-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.bio-block {
  background: var(--paper-dim);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}
.bio-block p { font-size: 15.5px; line-height: 1.7; color: var(--ink); }
.bio-block .eyebrow { color: var(--accent-600); }

.doc-list { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.doc-list li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  padding: 16px 18px;
  background: #fdfdfe;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.doc-list .doc-icon { flex-shrink: 0; margin-top: 2px; }
.doc-list a.doc-link {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.doc-list a.doc-link:hover { color: var(--accent-600); }
.doc-list a.doc-link:hover .doc-icon svg { stroke: var(--accent-600); }
.doc-list .doc-arrow { margin-left: auto; font-size: 13px; color: var(--ink-soft); white-space: nowrap; }

.testimonial {
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial blockquote {
  margin: 0;
  font-family: 'Newsreader', ui-serif, Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy-950);
  font-style: italic;
}
.testimonial cite { font-style: normal; font-size: 14px; color: var(--ink-soft); display: block; }
.testimonial cite strong { color: var(--navy-950); font-weight: 600; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }

.contact-grid { display: flex; gap: 56px; align-items: flex-start; }
.contact-form { flex: 1.4; display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row--split { flex-direction: row; gap: 18px; }
.form-row--split > div { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13.5px; font-weight: 600; color: var(--navy-950); }
.form-row input,
.form-row select,
.form-row textarea {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fdfdfe;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--ink-soft); }

.form-security {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px 16px;
}
.form-security label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin: 0;
}
.form-security__question { font-weight: 700; color: var(--navy-950); }
.form-security input {
  width: 70px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 10px 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  background: #fff;
}
.form-error { font-size: 13px; color: #b3261e; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-info { flex: 1; display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item__icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 2px;
  background: var(--paper-dim); display: flex; align-items: center; justify-content: center;
}
.contact-info-item h3 { font-size: 15px; color: var(--navy-950); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.contact-info-item a:hover { color: var(--accent-600); }

@media (max-width: 980px) {
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { flex-direction: column; gap: 40px; }
}
@media (max-width: 640px) {
  .info-grid { grid-template-columns: 1fr; }
  .form-row--split { flex-direction: column; }
  .page-hero { padding: 48px 0 40px; }
}
