/* Midhire static website — no external fonts or frameworks required */
:root {
  --navy: #0a2b47;
  --navy-2: #071f34;
  --blue: #126da4;
  --blue-2: #1684c4;
  --sky: #e9f4fb;
  --gold: #f1b84b;
  --ink: #142434;
  --muted: #607080;
  --line: #dce5ec;
  --soft: #f5f8fa;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(4, 33, 55, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
section[id] { scroll-margin-top: 92px; }

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 9999;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border-radius: 8px;
}
.skip-link:focus { top: 18px; }

.topbar {
  background: var(--navy-2);
  color: #dceaf4;
  font-size: 13px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar a:hover { color: #fff; }

.nav-wrap {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(14,50,76,.09);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}
.brand-mark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
}
.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: .04em;
}
.brand small {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  color: #6a7883;
  letter-spacing: .16em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 650;
}
.site-nav > a:not(.button) {
  color: #334a5c;
  transition: color .2s ease;
}
.site-nav > a:not(.button):hover { color: var(--blue); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  width: 23px;
  height: 2px;
  margin: 5px auto;
  display: block;
  background: var(--navy);
  transition: .2s ease;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  background: var(--blue);
  color: white;
  font-weight: 750;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-1px);
  background: #0f6091;
  box-shadow: 0 10px 24px rgba(18,109,164,.22);
}
.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 10px;
}
.button-secondary {
  background: transparent;
  color: var(--navy);
  border-color: #b8c7d1;
}
.button-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #98aebb;
  box-shadow: none;
}
.button-light {
  background: white;
  color: var(--navy);
  border-color: white;
}
.button-light:hover {
  background: #eaf4fb;
  color: var(--navy);
}
.button-full { width: 100%; }

.hero {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 80% 18%, rgba(22,132,196,.12), transparent 30%),
    linear-gradient(180deg, #f9fbfd 0%, #eef5f9 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(18,109,164,.08);
  border-radius: 50%;
  right: -280px;
  top: -240px;
}
.hero-grid {
  min-height: 610px;
  padding-block: 82px 76px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1, .section h2, .hours-section h2 {
  margin: 16px 0 20px;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 68px);
}
.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #526575;
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 19px;
  color: #405768;
  font-size: 13px;
  font-weight: 650;
}
.trust-row span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.trust-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #23835c;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-visual { position: relative; }
.vehicle-card {
  overflow: hidden;
  min-height: 385px;
  position: relative;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 30px;
  background: linear-gradient(145deg, #0d3554 0%, #0a263f 100%);
  box-shadow: var(--shadow);
}
.vehicle-card::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: rgba(41,156,218,.16);
}
.vehicle-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #d9eefb;
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
}
.hero-car {
  width: 100%;
  margin-top: 20px;
  filter: drop-shadow(0 18px 16px rgba(0,0,0,.18));
}
.visual-bottom {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  color: white;
}
.visual-bottom strong { display: block; font-size: 15px; }
.visual-bottom span { display: block; margin-top: 2px; color: #adc6d7; font-size: 12px; }
.visual-bottom a {
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 9px;
  background: white;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 145px;
  padding: 14px 17px;
  border: 1px solid rgba(14,55,82,.09);
  border-radius: 15px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 35px rgba(7,36,57,.14);
}
.floating-card span {
  display: block;
  color: #6b7c88;
  font-size: 11px;
}
.floating-card strong {
  display: block;
  margin-top: 1px;
  color: var(--navy);
  font-size: 15px;
}
.floating-hours { left: -23px; bottom: 34px; }
.floating-years { right: -18px; top: 38px; }

.quick-info {
  border-top: 1px solid #e1e9ee;
  border-bottom: 1px solid #e1e9ee;
  background: white;
}
.quick-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr 1fr;
}
.quick-item {
  min-height: 118px;
  padding: 22px 28px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-right: 1px solid #e3eaf0;
}
.quick-item:first-child { padding-left: 0; }
.quick-item:last-child { border-right: 0; padding-right: 0; }
.quick-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--sky);
}
.quick-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quick-item small, .contact-list small {
  display: block;
  margin-bottom: 2px;
  color: #778792;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.quick-item strong {
  display: block;
  color: #274052;
  font-size: 14px;
  line-height: 1.4;
}
.quick-item a:hover strong { color: var(--blue); }

.section { padding: 95px 0; }
.section-heading {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: end;
}
.section h2, .hours-section h2 {
  font-size: clamp(34px, 4vw, 50px);
}
.section-heading h2 { margin-bottom: 0; }
.section-heading p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fleet-card {
  min-height: 330px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fleet-card:hover {
  transform: translateY(-4px);
  border-color: #c7d9e6;
  box-shadow: 0 18px 40px rgba(9,42,64,.09);
}
.fleet-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--sky);
}
.fleet-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fleet-card h3 {
  margin: 22px 0 9px;
  color: var(--navy);
  font-size: 21px;
}
.fleet-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.fleet-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.fleet-card a span { margin-left: 4px; }
.availability-note {
  margin: 22px 0 0;
  color: #7a8994;
  font-size: 12px;
}

.section-dark {
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy-2), #0e3b5e);
  color: white;
}
.section-dark::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -310px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 110px;
  align-items: center;
}
.eyebrow-light { color: #75c8f4; }
.section-dark h2 { color: white; }
.audience-copy > p {
  max-width: 650px;
  color: #c1d1dc;
  font-size: 16px;
}
.check-list {
  margin: 28px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 27px;
  color: #e4edf3;
  font-size: 14px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6ec4f1;
  font-weight: 900;
}
.audience-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}
.panel-kicker {
  color: #82c9ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.audience-panel h3 {
  margin: 11px 0 12px;
  font-size: 27px;
  line-height: 1.2;
}
.audience-panel p {
  margin: 0;
  color: #bfd0dc;
  font-size: 14px;
}
.panel-contact {
  margin-top: 30px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.panel-contact a {
  font-size: 20px;
  font-weight: 850;
}
.panel-contact span {
  color: #a8bfce;
  font-size: 12px;
  text-align: right;
}

.business-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
}
.business-card h2 { max-width: 650px; }
.business-card > p {
  max-width: 710px;
  color: var(--muted);
}
.business-points {
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.business-points > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
}
.business-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 14px;
}
.business-points span {
  color: var(--muted);
  font-size: 12px;
}
.business-aside {
  display: grid;
  gap: 14px;
}
.metric-card {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}
.metric-card span {
  display: block;
  color: #6f808c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.metric-card strong {
  display: block;
  margin: 5px 0 3px;
  color: var(--navy);
  font-size: 27px;
}
.metric-card small {
  color: var(--muted);
  font-size: 12px;
}

.section-soft { background: var(--soft); }
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}
.about-grid h2 { margin-bottom: 0; }
.about-copy > p {
  margin-top: 0;
  color: #526675;
  font-size: 16px;
}
.company-box {
  margin-top: 28px;
  padding: 27px;
  display: grid;
  gap: 19px;
  border: 1px solid #d9e3e9;
  border-radius: 20px;
  background: white;
}
.company-box span {
  display: block;
  margin-bottom: 3px;
  color: #7a8994;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.company-box strong {
  display: block;
  color: #273f50;
  font-size: 13px;
}
.company-box a {
  width: fit-content;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
  align-items: start;
}
.contact-copy > p { color: var(--muted); }
.contact-list {
  margin-top: 32px;
  display: grid;
  gap: 11px;
}
.contact-list > a {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s, transform .2s;
}
.contact-list > a:hover {
  transform: translateX(3px);
  border-color: #b8d1e2;
}
.contact-symbol {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--sky);
  color: var(--blue);
  font-size: 18px;
}
.contact-list strong {
  display: block;
  color: #264052;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.enquiry-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
}
.enquiry-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 25px;
}
.enquiry-card > p {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 13px;
}
.enquiry-card form { display: grid; gap: 15px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
label {
  color: #405768;
  font-size: 12px;
  font-weight: 750;
}
input, textarea, select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid #cdd9e1;
  border-radius: 10px;
  outline: none;
  background: white;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(22,132,196,.11);
}
.form-note {
  color: #7b8993;
  font-size: 10px;
  line-height: 1.5;
}

.hours-section {
  padding: 70px 0;
  background: #edf4f8;
}
.hours-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.hours-section h2 { margin-bottom: 0; }
.hours-card {
  overflow: hidden;
  border: 1px solid #d6e2ea;
  border-radius: 18px;
  background: white;
}
.hours-card > div {
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e4ebf0;
}
.hours-card > div:last-child { border-bottom: 0; }
.hours-card span { color: #607382; font-size: 13px; }
.hours-card strong { color: var(--navy); font-size: 13px; }

.site-footer {
  padding: 70px 0 24px;
  background: #071d30;
  color: #bfd0dc;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr 1fr;
  gap: 55px;
}
.brand-footer .brand-mark { background: rgba(255,255,255,.08); }
.brand-footer strong { color: white; }
.brand-footer small { color: #9bb3c2; }
.footer-grid > div:first-child p {
  max-width: 320px;
  margin: 18px 0 0;
  color: #9db1be;
  font-size: 13px;
}
.footer-grid h3 {
  margin: 3px 0 17px;
  color: white;
  font-size: 13px;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid a, .footer-grid span {
  color: #aabdc9;
  font-size: 12px;
  line-height: 1.55;
}
.footer-grid a:hover { color: white; }
.footer-legal {
  margin-top: 52px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #829aa9;
  font-size: 10px;
}
.footer-legal p { margin: 0; max-width: 780px; }

.legal-page {
  min-height: 55vh;
  padding: 74px 0 100px;
  background: var(--soft);
}
.legal-wrap {
  width: min(calc(100% - 40px), 850px);
  margin-inline: auto;
}
.legal-wrap h1 {
  margin: 12px 0 12px;
  color: var(--navy);
  font-size: clamp(38px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.legal-updated { margin: 0 0 34px; color: #768792; font-size: 12px; }
.legal-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}
.legal-card h2 {
  margin: 30px 0 8px;
  color: var(--navy);
  font-size: 20px;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: #526675; font-size: 14px; }
.legal-card a { color: var(--blue); text-decoration: underline; }

@media (max-width: 1050px) {
  .site-nav { gap: 17px; }
  .hero-grid { gap: 35px; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { gap: 55px; }
  .business-grid, .contact-grid { gap: 45px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 850px) {
  .topbar-inner > span { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-links { width: 100%; justify-content: space-between; }
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 10px 8px; }
  .site-nav .button { margin-top: 5px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-block: 65px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(100%, 650px); margin-inline: auto; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item, .quick-item:first-child, .quick-item:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #e3eaf0;
  }
  .quick-item:last-child { border-bottom: 0; }

  .section-heading, .about-grid, .contact-grid, .hours-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .audience-grid, .business-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 15px; }
  .business-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-links a:last-child { display: none; }
  .nav-inner { min-height: 70px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 12px; }
  .brand-mark svg { width: 30px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 8px; }
  .hero-grid { padding-block: 50px 58px; }
  .hero h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .vehicle-card { min-height: 310px; padding: 18px; border-radius: 22px; }
  .hero-car { margin-top: 32px; }
  .visual-bottom { left: 18px; right: 18px; bottom: 18px; }
  .visual-bottom span { display: none; }
  .floating-hours { left: -5px; bottom: -30px; }
  .floating-years { right: -3px; top: 40px; }
  .section { padding: 72px 0; }
  .section h2, .hours-section h2 { font-size: 36px; }
  .section-heading { margin-bottom: 28px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { min-height: 280px; }
  .check-list { grid-template-columns: 1fr; }
  .panel-contact { flex-direction: column; }
  .panel-contact span { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .enquiry-card { padding: 23px; }
  .hours-card > div { flex-direction: column; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; }
}
