@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --navy: #0d3b66;
  --navy-2: #163f6e;
  --blue: #2563eb;
  --blue-soft: #dce9ff;
  --orange: #f97316;
  --orange-soft: #fff0e1;
  --ink: #0f172a;
  --muted: #556173;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 20px 60px rgba(7, 20, 40, 0.12);
  --shadow-soft: 0 14px 30px rgba(7, 20, 40, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 28%),
    var(--bg);
}

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

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  color: var(--ink);
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7f8fb, #ffffff);
}

.section-blue {
  background:
    linear-gradient(180deg, rgba(13, 59, 102, 0.96), rgba(11, 43, 77, 0.96)),
    linear-gradient(180deg, #0d3b66, #0a2742);
  color: #fff;
}

.section-blue .eyebrow,
.section-blue h2 {
  color: #fff;
}

.section-blue .lede,
.section-blue .small-note {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading.center {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.section-heading.tight {
  margin-bottom: 24px;
}

.section-heading h2,
.section-heading.center h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.lede {
  max-width: 74ch;
  margin-top: 18px;
  font-size: 1.05rem;
}

.small-note {
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #f05a1a, #ff7a2f);
  box-shadow: 0 14px 28px rgba(240, 90, 26, 0.28);
}

.btn-ghost {
  color: #f05a1a;
  background: #fff;
  border-color: rgba(240, 90, 26, 0.24);
  box-shadow: none;
}

.btn-ghost img {
  width: 18px;
  height: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: clamp(58px, 6vw, 76px);
  flex: none;
}

.brand-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--navy);
  background: rgba(37, 99, 235, 0.08);
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: min(720px, 78vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown-about {
  left: auto;
  right: 0;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.dropdown-card:hover {
  background: rgba(13, 59, 102, 0.06);
  transform: translateY(-1px);
}

.dropdown-card img {
  width: 38px;
  height: 38px;
}

.dropdown-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
  color: var(--ink);
}

.dropdown-card em {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.burger span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(255, 246, 238, 0.96), rgba(245, 250, 255, 0.96));
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: block;
  z-index: 2;
  min-height: 640px;
  padding: 70px 0 96px;
}

.hero-copy {
  position: relative;
  width: min(60%, 780px);
  z-index: 2;
  padding-top: 60px;
}

.hero-title {
  display: grid;
  gap: 10px;
  width: fit-content;
  max-width: none;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  line-height: 0.95;
}

.chip {
  display: inline-flex;
  width: fit-content;
  padding: 0.05em 0.24em 0.08em;
  border-radius: 0.22em;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.chip-orange {
  background: linear-gradient(135deg, #f97316, #ff944d);
}

.chip-blue {
  background: linear-gradient(135deg, #2f6bff, #68a1ff);
}

.hero-text {
  max-width: 54ch;
  margin-top: 22px;
  padding: 10px 14px;
  border-left: 3px solid rgba(255, 255, 255, 0.75);
  background: linear-gradient(90deg, rgba(7, 20, 40, 0.36), rgba(7, 20, 40, 0));
  color: #fff;
  border-radius: 0 14px 14px 0;
  font-size: 1.04rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(7, 20, 40, 0.45);
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 640px;
  isolation: isolate;
  pointer-events: none;
  z-index: 1;
}

.hero-bg,
.hero-road,
.hero-cloud,
.hero-truck {
  position: absolute;
}

.hero-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-cloud {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero-road {
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 166px;
  object-fit: cover;
  opacity: 1;
  animation: none;
}

.hero-card {
  position: absolute;
  right: max(22px, 4vw);
  bottom: 112px;
  z-index: 2;
  width: min(360px, 34vw);
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 59, 102, 0.96), rgba(11, 43, 77, 0.94));
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.14;
}

.hero-card ul {
  margin: 16px 0 0;
  padding: 0 0 0 20px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-card li {
  line-height: 1.45;
}

.hero-truck {
  right: -2%;
  bottom: 0;
  width: min(46vw, 620px);
  filter: drop-shadow(0 26px 32px rgba(13, 59, 102, 0.18));
  animation: float 6s ease-in-out infinite;
}

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

.feature-card {
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: center;
  min-height: 200px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 16px 30px rgba(7, 20, 40, 0.05);
  text-align: center;
}

.feature-card img {
  width: 36px;
  height: 36px;
}

.feature-card h3 {
  font-size: 1.02rem;
  line-height: 1.35;
}

.center-actions {
  display: grid;
  justify-content: center;
  margin-top: 36px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  justify-items: center;
}

.logo-strip img {
  width: 100%;
  max-width: 128px;
  max-height: 46px;
  object-fit: contain;
  filter: none;
  opacity: 0.98;
}

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

.service-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: 0 14px 32px rgba(7, 20, 40, 0.04);
}

.service-card.alt {
  background: linear-gradient(180deg, #fff4ec, #fff);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px 26px 28px;
}

.service-copy h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.service-copy p {
  font-size: 0.98rem;
}

.underline-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.underline-link::after {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.financing-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 60%, #fdfefe 100%);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 34px rgba(7, 20, 40, 0.08);
  overflow: hidden;
}

.financing-image {
  width: 100%;
  object-fit: contain;
}

.financing-image.mobile {
  display: none;
}

.financing-copy {
  display: grid;
  gap: 12px;
  justify-items: start;
  color: var(--ink);
}

.financing-copy h2 {
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  color: var(--ink);
}

.service-areas {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: center;
}

.areas-vehicle {
  width: 100%;
  max-width: 420px;
  justify-self: center;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.15));
}

.areas-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.areas-lede {
  max-width: 68ch;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background-color 180ms ease;
}

.area-pill:hover,
.area-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.area-pill-cta {
  grid-column: 1 / -1;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--orange), #ff944d);
  border-color: transparent;
}

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

.special-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 265px;
  overflow: hidden;
  padding: 24px 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, #2f6fbc 0%, #2d74c5 48%, #327fd0 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 34px rgba(7, 20, 40, 0.1);
}

.special-text {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-left: auto;
  text-align: center;
  justify-items: center;
}

.special-text img {
  width: min(240px, 70%);
}

.special-text h3 {
  max-width: 300px;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
  text-transform: uppercase;
}

.grad-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.special-illustration {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(52%, 300px);
  z-index: 1;
}

.special-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66%;
  opacity: 0.55;
}

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

.blog-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.blog-card > img {
  width: 100%;
  height: 258px;
  object-fit: cover;
}

.blog-copy {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(37, 99, 235, 0.09);
  font-size: 0.85rem;
  font-weight: 800;
}

.blog-copy h3 {
  font-size: 1.22rem;
  line-height: 1.35;
}

.site-footer {
  padding: 78px 0 32px;
  color: var(--ink);
}

.site-footer.section-soft {
  background: linear-gradient(180deg, #eef2f6, #f6f8fb);
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand .brand-logo {
  width: clamp(64px, 6.5vw, 84px);
}

.to-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
}

.to-top img {
  width: 22px;
  height: 22px;
  filter: none;
}

.footer-columns,
.footer-links-grid {
  display: grid;
  gap: 20px;
}

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

.footer-card-grid {
  align-items: stretch;
}

.footer-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(7, 20, 40, 0.05);
}

.footer-links-grid {
  grid-template-columns: 1fr 1fr;
}

.footer-col {
  display: grid;
  gap: 12px;
}

.footer-col a,
.footer-col p {
  color: rgba(15, 23, 42, 0.74);
}

.footer-col h4 {
  margin-bottom: 4px;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.footer-col a {
  width: fit-content;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-grid a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.social-grid img {
  width: 18px;
  height: 18px;
  filter: none;
}

.google-badge {
  width: min(200px, 100%);
  margin-top: 10px;
}

.accent {
  color: #ffb67a;
  font-weight: 800;
}

.copyright {
  padding-top: 6px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.8);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

@media (max-width: 1180px) {
  .nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: rgba(245, 247, 251, 0.98);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    transition: max-height 260ms ease;
  }

  .mobile-menu-inner {
    display: grid;
    gap: 10px;
    padding: 16px 0 22px;
  }

  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-weight: 800;
  }

  #nav-toggle:checked ~ .page-shell .mobile-menu {
    max-height: 760px;
  }

  .hero-grid,
  .service-areas,
  .financing-card,
  .service-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-card {
    right: 20px;
    bottom: 96px;
    width: min(320px, 42vw);
  }

  .logo-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid,
  .blog-grid,
  .specials-grid,
  .service-grid,
  .footer-columns,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .financing-image.desktop {
    display: none;
  }

  .financing-image.mobile {
    display: block;
    width: min(100%, 280px);
    justify-self: center;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .hero-title {
    max-width: none;
  }

  .special-text {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .hero-grid {
    gap: 22px;
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-copy {
    margin-bottom: 228px;
  }

  .hero-title {
    gap: 6px;
    font-size: clamp(1.4rem, 6.1vw, 2rem);
    letter-spacing: -0.06em;
  }

  .hero-line {
    white-space: nowrap;
  }

  .hero-text {
    margin-top: 18px;
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 54px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-sub {
    font-size: 0.66rem;
  }

  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 88px;
    width: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-copy,
  .blog-copy,
  .special-card {
    padding: 20px;
  }

  .special-card {
    min-height: 240px;
    padding: 18px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .special-text {
    max-width: none;
    justify-items: center;
    text-align: center;
    gap: 10px;
    margin-left: 0;
  }

  .special-text img {
    width: min(180px, 84%);
  }

  .special-text h3 {
    max-width: 14ch;
    font-size: 1.22rem;
  }

  .special-illustration {
    display: none;
  }

  .special-bg {
    display: none;
  }

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

  .footer-card {
    padding: 18px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}
