:root {
  --bg: #f4f7fb;
  --panel: #ffffff;
  --section: #eef4fb;
  --text: #071128;
  --muted: #596477;
  --soft: #7b8495;
  --line: #dbe4f0;
  --blue: #0b55d9;
  --blue-dark: #073a9b;
  --blue-soft: #e9f1ff;
  --shadow: 0 24px 72px rgba(6, 26, 65, 0.12);
  --container: 1440px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

section {
  scroll-margin-top: 88px;
}

:focus-visible {
  outline: 3px solid rgba(11, 85, 217, 0.32);
  outline-offset: 3px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 96px;
  padding: 0 56px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 228, 240, 0.78);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: transparent;
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1;
}

.brand-text strong {
  font-size: 32px;
  font-weight: 900;
}

.brand-text small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: #151d30;
  font-size: 16px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #101a31;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg,
.floating-call svg,
.hero-benefits svg,
.stats-strip svg {
  fill: currentColor;
}

.phone-link svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 36px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(180deg, #1264ef 0%, #0649c8 100%);
  border: 1px solid rgba(8, 74, 198, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(6, 69, 192, 0.24);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(6, 69, 192, 0.3);
}

.button-small {
  min-height: 56px;
  padding: 0 32px;
}

.button-ghost {
  color: #101a31;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(11, 85, 217, 0.6);
  box-shadow: none;
}

.button-ghost:hover {
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 82px 0 104px;
  background: #fff;
}

.hero-image,
.hero-softener {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-softener {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.91) 34%, rgba(255, 255, 255, 0.26) 56%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(244, 247, 251, 0.74) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 650px);
}

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

.kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--blue);
}

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

h1,
h2,
.hero-subtitle {
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 12px;
  color: #06112b;
  font-size: clamp(56px, 5vw, 78px);
  line-height: 1.12;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.16;
  text-wrap: balance;
}

h2 {
  max-width: 880px;
  margin-bottom: 18px;
  color: #071128;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.16;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  color: #071128;
  font-size: 24px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: #343d50;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 680px;
}

.hero-benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hero-benefits svg {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: var(--blue);
}

.hero-benefits span {
  color: #172037;
  font-weight: 700;
  line-height: 1.35;
}

.stats-strip {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 228, 240, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stats-strip article {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 20px 34px;
  border-right: 1px solid var(--line);
}

.stats-strip article:last-child {
  border-right: 0;
}

.stats-strip svg {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  color: var(--blue);
}

.stats-strip strong {
  color: #06112b;
  font-size: 28px;
  line-height: 1;
}

.stats-strip span {
  color: #34405a;
  font-size: 16px;
  line-height: 1.35;
}

.section {
  padding: 104px 0;
}

.services-section,
.video-section,
.contacts-section {
  background: var(--section);
}

.section-head {
  max-width: 900px;
  margin-bottom: 48px;
}

.section-head > p:last-child,
.about-copy > p,
.booking-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.service-card,
.case-card,
.review-card,
.lead-card,
.about-panel,
.vk-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(11, 39, 87, 0.08);
}

.service-card {
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(11, 85, 217, 0.35);
  box-shadow: 0 30px 76px rgba(11, 39, 87, 0.16);
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.service-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.service-body {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.service-number {
  width: max-content;
  padding: 6px 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: var(--blue-soft);
  border-radius: 5px;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.service-card:hover .service-number {
  color: #fff;
  background: var(--blue);
  transform: translateX(4px);
}

.service-body p,
.case-copy p,
.review-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 18px;
  color: var(--blue);
  font-weight: 900;
  border: 1px solid rgba(11, 85, 217, 0.36);
  border-radius: var(--radius);
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.service-card:hover .service-body a {
  color: #fff;
  background: var(--blue);
  transform: translateX(4px);
}

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 64px;
  align-items: center;
}

.about-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.about-list span {
  position: relative;
  padding-left: 28px;
  color: #172037;
  font-weight: 700;
}

.about-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
}

.about-panel {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px;
  text-align: center;
}

.about-panel img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}

.about-panel strong {
  color: #071128;
  font-size: 34px;
  font-weight: 900;
}

.about-panel span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.about-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
  border-radius: var(--radius);
}

.works-section {
  background: var(--bg);
}

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

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

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(11, 39, 87, 0.16);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.compare figure {
  position: relative;
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: #e8edf5;
}

.compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.case-card:hover .compare img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.compare figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--blue);
  border-radius: 5px;
  transition: transform 220ms ease, background 220ms ease;
}

.case-card:hover .compare figcaption {
  transform: translateY(-3px);
  background: #0649c8;
}

.case-copy {
  padding: 28px;
}

.case-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 325px));
  justify-content: center;
  gap: 22px;
}

.vk-card {
  width: 100%;
  max-width: 325px;
  min-height: 646px;
  overflow: hidden;
  padding: 0;
  background: #000;
}

.vk-card iframe {
  display: block;
  width: 100%;
  height: 646px;
  border: 0;
}

.reviews-section {
  background: #fff;
}

.reviews-head {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}

.review-controls {
  display: flex;
  gap: 10px;
}

.review-controls button {
  width: 50px;
  height: 50px;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.review-controls button:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(6, 69, 192, 0.24);
}

.review-window {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 220ms ease;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 300px;
  padding: 30px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(11, 85, 217, 0.36);
  box-shadow: 0 26px 64px rgba(11, 39, 87, 0.14);
}

.stars {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  margin-top: 24px;
  color: #071128;
}

.review-card span {
  margin-top: 8px;
  color: var(--soft);
  font-size: 14px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b8c5d8;
  cursor: pointer;
}

.review-dots button.is-active {
  width: 34px;
  background: var(--blue);
  border-radius: 999px;
}

.booking-section {
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
}

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

.booking-copy {
  max-width: 820px;
}

.booking-photo {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.booking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-card {
  display: grid;
  gap: 17px;
  padding: 32px;
}

.form-title {
  margin-bottom: 4px;
  color: #071128;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}

.lead-card label {
  display: grid;
  gap: 8px;
}

.lead-card label span {
  color: #202b44;
  font-size: 14px;
  font-weight: 800;
}

.lead-card input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: #071128;
  background: #f7faff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}

.lead-card input:focus {
  border-color: rgba(11, 85, 217, 0.48);
  box-shadow: 0 0 0 4px rgba(11, 85, 217, 0.1);
}

.lead-card .consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.lead-card .consent-line input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  padding: 0;
  flex: 0 0 16px;
}

.lead-card .consent-line span {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
}

.lead-card .consent-line a {
  color: var(--blue);
  text-decoration: underline;
}

.lead-card small {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.5;
}

.lead-result {
  margin: 0;
  padding: 12px 14px;
  color: #0f5132;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  background: #dff7ea;
  border: 1px solid #a7e4c2;
  border-radius: var(--radius);
}

.lead-result.is-error {
  color: #8a1f14;
  background: #fde8e4;
  border-color: #f2b8ae;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 52px;
  align-items: stretch;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-lines a,
.contact-lines span {
  display: block;
  color: #071128;
  font-size: 18px;
  font-weight: 900;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}

.contact-lines a::before {
  content: "";
  display: none;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background: currentColor;
}

.contact-avito::before {
  display: block;
  background:
    radial-gradient(circle at 7px 7px, currentColor 0 5px, transparent 5px),
    radial-gradient(circle at 15px 7px, currentColor 0 4px, transparent 4px),
    radial-gradient(circle at 7px 15px, currentColor 0 4px, transparent 4px),
    radial-gradient(circle at 15px 15px, currentColor 0 5px, transparent 5px);
}

.map-wrap {
  height: 400px;
  min-height: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.floating-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(6, 69, 192, 0.34);
}

.floating-call svg {
  width: 25px;
  height: 25px;
}

.footer {
  padding: 34px 0;
  color: #d6def0;
  background: #071128;
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: #fff;
  font-weight: 800;
}

.footer-legal {
  margin-top: 12px;
  max-width: 760px;
  color: #aeb9cd;
  font-size: 12px;
  line-height: 1.55;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
}

.footer-legal span {
  margin: 0 6px;
}

.footer-legal p {
  margin: 8px 0 0;
}

.footer-social-note {
  margin: 0;
  padding-top: 16px;
  color: #8794aa;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  border-top: 1px solid rgba(219, 228, 240, 0.14);
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035) translateX(-10px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.service-card.reveal,
.case-card.reveal,
.review-card.reveal {
  transition:
    opacity 520ms ease,
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

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

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto auto;
    min-height: 86px;
    padding: 0 28px;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  body.nav-open .site-nav {
    position: fixed;
    inset: 86px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 28px 26px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding-bottom: 176px;
  }

  .stats-strip {
    bottom: 28px;
  }

  .stats-strip article {
    padding: 18px;
  }

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

  .about-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-panel,
  .lead-card {
    max-width: 520px;
  }

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-text strong {
    font-size: 26px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .hero {
    padding: 46px 0 24px;
  }

  .hero-image {
    position: relative;
    order: 2;
    height: 360px;
    margin-top: 28px;
    object-position: 62% center;
  }

  .hero-softener {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.7));
  }

  .hero-grid {
    display: block;
  }

  h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lead,
  .section-head > p:last-child,
  .about-copy > p,
  .booking-copy > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .hero-benefits,
  .stats-strip,
  .services-grid,
  .case-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 28px;
  }

  .stats-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .service-card img {
    height: 250px;
  }

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

  .compare figure {
    height: 260px;
  }

  .reviews-head {
    display: grid;
  }

  .review-card {
    flex-basis: 88%;
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .topbar {
    min-height: 76px;
    padding: 0 16px;
  }

  body.nav-open .site-nav {
    inset: 76px 0 auto;
    padding-inline: 16px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-text strong {
    font-size: 23px;
  }

  .brand-text small {
    max-width: 145px;
    line-height: 1.25;
  }

  h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    padding: 0 22px;
  }

  .hero-image {
    height: 300px;
  }

  .stats-strip article {
    grid-template-columns: 48px 1fr;
    min-height: 96px;
  }

  .stats-strip svg {
    width: 42px;
    height: 42px;
  }

  .stats-strip strong {
    font-size: 24px;
  }

  .lead-card {
    padding: 24px;
  }

  .floating-call {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
