:root {
  --ink: #111827;
  --muted: #5c6675;
  --line: rgba(17, 24, 39, 0.12);
  --panel: #ffffff;
  --soft: #f4f7f8;
  --deep: #071316;
  --teal: #15a39a;
  --teal-dark: #0b6d68;
  --amber: #e2a33a;
  --danger: #d95d55;
  --shadow: 0 24px 70px rgba(7, 19, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(7, 19, 22, 0.88);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 248px;
  font-size: 14px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 800;
}

.brand-white {
  color: #fff;
}

.brand-blue {
  color: #4d96ff;
}

.brand-copy small {
  margin-top: 3px;
  color: #9fb8d8;
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible,
.privacy-link:hover,
.privacy-link:focus-visible {
  color: #fff;
}

.privacy-link,
.inline-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  max-width: min(100%, 560px);
}

.header-contacts {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  margin-right: 2px;
}

.header-phone,
.footer-phone {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.header-phone:hover,
.header-phone:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible {
  color: var(--teal);
}

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

.messenger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(21, 163, 154, 0.42);
  border-radius: 8px;
  background: rgba(7, 19, 22, 0.42);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.messenger-btn:hover,
.messenger-btn:focus-visible {
  border-color: var(--teal);
  background: rgba(21, 163, 154, 0.14);
  color: #fff;
}

.messenger-icon {
  display: block;
  flex: 0 0 auto;
}

.messenger-btn--labeled {
  width: auto;
  min-width: 132px;
  height: auto;
  min-height: 44px;
  padding: 10px 14px;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.messenger-actions--labeled {
  flex-wrap: wrap;
}

.header-drawer {
  display: none;
  position: relative;
}

.header-drawer__summary {
  list-style: none;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 19, 22, 0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.header-drawer__summary::-webkit-details-marker {
  display: none;
}

.header-drawer__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 14px;
  width: min(320px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 19, 22, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.header-drawer__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.header-drawer__close:hover,
.header-drawer__close:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.nav--drawer {
  display: grid;
  gap: 10px;
  padding-right: 34px;
  color: rgba(255, 255, 255, 0.84);
}

.header-contacts--drawer {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 0;
  border: 0;
  margin: 0;
}

.header-contacts--drawer .header-phone {
  text-align: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.header-contacts--drawer .messenger-actions {
  justify-content: center;
}

.login-link--drawer,
.header-cta--drawer {
  display: block;
  text-align: center;
}

.contact-messengers {
  margin-top: 22px;
}

.contact-messengers__lead {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.contact .messenger-btn--labeled {
  background: rgba(7, 19, 22, 0.05);
  color: var(--deep);
}

.contact .messenger-btn--labeled:hover,
.contact .messenger-btn--labeled:focus-visible {
  background: rgba(21, 163, 154, 0.12);
  color: var(--teal-dark);
}

.footer-contacts {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-contacts .messenger-actions {
  gap: 10px;
}

.login-link,
.header-cta {
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.login-link {
  color: rgba(255, 255, 255, 0.84);
}

.login-link:hover,
.login-link:focus-visible {
  color: #fff;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 6vw, 78px) 56px;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.06);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 19, 22, 0.94) 0%, rgba(7, 19, 22, 0.75) 38%, rgba(7, 19, 22, 0.16) 78%),
    linear-gradient(0deg, rgba(7, 19, 22, 0.82) 0%, rgba(7, 19, 22, 0) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(21, 163, 154, 0.16);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 38px rgba(21, 163, 154, 0.28);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
  margin: 46px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: 44px clamp(20px, 6vw, 78px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.intro-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-copy p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.system-card,
.status-board,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.system-card {
  padding: 22px;
}

.warranty-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 248, 0.98)),
    #fff;
}

.warranty-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.warranty-years {
  display: block;
  margin: 24px 0 22px;
}

.warranty-years span {
  display: block;
  color: #fff;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.95;
  font-weight: 800;
}

.warranty-years small {
  display: block;
  max-width: 320px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.warranty-years sup {
  color: var(--teal-dark);
  font-size: 0.72em;
}

.card-topline,
.temperature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-topline {
  color: var(--muted);
  font-size: 14px;
}

.card-topline strong {
  color: var(--teal-dark);
}

.temperature {
  margin-top: 22px;
}

.temperature span {
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.temperature small {
  color: var(--muted);
}

.meter {
  height: 10px;
  margin: 22px 0;
  overflow: hidden;
  background: #e7edef;
  border-radius: 999px;
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: inherit;
}

.check-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.check-list span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 78px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

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

.benefit-card,
.level-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.benefit-card {
  min-height: 310px;
  padding: 24px;
}

.icon,
.level-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #e7f5f4;
  color: var(--teal-dark);
  font-weight: 800;
}

.benefit-card h3,
.level-card h3 {
  margin: 28px 0 10px;
  font-size: 26px;
}

.benefit-card p,
.level-card p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--deep);
  color: #fff;
}

.split p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.status-board {
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.status-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.status-row + .status-row {
  margin-top: 10px;
}

.status-row span {
  grid-row: span 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-row strong {
  font-size: 18px;
}

.status-row small {
  color: rgba(255, 255, 255, 0.62);
}

.status-row.ok span {
  background: var(--teal);
}

.status-row.warning span {
  background: var(--amber);
}

.status-row.danger span {
  background: var(--danger);
}

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

.level-card {
  padding: 26px;
}

.level-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #0a5f62, #0e8980);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-12px);
}

.level-card.featured p,
.level-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.level-card.featured .level-number {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.level-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.level-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.service-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: #172326;
}

.service-strip div {
  max-width: 820px;
}

.service-strip p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background: #fff;
}

.contact > div p {
  max-width: 620px;
  font-size: 18px;
}

.lead-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: none;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input[type="file"] {
  min-height: auto;
  padding: 11px 12px;
  cursor: pointer;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(21, 163, 154, 0.18);
  border-color: var(--teal);
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.policy-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.policy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal);
}

.policy-check .inline-link {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.form-note.is-success {
  color: var(--teal-dark);
  font-weight: 800;
}

.form-note.is-error {
  color: var(--danger);
  font-weight: 800;
}

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

.privacy-panel article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.privacy-panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.privacy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 19, 22, 0.72);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden],
.cookie-banner[hidden] {
  display: none;
}

.privacy-modal {
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.modal-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f8f9;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(620px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 19, 22, 0.94);
  color: #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 78px);
  color: rgba(255, 255, 255, 0.66);
  background: var(--deep);
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-privacy {
  color: rgba(255, 255, 255, 0.84);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-projects {
  display: grid;
  gap: 4px;
}

.footer-projects strong {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

@media (max-width: 1060px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav--desktop {
    display: none;
  }

  .header-phone {
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .header-actions--desktop {
    display: none;
  }

  .header-drawer {
    display: block;
    flex: 0 0 auto;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .hero {
    min-height: 820px;
    padding: 112px 18px 34px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-points {
    gap: 9px;
    margin-top: 18px;
    font-size: 15px;
  }

  .warranty-years span {
    font-size: 42px;
  }

  .warranty-years small {
    font-size: 16px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 19, 22, 0.9) 0%, rgba(7, 19, 22, 0.62) 100%),
      linear-gradient(0deg, rgba(7, 19, 22, 0.9) 0%, rgba(7, 19, 22, 0.2) 60%);
  }

  .hero-stats,
  .intro-band,
  .split,
  .level-grid,
  .contact,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    grid-template-columns: 1fr;
  }

  .cookie-banner .button {
    width: 100%;
  }

  .intro-band,
  .section {
    padding-inline: 18px;
  }

  .level-card.featured {
    transform: none;
  }

  .service-strip {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .intro-copy h2 {
    font-size: 26px;
  }

  .intro-copy p {
    font-size: 16px;
  }

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

  .messenger-btn--labeled {
    width: 100%;
    min-width: 0;
  }

  .messenger-actions--labeled {
    width: 100%;
  }

  .privacy-modal {
    padding: 22px;
  }
}
