/* =========================================================
   FOOTBALLACCOMPAGNEMENT.FR — style.css complet
   Base commune index / pages internes / modales
   ========================================================= */

/* 1. RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. VARIABLES */
:root {
  --bg-main: #0f172a;
  --panel: #111827;
  --panel-soft: #1e293b;
  --accent: #16a34a;
  --accent-secondary: #0ea5e9;
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-soft: #cbd5e1;
  --text-strong: #020617;
  --text-light: #e5e7eb;
  --card-bg: #f9fafb;
  --card-bg-soft: #e5e7eb;
  --card-border: rgba(148, 163, 184, 0.7);
  --shadow-strong: 0 18px 40px rgba(15, 23, 42, 0.65);
  --shadow-soft: 0 16px 32px rgba(15, 23, 42, 0.45);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-card: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.16s ease-out;
  --transition-med: 0.26s ease-out;
  --content-max: 1180px;
}

/* 3. BASE */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at 0% 0%, #38bdf8 0, #0f172a 55%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

strong {
  color: inherit;
}

ul,
ol {
  padding-left: 18px;
}

li {
  line-height: 1.55;
}

:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.7);
  outline-offset: 2px;
}

/* 4. FOND GLOBAL */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 10% 0%, rgba(59, 130, 246, 0.35), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(22, 163, 74, 0.25), transparent 60%);
  opacity: 0.6;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.25) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at top, transparent 0, black 60%);
}

/* 5. PAGE WRAPPER */
.page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 32px 16px;
  flex: 1 0 auto;
}

header {
  margin-bottom: 12px;
}

/* 6. TOP BAR */
.top-bar {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.brand-block:hover .brand-title {
  color: var(--accent);
}

.brand-block:focus-visible {
  outline: 3px solid rgba(21, 128, 61, 0.22);
  outline-offset: 6px;
  border-radius: 16px;
}

.brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-title {
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.1;
  transition: color var(--transition-fast);
}

.brand-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.2;
}

.top-center {
  display: flex;
  align-items: center;
  justify-content: stretch;
  width: 100%;
  min-width: 0;
}

.top-cta-btn {
  width: 100%;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  min-height: 42px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 5px 14px rgba(22, 163, 74, 0.15), 0 8px 18px rgba(15, 23, 42, 0.16);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, filter .18s ease;
}

.top-cta-btn::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  flex: 0 0 auto;
}

.top-cta-btn:hover {
  transform: translateY(-1px);
  background: #15803d;
  box-shadow: 0 7px 16px rgba(22, 163, 74, 0.18), 0 10px 22px rgba(15, 23, 42, 0.2);
}

.top-cta-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.top-cta-btn:focus-visible {
  outline: 3px solid rgba(21, 128, 61, 0.22);
  outline-offset: 3px;
}

.top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #0f172a;
  font-size: 14px;
  transition: background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.social-links a:hover {
  background: var(--accent);
  color: #f9fafb;
  transform: translateY(-1px);
}

/* 7. NAVIGATION */
.main-nav-wrapper {
  margin-top: 6px;
  margin-bottom: 6px;
}

.main-nav {
  display: flex;
  justify-content: center;
}

.main-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.8);
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, transform .14s ease, border-color .18s ease, box-shadow .18s ease;
}

.nav-link:hover {
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(148, 163, 184, 0.9);
}

.nav-link.active {
  background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.35);
}

.nav-link-cta {
  background: var(--accent);
  border-color: rgba(34, 197, 94, 0.9);
  color: #fff;
}

.nav-link-cta:hover {
  background: #15803d;
}

/* 8. HERO */
.hero {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    linear-gradient(120deg, rgba(14, 165, 233, 0.18), transparent 55%),
    linear-gradient(-135deg, rgba(22, 163, 74, 0.16), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(14, 165, 233, 0.82);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.hero-eyebrow-line {
  width: 24px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--accent-secondary), transparent);
}

.hero-title {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-strong);
}

.hero-title span {
  background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 10px;
}

.hero-line {
  height: 2px;
  width: 140px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 8px 0 12px;
}

.hero-footer-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-right-box {
  padding: 12px 14px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-right-box + .hero-right-box {
  margin-top: 10px;
}

.hero-right-box strong {
  color: var(--text-strong);
  font-weight: 600;
}

.hero-right-box ul {
  padding-left: 16px;
}

.hero-right-box li {
  margin-bottom: 4px;
}

.hero-roles,
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-pill,
.hero-tag {
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 11px;
  color: #111827;
  background: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
}

.hero-role {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.hero-action-btn {
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.8);
  background: #111827;
  color: #f9fafb;
  transition: background .18s ease, transform .14s ease;
}

.hero-action-btn:hover {
  background: #0f172a;
  transform: translateY(-1px);
}

.hero-action-btn.secondary {
  background: #e5e7eb;
  color: #111827;
  border-color: rgba(148, 163, 184, 0.7);
}

.hero-action-btn.secondary:hover {
  background: #d1d5db;
}

/* 9. SECTION HEADERS */
.menu-header {
  margin: 22px 0 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.menu-header h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #e5e7eb;
}

.menu-header span {
  font-size: 13px;
  color: #e5e7eb;
}

.section-note {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 8px;
  line-height: 1.6;
  max-width: 820px;
}

/* 10. FILTRES */
.filters-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.65);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* 11. GRILLES & CARTES */
.cards-group {
  margin-bottom: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 18px;
  align-items: stretch;
}

.card-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  border-radius: var(--radius-card);
  padding: 18px 16px;
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
  border: 1px solid rgba(148, 163, 184, 0.72);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  color: var(--text-main);
  cursor: pointer;
  min-height: 96px;
  transition: transform .16s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.55);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.28);
}

.card:active {
  transform: translateY(0);
}

.card-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-strong);
}

.card-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.card-arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-strong);
  font-size: 24px;
  line-height: 1;
  transition: transform .16s ease, background .18s ease, color .18s ease;
}

.card:hover .card-arrow {
  transform: translateX(2px);
  background: var(--accent);
  color: #fff;
}

/* 12. BANDEAU BAS / CTA */
.bottom-strip {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--radius-pill);
  background: rgba(229, 231, 235, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bottom-strip span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 760px;
}

.bottom-strip-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bottom-strip-btn {
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  min-height: 42px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 5px 14px rgba(22, 163, 74, 0.16);
}

.bottom-strip-btn:hover {
  background: #15803d;
  transform: translateY(-1px);
}

/* 13. FOOTER */
footer {
  width: 100%;
  margin-top: 22px;
  padding: 0 16px 26px;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-left {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #e5e7eb;
  font-size: 12px;
}

.footer-links a {
  color: #e5e7eb;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #7dd3fc;
}

/* 14. MODALES */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  width: min(720px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  border-radius: 22px;
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
  border: 1px solid rgba(148, 163, 184, 0.78);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
  padding: 22px 20px 18px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.2;
}

.modal-close-btn {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s ease, transform .16s ease, color .18s ease;
}

.modal-close-btn:hover {
  background: #111827;
  color: #fff;
  transform: rotate(90deg);
}

.modal-body {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.75;
}

.modal-body p + p,
.modal-body ul + p,
.modal-body p + ul {
  margin-top: 12px;
}

.modal-body ul {
  margin-top: 8px;
  padding-left: 20px;
}

.modal-body li + li {
  margin-top: 6px;
}

.modal-cta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  justify-content: flex-end;
}

.modal-cta-btn {
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform .18s ease, background-color .18s ease;
}

.modal-cta-btn:hover {
  background: #15803d;
  transform: translateY(-1px);
}

.modal-hidden-contents {
  display: none;
}

/* 15. PAGE CONTACT */
.section-intro {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.contact-form {
  background: #f9fafb;
  border-radius: var(--radius-card);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
}

.form-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: #f9fafb;
  border-radius: var(--radius-card);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
}

.info-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 10px;
}

.info-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 5px;
  font-size: 13px;
  color: var(--text-muted);
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
}

.proof-card {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  border-radius: var(--radius-card);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    linear-gradient(120deg, rgba(14, 165, 233, 0.14), transparent 55%),
    linear-gradient(-135deg, rgba(22, 163, 74, 0.12), transparent 60%);
  pointer-events: none;
}

.proof-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-strong);
  position: relative;
  z-index: 1;
}

.proof-item {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* 16. RESPONSIVE */
@media (max-width: 980px) {
  .top-bar {
    grid-template-columns: 1fr;
    justify-items: stretch;
    border-radius: 28px;
  }

  .brand-block,
  .top-right,
  .top-center {
    width: 100%;
    justify-content: center;
  }

  .brand-block {
    text-align: center;
  }

  .brand-text {
    align-items: center;
  }

  .top-right {
    justify-content: center;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .bottom-strip {
    border-radius: 26px;
    align-items: stretch;
    flex-direction: column;
  }

  .bottom-strip-actions {
    width: 100%;
    justify-content: stretch;
  }

  .bottom-strip-btn {
    width: 100%;
    flex: 1 1 auto;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 24px 14px;
  }

  .top-bar {
    padding: 16px;
  }

  .brand-block {
    flex-direction: column;
  }

  .brand-title,
  .brand-subtitle {
    text-align: center;
  }

  .hero {
    padding: 18px 16px;
    gap: 16px;
  }

  .hero-title {
    font-size: clamp(24px, 7vw, 30px);
  }

  .menu-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .card {
    min-height: 88px;
    padding: 16px 14px;
  }

  .card-title {
    font-size: 15px;
  }

  .card-tagline {
    font-size: 12.5px;
  }

  .bottom-strip {
    padding: 16px;
  }

  .modal {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .modal-header {
    align-items: flex-start;
  }

  .modal-title {
    font-size: 17px;
  }

  .modal-cta {
    justify-content: stretch;
  }

  .modal-cta-btn {
    width: 100%;
  }

  .footer-links {
    gap: 8px;
  }
}