:root {
  --ink: #07131f;
  --ink-2: #0c2031;
  --ink-3: #143149;
  --paper: #f4f7f9;
  --white: #ffffff;
  --muted: #607284;
  --line: #d6e0e6;
  --cyan: #12d8ef;
  --cyan-dark: #007e92;
  --red: #ef4055;
  --lime: #b7e34a;
  --amber: #f0b54d;
  --shadow: 0 22px 54px rgba(7, 19, 31, 0.13);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.08; }
h1 {
  max-width: 930px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.9rem);
  font-weight: 780;
  letter-spacing: -0.065em;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 760;
  letter-spacing: -0.045em;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 720;
  letter-spacing: -0.025em;
}
p { margin-bottom: 20px; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cyan);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 880px); margin-inline: auto; }
.section { padding: clamp(80px, 10vw, 150px) 0; }
.section-compact { padding: clamp(56px, 7vw, 96px) 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-ink-2 { color: var(--white); background: var(--ink-2); }
.section-white { background: var(--white); }
.eyebrow, .mono-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--cyan-dark);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
.section-dark .eyebrow, .section-ink-2 .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--cyan); }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.section-dark .lead, .section-ink-2 .lead { color: #afbdc8; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading p:last-child { margin-bottom: 4px; }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn::after { font-size: 1.1rem; content: "→"; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--cyan); }
.btn-primary:hover, .btn-primary:focus-visible { background: #75effb; }
.btn-secondary { color: var(--white); background: var(--red); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: #ff6477; }
.btn-outline { color: inherit; background: transparent; border-color: currentColor; }
.btn-outline:hover, .btn-outline:focus-visible { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  background: rgba(7, 19, 31, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); font-weight: 760; letter-spacing: -0.025em; }
.brand-mark { position: relative; display: grid; width: 36px; height: 36px; place-items: center; background: var(--cyan); }
.brand-mark::before, .brand-mark::after { position: absolute; background: var(--ink); content: ""; }
.brand-mark::before { width: 18px; height: 6px; }
.brand-mark::after { width: 6px; height: 18px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy small {
  color: #8fa4b5;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.btn) { position: relative; color: #c8d4dd; font-size: 0.89rem; font-weight: 650; }
.site-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: var(--white); }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; color: var(--white); background: transparent; border: 1px solid rgba(255, 255, 255, 0.25); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; }
.hero {
  position: relative;
  min-height: min(860px, calc(100vh - 76px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image: url("../images/ambulance-operations-hero.png");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}
.hero::before { position: absolute; inset: 0; z-index: -1; background: rgba(7, 19, 31, 0.72); content: ""; }
.hero-inner { padding: 94px 0 110px; }
.hero-copy { max-width: 880px; }
.hero .lead { max-width: 690px; color: #d2dde4; }
.hero h1 .accent, .page-hero h1 .accent { color: var(--cyan); }
.hero-proof { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border-top: 1px solid rgba(255, 255, 255, 0.25); border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
.hero-proof-item { min-height: 104px; padding: 24px 24px 22px 0; color: #d7e1e8; font-size: 0.86rem; font-weight: 650; }
.hero-proof-item + .hero-proof-item { padding-left: 24px; border-left: 1px solid rgba(255, 255, 255, 0.25); }
.hero-proof-item strong { display: block; margin-bottom: 5px; color: var(--white); font-size: 1rem; }
.page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero::after { position: absolute; top: 0; right: -5%; width: 36%; height: 100%; background-color: var(--ink-2); border-left: 1px solid rgba(18, 216, 239, 0.28); content: ""; transform: skewX(-8deg); }
.page-hero-inner { position: relative; z-index: 1; padding: clamp(92px, 12vw, 174px) 0 clamp(76px, 9vw, 126px); }
.page-hero h1 { max-width: 970px; font-size: clamp(3.1rem, 6vw, 6rem); }
.page-hero .lead { max-width: 720px; color: #c2cfd8; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: #8da4b6; font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--cyan); }
.status-note { display: inline-flex; max-width: 720px; align-items: flex-start; gap: 12px; margin-top: 28px; padding: 16px 18px; color: #d9e5ec; background: var(--ink-3); border-left: 3px solid var(--amber); font-size: 0.9rem; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card, .info-card, .partner-card { position: relative; min-height: 100%; padding: 30px; background: var(--white); border: 1px solid var(--line); transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.feature-card:hover { color: var(--white); background: var(--ink-2); border-color: var(--ink-2); transform: translateY(-5px); }
.feature-card .card-number, .info-card .card-number { display: block; margin-bottom: 62px; color: var(--cyan-dark); font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.78rem; font-weight: 700; }
.feature-card:hover .card-number { color: var(--cyan); }
.feature-card p, .info-card p, .partner-card p { color: var(--muted); }
.feature-card:hover p { color: #b9c8d2; }
.card-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; color: var(--cyan-dark); font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.feature-card:hover .card-link { color: var(--cyan); }
.flow-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flow-step { position: relative; padding: 30px 24px 34px; }
.flow-step + .flow-step { border-left: 1px solid var(--line); }
.flow-step strong { display: block; margin-bottom: 8px; }
.flow-step span { color: var(--muted); font-size: 0.9rem; }
.flow-step::before { display: block; width: 11px; height: 11px; margin-bottom: 26px; background: var(--cyan-dark); content: ""; }
.flow-step:nth-child(4)::before { background: var(--red); }
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); gap: clamp(46px, 8vw, 110px); align-items: center; }
.split.reverse { grid-template-columns: minmax(420px, 1.1fr) minmax(0, 0.9fr); }
.check-list, .plain-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding: 14px 0 14px 34px; border-top: 1px solid var(--line); }
.check-list li::before { position: absolute; top: 15px; left: 3px; color: var(--cyan-dark); font-weight: 800; content: "✓"; }
.section-dark .check-list li, .section-ink-2 .check-list li, .section-dark .plain-list li, .section-ink-2 .plain-list li { border-color: rgba(255, 255, 255, 0.14); }
.section-dark .check-list li::before, .section-ink-2 .check-list li::before { color: var(--cyan); }
.ops-panel { overflow: hidden; color: var(--white); background: #081723; border: 1px solid #264157; box-shadow: var(--shadow); }
.ops-panel-bar { display: flex; align-items: center; justify-content: space-between; padding: 13px 17px; background: #10283a; border-bottom: 1px solid #264157; font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.69rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ops-live { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); }
.ops-live::before { width: 7px; height: 7px; background: currentColor; content: ""; box-shadow: 0 0 15px currentColor; }
.ops-panel-body { display: grid; grid-template-columns: 0.82fr 1.18fr; min-height: 390px; }
.ops-list { border-right: 1px solid #264157; }
.ops-unit { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 18px; border-bottom: 1px solid #1f384b; }
.ops-unit.active { background: #12334a; border-left: 3px solid var(--cyan); }
.unit-dot { width: 10px; height: 10px; background: var(--lime); }
.unit-dot.red { background: var(--red); }
.unit-dot.amber { background: var(--amber); }
.ops-unit strong, .ops-unit small { display: block; }
.ops-unit strong { font-size: 0.82rem; }
.ops-unit small, .ops-unit em { color: #8ea6b7; font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.61rem; font-style: normal; }
.ops-map { position: relative; overflow: hidden; background-color: #0b2232; }
.map-road { position: absolute; width: 150%; height: 6px; background: #345269; transform: rotate(-24deg); }
.map-road.r1 { top: 45%; left: -25%; }
.map-road.r2 { top: 68%; left: -15%; transform: rotate(18deg); }
.map-point { position: absolute; display: grid; width: 28px; height: 28px; place-items: center; color: var(--ink); background: var(--cyan); border: 4px solid #d8fbff; font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.55rem; font-weight: 700; }
.map-point.p1 { top: 27%; left: 25%; }
.map-point.p2 { top: 58%; left: 62%; background: var(--red); border-color: #ffd8de; }
.map-point.p3 { right: 14%; bottom: 16%; background: var(--lime); border-color: #efffca; }
.map-label { position: absolute; right: 15px; bottom: 15px; padding: 9px 11px; color: #a9bfce; background: rgba(7, 19, 31, 0.9); font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.61rem; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255, 255, 255, 0.16); }
.metric { min-height: 176px; padding: 30px; }
.metric + .metric { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.metric strong { display: block; margin-bottom: 22px; color: var(--cyan); font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }
.metric span { color: #d6e1e8; font-size: 0.94rem; }
.deployment-band { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); color: var(--white); background: var(--ink-2); }
.deployment-intro, .deployment-item { min-height: 230px; padding: 34px; }
.deployment-intro { background: var(--red); }
.deployment-item + .deployment-item, .deployment-intro + .deployment-item { border-left: 1px solid rgba(255, 255, 255, 0.15); }
.deployment-item p { color: #aebfcb; }
.turnkey-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 20px; }
.turnkey-lead { padding: 46px; color: var(--white); background: var(--red); }
.turnkey-steps { display: grid; grid-template-columns: repeat(2, 1fr); background: var(--white); border: 1px solid var(--line); }
.turnkey-step { padding: 34px; }
.turnkey-step:nth-child(odd) { border-right: 1px solid var(--line); }
.turnkey-step:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
.turnkey-step b { display: block; margin-bottom: 26px; color: var(--cyan-dark); font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.78rem; }
.feature-intro { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr); gap: 70px; align-items: start; }
.feature-intro-copy { position: sticky; top: 116px; }
.capability-list { border-top: 1px solid var(--line); }
.capability { display: grid; grid-template-columns: 74px 1fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.capability b { color: var(--cyan-dark); font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.76rem; }
.capability p:last-child { margin-bottom: 0; color: var(--muted); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.audience-item { min-height: 210px; padding: 30px; color: var(--white); background: var(--ink-2); border: 1px solid #274258; }
.audience-item + .audience-item { border-left: 0; }
.audience-item p { color: #aebfca; }
.partner-card { border-top: 4px solid var(--cyan-dark); }
.partner-card:nth-child(2) { border-top-color: var(--red); }
.partner-card:nth-child(3) { border-top-color: var(--amber); }
.partner-card:nth-child(4) { border-top-color: var(--lime); }
.partner-card .mono-label { margin-bottom: 38px; }
.partner-economics { width: 100%; margin-top: 38px; border-collapse: collapse; background: var(--white); }
.partner-economics th, .partner-economics td { padding: 18px; text-align: left; border: 1px solid var(--line); vertical-align: top; }
.partner-economics th { color: var(--white); background: var(--ink-2); font-size: 0.8rem; }
.partner-economics td { font-size: 0.9rem; }
.integration-stack { display: grid; gap: 14px; }
.integration-row { display: grid; grid-template-columns: 190px 1fr; gap: 24px; align-items: start; padding: 24px; background: var(--white); border: 1px solid var(--line); }
.integration-row strong { color: var(--cyan-dark); }
.integration-row p { margin-bottom: 0; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 54px 25px 0; font-weight: 720; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 22px; right: 4px; color: var(--cyan-dark); font-size: 1.4rem; content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 800px; padding-bottom: 24px; color: var(--muted); }
.cta-panel { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: end; padding: clamp(38px, 6vw, 78px); color: var(--white); background: var(--ink-2); border-top: 5px solid var(--cyan); }
.cta-panel h2 { max-width: 760px; margin-bottom: 16px; }
.cta-panel p { max-width: 650px; margin-bottom: 0; color: #b6c5cf; }
.cta-panel .button-row { justify-content: flex-end; }
.site-footer { color: var(--white); background: #040b11; }
.footer-main { display: grid; grid-template-columns: 1.3fr repeat(3, 0.7fr); gap: 50px; padding: 72px 0 58px; }
.footer-brand p { max-width: 420px; margin-top: 24px; color: #899ca9; }
.footer-column h4 { margin-bottom: 21px; color: #7f95a5; font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; }
.footer-column a { display: block; margin: 10px 0; color: #c5d1d9; font-size: 0.87rem; }
.footer-column a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0 30px; color: #718794; border-top: 1px solid #1a2b37; font-family: "IBM Plex Mono", Consolas, monospace; font-size: 0.66rem; }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease, transform 500ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .site-nav { gap: 17px; }
  .site-nav .btn { display: none; }
  .grid-4, .metric-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3), .audience-item:nth-child(3) { border-left: 0; }
  .metric:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.16); }
  .deployment-band { grid-template-columns: repeat(2, 1fr); }
  .deployment-item:nth-child(3) { border-left: 0; }
  .deployment-item:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.15); }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 76px 0 auto; display: none; min-height: calc(100vh - 76px); align-items: stretch; flex-direction: column; gap: 0; padding: 30px 20px; background: var(--ink); }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.btn) { padding: 20px 0; font-size: 1.15rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .section-heading, .split, .split.reverse, .feature-intro, .turnkey-grid, .cta-panel { grid-template-columns: 1fr; }
  .section-heading { gap: 20px; }
  .feature-intro-copy { position: static; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-step + .flow-step { border-left: 0; }
  .flow-step:nth-child(even) { border-left: 1px solid var(--line); }
  .flow-step:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .ops-panel-body { grid-template-columns: 1fr; }
  .ops-list { border-right: 0; border-bottom: 1px solid #264157; }
  .ops-map { min-height: 280px; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .hero-proof-item:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.25); border-left: 0; }
  .hero-proof-item:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.25); }
  .footer-main { grid-template-columns: 1.4fr 1fr; }
  .cta-panel .button-row { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  h1 { font-size: clamp(2.8rem, 16vw, 4.3rem); }
  h2 { font-size: 2.4rem; }
  .brand-copy small { display: none; }
  .hero { min-height: auto; background-position: 62% center; }
  .hero-inner { padding: 72px 0 80px; }
  .hero-proof, .grid-2, .grid-3, .grid-4, .metric-grid, .audience-grid, .deployment-band, .turnkey-steps { grid-template-columns: 1fr; }
  .hero-proof-item, .hero-proof-item + .hero-proof-item, .hero-proof-item:nth-child(3) { padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.25); border-left: 0; }
  .hero-proof-item:first-child { border-top: 0; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-step:nth-child(even), .flow-step + .flow-step { border-top: 1px solid var(--line); border-left: 0; }
  .feature-card, .info-card, .partner-card, .turnkey-lead, .turnkey-step, .deployment-intro, .deployment-item { padding: 26px; }
  .turnkey-step:nth-child(odd), .turnkey-step:nth-child(-n + 2), .deployment-item + .deployment-item, .deployment-intro + .deployment-item, .deployment-item:nth-child(3) { border-right: 0; border-bottom: 0; border-left: 0; }
  .turnkey-step + .turnkey-step, .deployment-item, .deployment-item:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .metric + .metric, .metric:nth-child(3), .audience-item + .audience-item, .audience-item:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.16); border-left: 0; }
  .integration-row { grid-template-columns: 1fr; gap: 6px; }
  .partner-economics { display: block; overflow-x: auto; }
  .button-row .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
