:root {
  color-scheme: light;
  --bg: #f6f7f8;
  --surface: #ffffff;
  --surface-2: #eceff3;
  --ink: #111111;
  --muted: #626872;
  --line: #dde2e8;
  --red: #f05a3f;
  --blue: #2457ff;
  --green: #14a57e;
  --yellow: #f0b429;
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.11);
  --radius: 8px;
  --header-height: 76px;
  --max: 1180px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101214;
  --surface: #181b1f;
  --surface-2: #23272d;
  --ink: #f8fafc;
  --muted: #aeb6c2;
  --line: #303640;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  background: var(--yellow);
  color: #111111;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(18px, calc((100% - var(--max)) / 2));
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-elevated {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.brand-copy {
  display: grid;
  gap: 1px;
  font-weight: 850;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.desktop-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 780;
  font-size: 0.88rem;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
  background: var(--surface-2);
  outline: 0;
}

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

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  padding: 0 14px;
  font-weight: 850;
  font-size: 0.86rem;
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--ink) 42%, var(--line));
  outline: 0;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  background: var(--ink);
  color: var(--bg);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
  transition: opacity 140ms ease, transform 140ms ease;
}

.icon-button:hover::after,
.icon-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.menu-button,
.mobile-nav {
  display: none;
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 24px);
  padding-top: calc(var(--header-height) + 58px);
  padding-bottom: 82px;
}

#hero-canvas {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  width: 100vw;
  height: 100%;
  z-index: -2;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--red) 13%, transparent), transparent 32%),
    linear-gradient(245deg, color-mix(in srgb, var(--blue) 11%, transparent), transparent 36%),
    linear-gradient(0deg, color-mix(in srgb, var(--green) 8%, transparent), transparent 28%),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto calc((100% - 100vw) / 2) 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 10ch;
  font-size: 4.65rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
  font-size: 1.14rem;
  line-height: 1.68;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  outline: 0;
}

.button.primary {
  background: var(--ink);
  color: var(--bg);
}

.button.secondary {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.button.ghost {
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--ink) 16%, var(--line));
  border-radius: 6px;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--muted);
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 820;
}

.hero-offer {
  border: 1px solid color-mix(in srgb, var(--ink) 16%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow);
  padding: 24px;
  backdrop-filter: blur(16px);
}

.offer-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--green) 15%, transparent);
}

.offer-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 850;
}

.offer-price {
  display: grid;
  gap: 2px;
  margin-bottom: 18px;
}

.offer-price span,
.price span,
.quote-box span,
.quote-box small {
  color: var(--muted);
  font-weight: 820;
}

.offer-price strong {
  font-size: 3rem;
  line-height: 1;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
  font-weight: 680;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 22px -24px -24px;
  background: var(--line);
}

.mini-metrics article {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 14px 10px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.mini-metrics strong {
  font-size: 1.7rem;
  line-height: 1;
}

.mini-metrics span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.logo-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--muted);
  font-weight: 850;
  text-align: center;
  padding: 0 10px;
}

.services-section,
.included-section,
.pricing-section,
.estimator-section,
.showcase-section,
.process-section,
.faq-section,
.contact-section {
  padding: 96px 0;
}

.section-heading {
  display: block;
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 770px;
}

.section-heading h2,
.estimator-grid h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.estimator-grid p,
.contact-copy p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 1.02rem;
}

.service-grid,
.included-grid,
.price-grid,
.case-grid,
.timeline,
.addons-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.service-card,
.included-card,
.price-card,
.case-card,
.timeline-item,
.estimator-card,
.contact-card,
.addon-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card {
  position: relative;
  min-height: 248px;
  padding: 22px;
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--accent, var(--ink));
}

.service-card:hover,
.price-card:hover,
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.accent-red {
  --accent: var(--red);
}

.accent-blue {
  --accent: var(--blue);
}

.accent-green {
  --accent: var(--green);
}

.accent-yellow {
  --accent: var(--yellow);
}

.proof-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid color-mix(in srgb, var(--accent) 46%, var(--line));
  border-radius: var(--radius);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
}

.proof-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.included-card h3,
.price-card h3,
.case-card h3,
.timeline-item h3,
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.service-card p,
.included-card p,
.price-card p,
.case-card p,
.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.included-card,
.timeline-item {
  min-height: 222px;
  padding: 22px;
}

.included-card > span,
.timeline-item > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  font-weight: 900;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 6px;
  background: var(--surface-2);
  color: color-mix(in srgb, var(--ink) 76%, var(--muted));
  font-size: 0.76rem;
  font-weight: 850;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  min-height: 530px;
  padding: 24px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.price-card.is-featured {
  border-color: color-mix(in srgb, var(--blue) 55%, var(--line));
  box-shadow: 0 22px 60px color-mix(in srgb, var(--blue) 14%, transparent);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 6px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.price-head {
  display: grid;
  gap: 12px;
  padding-right: 78px;
}

.price-head p {
  min-height: 72px;
}

.price {
  display: grid;
  gap: 3px;
}

.price strong,
.quote-box strong {
  font-size: 2.35rem;
  line-height: 1.05;
}

.addons-grid {
  margin-top: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.addon-card {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
}

.addon-card strong {
  font-size: 1.24rem;
}

.addon-card span {
  color: var(--muted);
  font-weight: 760;
}

.estimator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.55fr);
  gap: 42px;
  align-items: center;
  padding: 34px 0;
  border-block: 1px solid var(--line);
}

.estimator-grid p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 650px;
}

.estimator-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.config-row,
.toggle-line,
.quote-box {
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-2) 48%, var(--surface));
}

.config-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-weight: 850;
}

.config-row strong {
  color: var(--red);
  font-size: 1.4rem;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}

.toggle-line {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  color: var(--muted);
  font-weight: 800;
}

.toggle-line input {
  width: 22px;
  height: 22px;
  accent-color: var(--green);
}

.quote-box {
  display: grid;
  gap: 2px;
  padding: 16px;
}

.case-card {
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.case-visual {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  color: #ffffff;
  background: #313743;
}

.case-visual span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.case-visual strong {
  max-width: 10ch;
  font-size: 2.2rem;
  line-height: 1.02;
}

.artisan-visual {
  background:
    linear-gradient(135deg, rgba(240, 90, 63, 0.92), rgba(17, 17, 17, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 48px),
    #313743;
}

.beauty-visual {
  background:
    linear-gradient(135deg, rgba(20, 165, 126, 0.9), rgba(36, 87, 255, 0.32)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 44px),
    #263a35;
}

.consultant-visual {
  background:
    linear-gradient(135deg, rgba(36, 87, 255, 0.92), rgba(240, 180, 41, 0.42)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 36px),
    #24314c;
}

.case-body {
  padding: 20px;
}

.case-body h3 {
  margin-top: 16px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0 18px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-weight: 880;
  cursor: pointer;
}

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

.faq-list summary::marker {
  content: "";
}

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  color: var(--muted);
  padding-bottom: 18px;
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-copy {
  max-width: 680px;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 18px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.contact-line {
  display: grid;
  gap: 2px;
  min-height: 62px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
}

.contact-line strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-line span {
  color: var(--muted);
  font-weight: 760;
}

.copy-email {
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  font-weight: 850;
}

[data-copy-status] {
  min-height: 20px;
  color: var(--green);
  font-weight: 820;
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  min-height: 86px;
  margin: 0 auto;
  padding: 20px 0 34px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 760;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .service-grid,
  .included-grid,
  .addons-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .price-head p {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    width: min(280px, calc(100vw - 36px));
    display: grid;
    gap: 6px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 850;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: var(--surface-2);
    color: var(--ink);
    outline: 0;
  }

  .hero-grid,
  .section-heading,
  .estimator-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.8rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-offer {
    max-width: 620px;
  }

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

@media (max-width: 680px) {
  .section-shell,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 66px;
  }

  h1 {
    max-width: 11ch;
    font-size: 2.85rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .offer-price strong {
    font-size: 2.4rem;
  }

  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .logo-strip,
  .service-grid,
  .included-grid,
  .addons-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .services-section,
  .included-section,
  .pricing-section,
  .estimator-section,
  .showcase-section,
  .process-section,
  .faq-section,
  .contact-section {
    padding: 70px 0;
  }

  .section-heading h2,
  .estimator-grid h2,
  .contact-copy h2 {
    font-size: 2.18rem;
  }

  .case-visual {
    min-height: 210px;
  }

  .case-visual strong {
    font-size: 1.8rem;
  }

  .price-head {
    padding-right: 0;
  }

  .badge {
    position: static;
    width: fit-content;
  }

  .contact-panel {
    padding: 42px 0;
  }

  .site-footer {
    display: grid;
  }
}

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