:root {
  --navy: #062f65;
  --navy-2: #052b58;
  --blue: #0067d8;
  --sky: #eaf6ff;
  --sky-2: #f3f9ff;
  --text: #0b2a52;
  --muted: #5d7189;
  --border: rgba(15, 66, 122, .12);
  --shadow: 0 16px 42px rgba(9, 55, 105, .10);
  --shadow-strong: 0 24px 70px rgba(9, 55, 105, .16);
  --radius: 22px;
  --container: 1015px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}
body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 999;
  background: #fff;
  color: var(--blue);
  padding: 8px 12px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.topbar {
  background: linear-gradient(90deg, #062e63, #064983);
  color: #fff;
  font-size: 13px;
}
.topbar__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__message {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__info {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  font-weight: 900;
  font-size: 11px;
}
.topbar__urgent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 18px;
  border-radius: 999px;
  background: #f46868;
  font-weight: 900;
  white-space: nowrap;
}

.header {
  background: #fff;
  border-bottom: 1px solid rgba(5, 47, 101, .06);
  position: sticky;
  top: 0;
  z-index: 60;
}
.header__inner {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
}
.brand__logo {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(from 40deg, #0a58ba, #1485d5, #0a58ba, #144a91, #0a58ba);
  box-shadow: inset 0 0 0 4px #fff;
  overflow: hidden;
}
.brand__logo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
}
.brand__logo span {
  position: absolute;
  left: 25px;
  top: -4px;
  width: 4px;
  height: 64px;
  background: rgba(255,255,255,.9);
  transform-origin: center;
}
.brand__logo span:nth-child(1) { transform: rotate(0deg); }
.brand__logo span:nth-child(2) { transform: rotate(30deg); }
.brand__logo span:nth-child(3) { transform: rotate(60deg); }
.brand__logo span:nth-child(4) { transform: rotate(90deg); }
.brand__logo span:nth-child(5) { transform: rotate(120deg); }
.brand__logo span:nth-child(6) { transform: rotate(150deg); }

.brand__copy strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: .9;
  letter-spacing: .02em;
}
.brand__copy small {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.05;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.nav a {
  position: relative;
  color: #0a2c53;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: 8px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.lang {
  background: none;
  border: 0;
  color: var(--navy);
  font-weight: 900;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 372px;
  background: linear-gradient(90deg, #f9fcff 0%, #f7fbff 48%, #e9f5ff 100%);
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0 0 0 45%;
  background-image:
    linear-gradient(90deg, #f9fcff 0%, rgba(249,252,255,.75) 14%, rgba(249,252,255,.12) 35%, rgba(249,252,255,0) 60%),
    url("../img/hero-imagerie.jpg");
  background-size: cover;
  background-position: center right;
}
.hero__inner {
  position: relative;
  min-height: 372px;
  display: flex;
  align-items: center;
}
.hero__content {
  width: min(560px, 55%);
  padding-bottom: 58px;
}
.hero h1 {
  margin: 0 0 24px;
  font-family: Fraunces, Georgia, serif;
  font-size: 48px;
  line-height: 1.03;
  letter-spacing: -.04em;
  color: #062854;
}
.hero h1 span { color: var(--blue); }
.hero p {
  max-width: 510px;
  margin: 0;
  color: #263f5c;
  font-size: 15px;
  line-height: 1.65;
}

.section { padding: 0 0 24px; }
.section--services { margin-top: -96px; position: relative; z-index: 3; }
.primary-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  margin-bottom: 26px;
}
.main-card {
  position: relative;
  min-height: 177px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  padding: 25px 20px 18px;
  text-align: left;
  color: var(--text);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.main-card:hover,
.small-card:hover,
.flow button:hover,
.audience-card:hover,
.info-card:hover,
.map-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}
.main-card strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--navy);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.25;
}
.main-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.card-arrow {
  margin-top: auto;
  margin-left: auto;
  color: var(--blue);
  font-size: 23px;
  font-weight: 400;
}

.icon,
.info-icon,
.flow-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  background: #e8f4ff;
  border-radius: 50%;
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  position: relative;
}
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}
.icon--document::before {
  width: 16px; height: 21px; border: 2px solid; border-radius: 3px;
}
.icon--document::after {
  width: 8px; height: 2px; background: currentColor; top: 19px; left: 19px; box-shadow: 0 6px 0 currentColor;
}
.icon--image::before {
  width: 21px; height: 16px; border: 2px solid; border-radius: 3px;
}
.icon--image::after {
  width: 7px; height: 7px; border-radius: 50%; background: currentColor; top: 15px; right: 14px;
}
.icon--calendar::before {
  width: 22px; height: 20px; border: 2px solid; border-radius: 4px;
}
.icon--calendar::after {
  width: 18px; height: 2px; background: currentColor; top: 19px; left: 14px; box-shadow: 0 7px 0 currentColor;
}
.icon--payment::before {
  width: 24px; height: 17px; border: 2px solid; border-radius: 4px;
}
.icon--payment::after {
  width: 14px; height: 3px; background: currentColor; top: 21px; left: 16px;
}
.icon--receipt::before {
  width: 18px; height: 24px; border: 2px solid; border-radius: 3px;
}
.icon--receipt::after {
  width: 10px; height: 2px; background: currentColor; top: 17px; left: 18px; box-shadow: 0 6px 0 currentColor;
}
.icon--home::before {
  width: 22px; height: 17px; border: 2px solid; border-top: 0; bottom: 11px; left: 12px;
}
.icon--home::after {
  width: 17px; height: 17px; border-left: 2px solid; border-top: 2px solid; transform: rotate(45deg); top: 12px; left: 14px;
}
.icon--ribbon::before {
  width: 16px; height: 20px; border: 3px solid; border-radius: 50% 50% 50% 50%; transform: rotate(28deg);
}
.icon--helmet::before {
  width: 24px; height: 14px; border: 2px solid; border-bottom: 5px solid; border-radius: 18px 18px 5px 5px; bottom: 13px; left: 11px;
}

.admin-band,
.billing-band {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(105deg, #f0f8ff 0%, #f6fbff 35%, #fff 100%);
  box-shadow: 0 12px 32px rgba(9, 55, 105, .06);
}
.admin-band {
  min-height: 116px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 18px 22px 24px;
  margin-bottom: 18px;
}
.band-heading h2,
.section-title {
  margin: 0 0 9px;
  font-family: Fraunces, Georgia, serif;
  color: #0a2c58;
  font-size: 26px;
  line-height: 1.04;
  letter-spacing: -.03em;
}
.band-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.admin-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.small-card {
  min-height: 72px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.small-card .icon { width: 42px; height: 42px; border-radius: 50%; }
.small-card strong {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.billing-band {
  padding: 18px 15px 18px;
  margin-bottom: 18px;
}
.billing-band .band-heading {
  margin-bottom: 14px;
}
.flow {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 1fr 1.35fr 1fr 1.2fr 1.08fr;
  gap: 10px;
}
.flow button {
  border: 1px solid rgba(9, 55, 105, .09);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(9, 55, 105, .07);
  padding: 11px 9px;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  align-items: center;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease;
}
.flow-icon {
  width: 28px;
  height: 28px;
  font-size: 14px;
  grid-row: span 2;
}
.flow strong {
  color: var(--navy);
  font-size: 11px;
  line-height: 1.15;
}
.flow small {
  color: var(--muted);
  font-size: 10px;
}

.section--audiences { padding: 0 0 22px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.audience-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.audience-card--pro { background: linear-gradient(135deg, #eef8ff 0%, #fff 45%); }
.audience-card--social { background: linear-gradient(135deg, #eafafa 0%, #fff 45%); }
.audience-card--admin { background: linear-gradient(135deg, #f3f0ff 0%, #fff 45%); }
.audience-card__media {
  height: 118px;
  position: relative;
  overflow: hidden;
}
.audience-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.55) 45%, rgba(255,255,255,.05) 100%);
  z-index: 1;
}
.audience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.audience-card__body {
  margin-top: -108px;
  position: relative;
  z-index: 2;
  padding: 22px 16px 15px;
}
.audience-card h2 {
  max-width: 150px;
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, serif;
  color: var(--blue);
  font-size: 26px;
  line-height: .96;
  letter-spacing: -.03em;
}
.audience-card--social h2 { color: #008c94; }
.audience-card--admin h2 { color: #5342a0; }
.audience-card p {
  max-width: 180px;
  min-height: 44px;
  margin: 0 0 15px;
  color: #243c58;
  font-size: 12px;
  line-height: 1.35;
}
.certify {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(9, 55, 105, .08);
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  color: var(--navy);
  padding: 10px 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 900;
}
.certify::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f4ff;
  color: var(--blue);
}
.audience-card__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, #063d78, #005dc5);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 101, 216, .18);
}
.btn--outline {
  background: #fff;
  color: var(--navy);
  border-color: rgba(0, 101, 216, .45);
}
.btn--full { width: 100%; margin-top: 12px; }

.section--practical { padding: 0 0 28px; }
.section-title {
  margin-bottom: 12px;
}
.practical-grid {
  display: grid;
  grid-template-columns: 1.55fr .78fr .95fr .92fr;
  gap: 14px;
}
.map-card,
.info-card {
  min-height: 137px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.map-card {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
}
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-card div {
  padding: 22px 18px;
}
.map-card h3,
.info-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
}
.map-card p,
.info-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.map-card a,
.info-card a {
  color: var(--blue);
  font-weight: 900;
  font-size: 11px;
}
.info-card {
  padding: 19px 17px;
}
.info-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
  font-size: 18px;
  font-weight: 900;
}

.footer {
  background: linear-gradient(135deg, #042a55, #064176);
  color: #fff;
  padding: 38px 0 19px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr 1fr 1.35fr;
  gap: 44px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__logo--footer {
  width: 45px;
  height: 45px;
}
.footer-brand strong {
  display: block;
  font-size: 25px;
  line-height: .9;
}
.footer-brand small {
  display: block;
  font-size: 12px;
  line-height: 1.06;
}
.footer h3 {
  margin: 0 0 10px;
  font-size: 12px;
}
.footer a {
  display: block;
  margin: 4px 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}
.footer-secure {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 17px 20px;
}
.footer-secure strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}
.footer-secure p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 11px;
}
.footer-bottom {
  margin-top: 27px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align: center;
  color: rgba(255,255,255,.68);
  font-size: 11px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 28, 58, .62);
  backdrop-filter: blur(10px);
}
.modal__box {
  position: relative;
  width: min(760px, 100%);
  max-height: min(86vh, 920px);
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
  padding: 38px;
  outline: 0;
}
.modal__close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #edf6ff;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}
.panel-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f4ff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.panel h2 {
  margin: 12px 0 14px;
  font-family: Fraunces, Georgia, serif;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.panel h3 {
  margin: 18px 0 8px;
  color: var(--navy);
}
.panel p {
  color: #304965;
}
.note,
.warning {
  margin: 15px 0;
  padding: 15px 16px;
  border-radius: 14px;
  background: #eef7ff;
  color: var(--navy);
  border: 1px solid rgba(0,101,216,.13);
  font-weight: 700;
}
.warning {
  background: #fff8d9;
  color: #594200;
  border-color: rgba(236, 182, 20, .34);
}
.choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.choices button {
  min-height: 78px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  text-align: left;
  padding: 17px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.choices small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
.form {
  display: grid;
  gap: 12px;
  margin-top: 15px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
input, textarea, select {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fbff;
  color: var(--text);
  padding: 11px 12px;
}
textarea { min-height: 112px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(0, 103, 216, .14);
  border-color: rgba(0, 103, 216, .4);
}

@media (max-width: 1080px) {
  .container { width: min(100% - 36px, var(--container)); }
  .nav { gap: 18px; }
  .primary-cards { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(4, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card {
    display: grid;
    grid-template-columns: .75fr 1fr;
  }
  .audience-card__body { margin-top: 0; }
  .audience-card__media { height: auto; min-height: 220px; }
  .audience-card__media::before { background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,255,255,0)); }
  .practical-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
  }
  .header__inner { height: 76px; }
  .brand { min-width: auto; }
  .brand__copy strong { font-size: 24px; }
  .brand__copy small { font-size: 11px; }
  .menu-button { display: block; margin-left: auto; }
  .lang { order: 4; }
  .nav {
    position: fixed;
    top: 122px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border);
  }
  .nav.is-open { display: flex; }
  .hero__image { inset-left: 30%; opacity: .55; }
  .hero__content { width: 70%; }
  .admin-band { grid-template-columns: 1fr; }
  .admin-actions { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero { min-height: 440px; }
  .hero__inner { min-height: 440px; align-items: flex-start; padding-top: 54px; }
  .hero__image {
    inset: auto 0 0 0;
    height: 230px;
    opacity: .8;
    background-position: center;
  }
  .hero__content { width: 100%; }
  .hero h1 { font-size: 39px; }
  .primary-cards,
  .flow,
  .audience-card,
  .practical-grid,
  .map-card,
  .footer__grid,
  .choices,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .section--services { margin-top: -48px; }
  .main-card { min-height: 150px; }
  .modal { padding: 10px; }
  .modal__box { padding: 26px 20px; border-radius: 20px; }
}


/* Correctif : empêcher l'affichage de la modale au chargement.
   Sans cette règle, .modal { display:grid; } peut écraser l'attribut HTML hidden. */
.modal[hidden] {
  display: none !important;
}


/* Correctif full-width :
   La première version gardait un container trop étroit.
   Ici, la maquette respire sur toute la largeur de la fenêtre,
   avec seulement des marges internes comme sur le visuel. */
@media (min-width: 1081px) {
  :root {
    --container: 100%;
  }

  .container {
    width: 100%;
    max-width: none;
    padding-left: clamp(48px, 5vw, 86px);
    padding-right: clamp(48px, 5vw, 86px);
  }

  .hero__content {
    width: min(620px, 46vw);
  }

  .hero__image {
    inset: 0 0 0 42%;
  }

  .primary-cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(14px, 1.1vw, 22px);
  }

  .main-card {
    min-height: 205px;
    padding: 28px 24px 22px;
  }

  .admin-band,
  .billing-band {
    width: 100%;
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.4vw, 28px);
  }

  .practical-grid {
    grid-template-columns: 1.55fr .78fr .95fr .92fr;
    gap: clamp(16px, 1.2vw, 24px);
  }

  .footer__grid {
    grid-template-columns: 1.25fr .9fr 1fr 1.35fr;
  }
}
