:root{
  --primary: #10233f;
  --accent: #2c6df2;
  --accent-soft: #dfe9ff;
  --ink: #142033;
  --muted: #637083;
  --surface: #f5f7fb;
  --paper: #ffffff;
  --warm: #f0ab35;
  --line: #dce2eb;
  --font-sans: Pretendard, SUIT, Apple SD Gothic Neo, Noto Sans KR, Segoe UI, sans-serif;
  --radius-card: 6px;
  --radius-control: 4px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
summary {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 3px;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 226, 235, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 5px 12px 5px 5px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transform: rotate(-2deg);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  padding-block: 25px;
  color: #3d495b;
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--accent);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.18);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
}

.mobile-toggle svg {
  width: 22px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(16, 35, 63, 0.98), rgba(18, 47, 88, 0.94)),
    var(--primary);
  color: #fff;
}

.hero::before {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -260px;
  right: -180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.02);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 630px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding-block: 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #aac5ff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--warm);
  content: "";
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.55rem, 5.2vw, 4.8rem);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 1.08;
  white-space: pre-line;
}

.hero-summary {
  max-width: 610px;
  margin: 28px 0 0;
  color: #d6e0ee;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  padding: 13px 20px;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.button-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--primary);
}

.service-board {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.board-top strong {
  font-size: 1.04rem;
}

.status-pill {
  padding: 5px 9px;
  border-radius: 99px;
  background: #d7f6e6;
  color: #11623a;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.route-line {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding-top: 24px;
}

.route-line:not(:last-child)::before {
  position: absolute;
  top: 40px;
  bottom: -23px;
  left: 15px;
  width: 2px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.route-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #1c3a65;
  color: #aec8fb;
  font-size: 0.68rem;
  font-weight: 900;
}

.route-line.is-current .route-dot {
  background: var(--warm);
  color: var(--primary);
}

.route-copy strong {
  display: block;
  font-size: 0.96rem;
}

.route-copy span {
  display: block;
  margin-top: 2px;
  color: #aebed2;
  font-size: 0.82rem;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 26px 30px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.trust-item strong {
  display: block;
  margin-top: 3px;
  color: var(--primary);
  font-size: 1.02rem;
}

.section {
  padding-block: 104px;
}

.section-muted {
  background: var(--surface);
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 46px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.section-dark .section-kicker {
  color: #aac5ff;
}

.section-heading h2,
.page-hero h1,
.policy-header h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 880;
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.section-dark .section-heading h2 {
  color: #fff;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-heading > p {
  color: #bdcadb;
}

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

.price-card {
  display: flex;
  min-height: 375px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 35, 63, 0.05);
}

.price-card:nth-child(2) {
  border-top-color: var(--warm);
}

.price-card:nth-child(3) {
  border-top-color: var(--primary);
}

.card-badge {
  align-self: flex-start;
  padding: 5px 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.price-card h3 {
  margin: 22px 0 0;
  color: var(--primary);
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.price {
  margin: 12px 0 0;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
}

.price-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-card .card-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.fee-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--warm);
  background: #fff9ed;
  color: #685331;
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-card {
  min-height: 230px;
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.process-card:last-child {
  border-right: 0;
}

.process-number {
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-card h3 {
  margin: 42px 0 0;
  font-size: 1.05rem;
}

.process-card p {
  margin: 10px 0 0;
  color: #b8c6d9;
  font-size: 0.88rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.scope-card {
  position: sticky;
  top: 112px;
  padding: 34px;
  border-radius: var(--radius-card);
  background: var(--primary);
  color: #fff;
}

.scope-card h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.scope-fact {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.scope-fact span {
  display: block;
  color: #a9bad1;
  font-size: 0.75rem;
}

.scope-fact strong {
  display: block;
  margin-top: 3px;
  font-size: 1.08rem;
}

.limit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: limit;
}

.limit-list li {
  position: relative;
  padding: 23px 0 23px 54px;
  border-bottom: 1px solid var(--line);
  color: #455266;
  counter-increment: limit;
}

.limit-list li::before {
  position: absolute;
  top: 22px;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--accent);
  content: counter(limit, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 900;
}

.cta-band {
  padding-block: 78px;
  background: var(--accent);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-grid h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.cta-grid p {
  margin: 10px 0 0;
  color: #dce7ff;
}

.cta-grid .cta-actions {
  margin-top: 0;
}

.page-hero {
  padding-block: 84px 76px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(223, 233, 255, 0.7), transparent 56%),
    #f8faff;
}

.page-hero .eyebrow {
  color: var(--accent);
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.detail-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
}

.detail-card h2,
.detail-card h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.28rem;
  letter-spacing: -0.035em;
}

.detail-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.detail-card .price {
  margin-top: 20px;
}

.service-copy {
  margin-top: 18px;
  color: #445066;
}

.service-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-checks li {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: #445066;
}

.policy-wrap {
  padding-block: 74px 110px;
}

.policy-header {
  padding-bottom: 32px;
  border-bottom: 2px solid var(--primary);
}

.policy-header .updated {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.policy-intro {
  margin: 30px 0 0;
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: #3f4c60;
}

.policy-section {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.policy-section p {
  margin: 10px 0 0;
  color: #465367;
}

.policy-link {
  display: inline-flex;
  margin-top: 17px;
  color: var(--accent);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 20px;
}

.policy-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.policy-table th,
.policy-table td {
  padding: 15px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--primary);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
}

.contact-card.accent {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.contact-card h2 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.contact-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-card.accent p {
  color: #c2cede;
}

.contact-steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-steps strong {
  display: block;
  color: #fff;
}

.contact-steps span {
  color: #b7c5d8;
  font-size: 0.9rem;
}

.disclosure {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
}

.disclosure summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  color: var(--primary);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.disclosure summary::-webkit-details-marker {
  display: none;
}

.disclosure summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--accent);
  content: "+";
  font-size: 1.5rem;
  transform: translateY(-52%);
}

.disclosure[open] summary::after {
  content: "−";
}

.disclosure-body {
  padding: 0 20px 22px;
  border-top: 1px solid var(--line);
}

.business-list {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  margin: 0;
  padding-top: 16px;
}

.business-list dt,
.business-list dd {
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.88rem;
}

.business-list dt {
  color: var(--muted);
}

.business-list dd {
  color: #344155;
  font-weight: 650;
}

.business-list a {
  color: var(--accent);
}

.support-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.ftc-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
}

.site-footer {
  padding-block: 52px 32px;
  background: #0c192d;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
  max-width: 390px;
  margin: 14px 0 0;
  color: #96a7bf;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  align-content: start;
}

.footer-links a {
  color: #d4ddeb;
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer .disclosure {
  grid-column: 1 / -1;
  margin-top: 28px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer .disclosure summary {
  color: #fff;
}

.site-footer .disclosure-body {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.site-footer .business-list dt,
.site-footer .business-list dd {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-footer .business-list dt {
  color: #8295af;
}

.site-footer .business-list dd {
  color: #d9e2ef;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  color: #778ba8;
  font-size: 0.76rem;
}

.error-page {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.error-page strong {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.error-page h1 {
  margin: 14px 0 0;
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.06em;
}

.error-page p {
  color: var(--muted);
}

@media (max-width: 1000px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    z-index: 90;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(16, 35, 63, 0.14);
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease;
  }

  .mobile-nav[data-open="true"] {
    max-height: calc(100vh - 76px);
    border-top: 1px solid var(--line);
    opacity: 1;
  }

  .mobile-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--primary);
    font-weight: 780;
    text-decoration: none;
  }

  .mobile-nav a[aria-current="page"] {
    background: var(--accent-soft);
    color: var(--accent);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 74px;
  }

  .service-board {
    max-width: 680px;
  }

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

  .price-card:last-child {
    grid-column: 1 / -1;
    min-height: 290px;
  }

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

  .process-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .container,
  .narrow {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .mobile-nav {
    top: 68px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-grid {
    padding-block: 60px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .service-board {
    padding: 22px;
  }

  .trust-grid,
  .price-grid,
  .section-heading,
  .split-panel,
  .cta-grid,
  .detail-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:last-child {
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .price-card,
  .price-card:last-child {
    grid-column: auto;
    min-height: 330px;
  }

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

  .process-card,
  .process-card:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 24px 8px;
    border-right: 0;
  }

  .process-card h3 {
    margin-top: 14px;
  }

  .scope-card {
    position: static;
  }

  .cta-grid {
    gap: 24px;
  }

  .cta-grid .cta-actions {
    justify-content: flex-start;
  }

  .page-hero {
    padding-block: 64px 56px;
  }

  .service-checks,
  .business-list {
    grid-template-columns: 1fr;
  }

  .business-list dt {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .business-list dd {
    padding-top: 2px;
  }

  .footer-top {
    gap: 38px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
