:root {
  --white: #fff;
  --navy: #123c2f;
  --blue: #159466;
  --red: #E63946;
  --gold: #FFB703;
  --sky: #dff8ec;
  --text: #123c2f;
  --muted: #668074;
  --shadow: 0 24px 70px rgba(18, 60, 47, .14);
  --soft: 0 16px 45px rgba(18, 60, 47, .10);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 104px 0; position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18,60,47,.08);
}
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 28px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -.02em;
}
.brand-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(21,148,102,.24);
  overflow: hidden;
  border: 1px solid rgba(21,148,102,.14);
}
.brand-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { font-size: 18px; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: 22px; flex: 1; }
.main-nav a { font-size: 14px; font-weight: 800; color: rgba(18,60,47,.82); }
.main-nav a:hover { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { font-weight: 950; white-space: nowrap; }
.burger { display: none; width: 48px; height: 48px; border: 0; border-radius: 14px; background: rgba(21,148,102,.08); cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; margin: 5px auto; border-radius: 99px; background: var(--navy); transition: .25s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  cursor: pointer;
  transition: .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { color: #fff; background: linear-gradient(135deg,#E63946,#ff5b66); box-shadow: 0 18px 36px rgba(230,57,70,.28); }
.btn-outline { color: var(--blue); background: #fff; border-color: rgba(21,148,102,.28); box-shadow: 0 14px 34px rgba(18,60,47,.08); }
.btn-large { min-height: 62px; padding: 18px 28px; }
.btn-small { min-height: 42px; padding: 11px 16px; font-size: 14px; }
.btn-full { width: 100%; }

.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 88px 0 96px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.88) 44%,rgba(255,255,255,.38)),
    linear-gradient(180deg,rgba(223,248,236,.65),rgba(255,255,255,.95)),
    url("https://pashin.task.v056.ru/staticfiles/generated/auto_generated_20260623-091046_01.png") center right / cover no-repeat;
}
.hero:before {
  content: "";
  position: absolute;
  right: -150px;
  top: 120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(21,148,102,.28),transparent 66%);
  z-index: -2;
}
.hero-shape { position: absolute; pointer-events: none; opacity: .16; mix-blend-mode: multiply; z-index: -1; animation: float 8s ease-in-out infinite; }
.shape-one { width: 320px; right: 2%; top: 110px; }
.shape-two { width: 260px; left: -40px; bottom: 50px; transform: rotate(28deg); animation-direction: reverse; }
@keyframes float { 50% { transform: translateY(-18px) rotate(3deg); } }

.hero-grid { display: grid; grid-template-columns: minmax(0,1.06fr) 430px; gap: 54px; align-items: center; }
.eyebrow, .section-kicker, .form-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dot { width: 10px; height: 10px; border-radius: 99px; background: var(--red); box-shadow: 0 0 0 7px rgba(230,57,70,.12); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px,6vw,74px);
  line-height: .94;
  letter-spacing: -.065em;
  color: var(--blue);
}
h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(34px,4vw,54px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero-subtitle { max-width: 640px; margin-bottom: 28px; font-size: clamp(19px,2vw,26px); font-weight: 750; color: var(--navy); }
.lead, .section-head p { font-size: 19px; color: var(--muted); }

.hero-points { display: grid; gap: 12px; max-width: 650px; margin-bottom: 32px; }
.hero-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(21,148,102,.10);
  box-shadow: 0 10px 32px rgba(18,60,47,.08);
  font-weight: 850;
}
.hero-points span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(620px,100%);
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(18,60,47,.08);
  box-shadow: var(--soft);
  backdrop-filter: blur(14px);
}
.hero-contact-card span { display: block; color: var(--muted); font-size: 14px; font-weight: 700; }
.hero-contact-card a[href^="tel"] { display: block; color: var(--red); font-size: clamp(24px,3vw,34px); font-weight: 950; letter-spacing: -.04em; }

.messengers, .big-messengers, .footer-messengers { display: flex; flex-wrap: wrap; gap: 10px; }
.messengers a, .big-messengers a, .footer-messengers a {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(18,60,47,.16);
  padding: 0 16px;
}
.telegram { background: linear-gradient(135deg,#20b486,#159466); }
.whatsapp { background: linear-gradient(135deg,#25d366,#129d4f); }
.max { background: linear-gradient(135deg,#7c3aed,#b75cff); }

.form-card, .quiz-card, .dark-card, .modal-card, .map-card form {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,60,47,.08);
}
.form-card { position: relative; backdrop-filter: blur(18px); }
.form-card h2, .dark-card h3, .modal-card h2, .map-card h3 { margin: 14px 0 10px; color: var(--navy); font-size: 27px; line-height: 1.1; letter-spacing: -.04em; }

form { display: grid; gap: 14px; }
label span { display: block; margin-bottom: 7px; color: var(--navy); font-size: 14px; font-weight: 850; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(18,60,47,.13);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: .2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 5px rgba(21,148,102,.12); }
small { color: var(--muted); font-size: 12px; }

.calculator {
  background:
    radial-gradient(circle at 10% 10%,rgba(255,183,3,.12),transparent 24%),
    radial-gradient(circle at 90% 20%,rgba(21,148,102,.14),transparent 28%),
    linear-gradient(180deg,#fff,rgba(223,248,236,.42));
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.section-head.centered { max-width: 820px; margin-left: auto; margin-right: auto; text-align: center; display: block; }
.quiz-card { max-width: 920px; margin: 0 auto; }
.quiz-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.full { grid-column: 1 / -1; }

.about { background: linear-gradient(135deg,var(--sky),#fff 64%); }
.about-grid { display: grid; grid-template-columns: .92fr 1fr; gap: 70px; align-items: center; }
.image-card { position: relative; }
.image-card img { border-radius: 34px; box-shadow: var(--shadow); min-height: 470px; object-fit: cover; }
.floating-stat {
  position: absolute;
  right: -24px;
  bottom: 30px;
  width: 220px;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--gold);
}
.floating-stat strong { display: block; color: var(--red); font-size: 52px; line-height: .9; letter-spacing: -.06em; }
.floating-stat span { font-weight: 850; }

.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }
.stats-grid div {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18,60,47,.08);
  border-left: 5px solid var(--red);
}
.stats-grid strong { display: block; color: var(--blue); font-size: 34px; line-height: 1; }
.stats-grid span { font-weight: 800; }

.benefits {
  background:
    radial-gradient(circle at 8% 10%,rgba(255,183,3,.13),transparent 28%),
    radial-gradient(circle at 92% 18%,rgba(21,148,102,.12),transparent 30%),
    #fff;
}
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.benefits-grid article, .cases-grid article {
  min-height: 250px;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--soft);
  border: 1px solid rgba(18,60,47,.08);
  border-top: 6px solid var(--blue);
}
.benefits-grid article span { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 20px; border-radius: 20px; background: rgba(223,248,236,.9); font-size: 30px; }
.benefits-grid h3 { margin-bottom: 9px; font-size: 21px; color: var(--navy); letter-spacing: -.03em; }
.benefits-grid p, .cases-grid p { color: var(--muted); font-weight: 650; }

.dark-card {
  grid-column: span 2;
  background: linear-gradient(135deg,var(--navy),var(--blue));
  color: #fff;
  border-top: 6px solid var(--gold);
}
.dark-card h3, .dark-card p { color: #fff; }

.problem { background: linear-gradient(180deg,#fff,rgba(223,248,236,.45)); }
.problem-grid, .faq-grid, .contacts-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.problem-list { display: grid; gap: 16px; }
.problem-list div {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--soft);
  border: 1px solid rgba(18,60,47,.08);
}
.problem-list b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--red);
}
.problem-list p { margin: 0; font-weight: 780; }

.steps {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%,rgba(255,183,3,.18),transparent 30%),
    linear-gradient(135deg,var(--navy),var(--blue));
}
.steps h2, .steps .section-kicker, .section-head.light p { color: #fff; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(7,1fr); gap: 16px; margin-top: 60px; }
.timeline:before { content: ""; position: absolute; left: 7%; right: 7%; top: 40px; height: 3px; background: linear-gradient(90deg,var(--gold),rgba(255,255,255,.75),var(--red)); }
.timeline div { position: relative; z-index: 1; text-align: center; color: #fff; }
.timeline span { width: 80px; height: 80px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #fff; font-size: 32px; box-shadow: 0 16px 34px rgba(0,0,0,.18); }
.timeline p { color: rgba(255,255,255,.82); font-size: 14px; }
.center { text-align: center; margin-top: 40px; }

.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cases-grid article { min-height: auto; border-top: 0; border-left: 7px solid var(--blue); }
.cases-grid small { display: block; margin-bottom: 18px; color: var(--blue); font-weight: 900; }
.cases-grid strong { display: block; margin-top: 20px; color: var(--red); font-size: 28px; letter-spacing: -.04em; }
.case-form { grid-column: span 2; }

.reviews { background: linear-gradient(135deg,rgba(223,248,236,.92),rgba(255,255,255,.9)); }
.review-slider { position: relative; }
.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 4px 30px;
}
.review-track::-webkit-scrollbar { display: none; }
.review-track article {
  scroll-snap-align: start;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--soft);
  border: 1px solid rgba(18,60,47,.08);
}
.avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 22px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg,var(--blue),var(--navy));
}
.review-track span { color: var(--gold); }
.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 36px;
  line-height: 1;
  box-shadow: var(--soft);
  cursor: pointer;
}
.slider-btn.prev { left: -26px; }
.slider-btn.next { right: -26px; }
.review-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.faq-item {
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft);
  border: 1px solid rgba(18,60,47,.08);
  overflow: hidden;
  margin-bottom: 14px;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}
.faq-item button span { color: var(--red); font-size: 24px; }
.faq-item > div { max-height: 0; overflow: hidden; transition: .25s; }
.faq-item > div p { margin: 0; padding: 0 22px 22px; color: var(--muted); }
.faq-item.active > div { max-height: 220px; }
.faq-item.active button span { transform: rotate(45deg); }

.contacts {
  background:
    radial-gradient(circle at 8% 12%,rgba(230,57,70,.1),transparent 28%),
    radial-gradient(circle at 92% 90%,rgba(255,183,3,.12),transparent 28%),
    #fff;
}
.contact-list { display: grid; gap: 16px; margin: 30px 0; }
.contact-list div { padding: 20px; border-radius: 22px; background: rgba(223,248,236,.62); border: 1px solid rgba(21,148,102,.12); }
.contact-list span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 14px; font-weight: 800; }
.contact-list a, .contact-list p { margin: 0; color: var(--blue); font-weight: 900; }
.contact-list a[href^="tel"] { color: var(--red); font-size: 30px; letter-spacing: -.04em; }
.map-card {
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,60,47,.08);
}
.map-card > img { width: 100%; height: 320px; object-fit: cover; }
.map-card form { margin: 24px; box-shadow: none; background: linear-gradient(180deg,#fff,rgba(223,248,236,.48)); }

.final-cta {
  padding: 62px 0;
  background: linear-gradient(135deg,rgba(230,57,70,.95),rgba(21,148,102,.96)), var(--blue);
  color: #fff;
}
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta h2 { color: #fff; margin-bottom: 10px; }
.final-cta p { margin-bottom: 0; font-size: 19px; opacity: .9; }

.footer { padding: 58px 0 28px; color: #fff; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 50px; }
.footer p { max-width: 410px; color: rgba(255,255,255,.72); }
.footer h3 { margin-bottom: 16px; color: #fff; }
.footer a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.78); font-weight: 750; }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-mark {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}
.footer-brand .brand-text { color: #fff; font-size: 20px; }
.footer-messengers a { display: inline-flex; margin: 0; min-width: 48px; padding: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}
.footer-bottom a { margin: 0; }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 24px;
  background: rgba(18,60,47,.96);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
  backdrop-filter: blur(18px);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.86); font-size: 14px; }
.cookie-banner a { color: var(--sky); text-decoration: underline; }

.mobile-messenger-bar { display: none; }
.modal { position: fixed; inset: 0; z-index: 90; display: none; place-items: center; padding: 20px; }
.modal.open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,43,31,.62); backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 1; width: min(520px,100%); }
.modal-close { position: absolute; right: 18px; top: 14px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--navy); background: rgba(223,248,236,.8); font-size: 28px; cursor: pointer; }

@media (max-width: 1120px) {
  .header-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .form-card { max-width: 560px; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .timeline { grid-template-columns: repeat(4,1fr); }
  .timeline:before { display: none; }
  .review-track { grid-auto-columns: calc((100% - 22px) / 2); }
  .cases-grid, .contacts-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 920px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 82px; }
  .burger { display: block; margin-left: auto; }
  .header-actions { display: none; }
  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(18,60,47,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 15px 16px; border-radius: 16px; }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding: 68px 0 72px; }
  .hero-bg {
    background:
      linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.94) 45%,#fff),
      url("https://pashin.task.v056.ru/staticfiles/generated/auto_generated_20260623-091046_01.png") center top / cover no-repeat;
  }
  .hero-contact-card, .final-cta-inner, .section-head { align-items: stretch; flex-direction: column; }
  .about-grid, .problem-grid, .faq-grid, .contacts-grid, .quiz-grid, .cases-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 22px; max-width: 620px; margin-left: auto; margin-right: auto; }
  .timeline div { display: grid; grid-template-columns: 78px 1fr; text-align: left; column-gap: 18px; align-items: center; }
  .timeline span { width: 72px; height: 72px; margin: 0; }
  .timeline h3, .timeline p { grid-column: 2; }
  .slider-btn { display: none; }
  .review-track { grid-auto-columns: 82%; }
  .case-form, .dark-card { grid-column: auto; }
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 82px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 62px; }
  .brand-text { font-size: 14px; }
  .brand-mark { width: 54px; height: 54px; border-radius: 17px; }
  .footer-brand .brand-mark { width: 66px; height: 66px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-points div { width: 100%; border-radius: 18px; }
  .hero-buttons { display: grid; }
  .messengers { width: 100%; }
  .messengers a { flex: 1; }
  .form-card, .quiz-card, .dark-card, .modal-card, .review-track article, .map-card form { padding: 22px; border-radius: 24px; }
  .benefits-grid, .stats-grid { grid-template-columns: 1fr; }
  .image-card img { min-height: 340px; }
  .floating-stat { position: static; width: 100%; margin-top: 16px; }
  .review-track { grid-auto-columns: 94%; }
  .contact-list a[href^="tel"], .hero-contact-card a[href^="tel"] { font-size: 25px; }
  .map-card > img { height: 240px; }
  .map-card form { margin: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .mobile-messenger-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 8px;
    gap: 8px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 -14px 35px rgba(18,60,47,.16);
    backdrop-filter: blur(14px);
  }
  .mobile-messenger-bar a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
  }
}

@media (max-width: 420px) {
  .container { width: min(100% - 22px, var(--container)); }
  .section { padding: 58px 0; }
  h1 { font-size: 37px; }
  .hero-subtitle { font-size: 18px; }
  .review-track { grid-auto-columns: 100%; }
}