:root {
  --bg: #050608;
  --panel: #111214;
  --teal: #1f6268;
  --teal-soft: #275d62;
  --gold: #ffb52f;
  --gold-deep: #f2a000;
  --white: #f6f4f1;
  --paper: #f4f3f1;
  --ink: #111111;
  --muted: #5a5a5a;
  --line: rgba(255, 255, 255, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, #286f75 0%, #225f64 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.logo img {
  width: 166px;
  height: auto;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.75rem);
  white-space: nowrap;
  flex-shrink: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-strip {
  background: #1d1d1d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 14px 0;
  color: #cecece;
  font-size: 0.95rem;
}

.benefit-strip span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--teal);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 56px 0 38px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0, rgba(0, 0, 0, 0.2) 24%, rgba(0, 0, 0, 0.9) 100%),
    radial-gradient(circle at 28% 18%, rgba(31, 98, 104, 0.14), transparent 24%),
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.1), transparent 24%),
    #000;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  align-items: center;
  gap: 28px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 28px 0 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.eyebrow-outline {
  border: 2px solid #0e6b72;
  color: var(--gold);
}

.hero-title,
.section-title,
.cta-panel h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(4rem, 8vw, 7.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 760px;
  margin: 12px 0 22px;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-text,
.section-text,
.intro-copy p,
.compare-grid div,
.feature-card p,
.review-card p,
.step-card p,
.step-card li,
.cta-text,
.check-list li,
.plan-card p,
.plans-note,
.contact-meta,
.lead-form p,
.form-note {
  line-height: 1.58;
}

.hero-text {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 18px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary,
.button-submit {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 26px rgba(31, 98, 104, 0.3);
}

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

.button-accent {
  background: var(--gold);
  color: #151515;
  box-shadow: 0 10px 30px rgba(255, 181, 47, 0.35);
}

.hero-media {
  position: relative;
  min-height: 620px;
  align-self: stretch;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  right: -76px;
  bottom: -168px;
  width: clamp(420px, 46vw, 650px);
  max-width: none;
  height: auto;
  object-fit: cover;
  object-position: right bottom;
  filter: saturate(0.98) contrast(1.04);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.5) 32%, rgba(5, 6, 8, 0) 68%);
  z-index: 1;
}

.section {
  padding: 72px 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background: #000;
}

.section-accent {
  background: linear-gradient(180deg, #225f63 0%, #245c60 100%);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--teal-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-kicker-gold {
  color: var(--gold);
}

.section-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.section-title-plans {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4.1vw, 3.7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: none;
}

.section-title-dark {
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: none;
}

.section-title span {
  color: var(--gold);
}

.section-text {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section-text-dark {
  color: #353535;
}

.section-text-narrow {
  max-width: 700px;
}

.intro-copy {
  display: grid;
  gap: 12px;
  max-width: 890px;
  margin-top: 18px;
  color: #333;
}

.compare-card {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.compare-head span {
  padding: 18px 20px;
  font-weight: 800;
}

.compare-head span:first-child {
  background: #ede0dc;
  color: #7d3e36;
}

.compare-head span:last-child {
  background: #dceae4;
  color: #2c6354;
}

.compare-grid div {
  padding: 18px 20px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.compare-grid div:nth-child(odd) {
  border-right: 1px solid rgba(16, 16, 16, 0.08);
  background: #f7efed;
}

.compare-grid div:nth-child(even) {
  background: #f2f8f5;
  font-weight: 600;
}

.facts-card {
  margin-top: 30px;
  padding: 30px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #275f63 0%, #23565a 100%);
  box-shadow: var(--shadow);
  text-align: center;
}

.facts-card strong {
  display: block;
  color: var(--gold);
  font-size: 2.3rem;
  font-weight: 800;
}

.facts-card span {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 600;
}

.facts-card p {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.86);
}

.feature-list,
.reviews {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.feature-card,
.review-card,
.step-card,
.plan-card,
.lead-form,
.team-card,
.cta-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 26px 22px;
  background: linear-gradient(180deg, #225d61 0%, #1c5054 100%);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 18px;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.feature-icon-search::before {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-4px, -4px);
}

.feature-icon-search::after {
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: translate(10px, 10px) rotate(45deg);
}

.feature-icon-bars::before {
  inset: 14px 16px 14px 16px;
  background:
    linear-gradient(180deg, transparent 42%, #fff 42% 100%) left bottom / 6px 100% no-repeat,
    linear-gradient(180deg, transparent 24%, #fff 24% 100%) center bottom / 6px 100% no-repeat,
    linear-gradient(180deg, transparent 8%, #fff 8% 100%) right bottom / 6px 100% no-repeat;
}

.feature-icon-camera::before {
  width: 26px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 6px;
}

.feature-icon-camera::after {
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.feature-icon-doc::before {
  width: 18px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 4px;
  box-shadow:
    inset 0 -10px 0 -8px #fff,
    inset 0 -4px 0 -2px transparent;
}

.feature-icon-doc::after {
  width: 8px;
  height: 2px;
  background: #fff;
  top: 18px;
  box-shadow: 0 6px 0 #fff, 0 12px 0 #fff;
}

.feature-icon-tools::before {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: rotate(45deg);
}

.feature-icon-tools::after {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: rotate(-45deg);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.step-card {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.05);
}

.step-badge {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eef1f4;
  color: #505050;
  font-size: 0.92rem;
}

.step-card h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 1.25rem;
  line-height: 1.18;
}

.step-card p {
  margin: 0 0 12px;
  color: #474747;
}

.step-card ul {
  margin: 0;
  padding: 0 0 0 16px;
  color: #3a3a3a;
}

.step-card li::marker {
  color: var(--gold);
}

.review-card {
  padding: 30px 28px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96) 0%, rgba(14, 14, 14, 0.98) 100%);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.92rem;
}

.review-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.review-author span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #2d7d84 0%, #205b60 100%);
  font-weight: 700;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author small {
  color: rgba(255, 255, 255, 0.55);
}

.cta-panel {
  padding: 34px 24px;
  background: transparent;
  color: #fff;
}

.cta-panel h2 {
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.cta-quote {
  margin: 12px 0 0;
  font-size: 1.2rem;
  text-align: center;
}

.cta-text {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #184549;
  font-size: 0.8rem;
  font-weight: 800;
}

.cta-panel .button-accent {
  margin: 28px auto 0;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.plan-card {
  position: relative;
  padding: 28px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 50% 0%, rgba(255, 181, 47, 0.08), transparent 38%),
    #151515;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.plan-card-featured {
  border-color: var(--gold);
  box-shadow: 0 24px 70px rgba(255, 181, 47, 0.18);
}

.plan-top {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 181, 47, 0.24) 0%, rgba(255, 181, 47, 0.08) 100%);
  border: 1px solid rgba(255, 181, 47, 0.22);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.plan-card h3 {
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: none;
}

.plan-card strong {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 2.1rem;
  font-weight: 800;
}

.plan-card > p:last-of-type {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.plan-features {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.42;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 181, 47, 0.1);
}

.plan-card .button {
  margin-top: auto;
  width: 100%;
}

.plans-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-contacts {
  padding-bottom: 120px;
}

.contacts-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contacts-logo {
  width: 56px;
}

.contact-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 22px;
  margin-top: 20px;
  align-items: start;
  color: #2d2d2d;
}

.contact-meta p {
  margin: 0;
}

.contact-meta a {
  color: var(--gold-deep);
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(31, 98, 104, 0.08);
  border: 1px solid rgba(31, 98, 104, 0.14);
  font-size: clamp(1.75rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  word-break: break-word;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 24px;
  margin-top: 0;
  color: #565656;
}

.team-card {
  margin-top: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.05);
}

.team-card img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.lead-form {
  margin-top: 20px;
  padding: 34px 22px;
  background: #fff;
  text-align: center;
  border: 1px solid rgba(16, 16, 16, 0.05);
}

.lead-form h3 {
  margin: 0;
  color: #222;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lead-form p {
  margin: 10px 0 0;
  color: #555;
  font-size: 1.3rem;
}

.lead-form input {
  width: 100%;
  height: 68px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #f6f6f6;
  color: #222;
}

.lead-form input::placeholder {
  color: #b3b3b3;
}

.lead-form .button-submit {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(180deg, #ffbf45 0%, #ffaf20 100%);
  color: #181818;
}

.form-note {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  color: #666;
  font-size: 0.94rem;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--teal);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #c33232;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 30;
  min-height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffbf45 0%, #ffae1d 100%);
  color: #151515;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.js-ready .mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.js-ready .mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta,
.cta-panel .button-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 981px) {
  .mobile-cta {
    display: none;
  }

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

  .feature-list .feature-card:last-child {
    grid-column: 2 / 3;
  }

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

@media (max-width: 980px) {
  .hero-inner,
  .contact-meta,
  .compare-head,
  .compare-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 32px;
  }

  .hero-media {
    display: none;
  }

  .hero-media img {
    right: -22px;
    bottom: -112px;
    width: 116%;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(5, 6, 8, 0.2) 0%, rgba(5, 6, 8, 0.52) 44%, rgba(5, 6, 8, 0.94) 100%);
  }

  .compare-head {
    display: none;
  }

  .compare-grid div:nth-child(odd) {
    border-right: 0;
  }

  .compare-grid div:nth-child(4n + 1),
  .compare-grid div:nth-child(4n + 2) {
    background: #f7efed;
  }

  .compare-grid div:nth-child(4n + 3),
  .compare-grid div:nth-child(4n + 4) {
    background: #f2f8f5;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 30px));
  }

  .topbar-inner {
    min-height: 64px;
  }

  .logo img {
    width: 142px;
  }

  .topbar-phone {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .benefit-strip-inner {
    gap: 8px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 32px;
  }

  .hero-inner {
    gap: 14px;
  }

  .hero-copy {
    max-width: none;
    padding: 16px 0 4px;
  }

  .hero-title {
    font-size: clamp(3.45rem, 16vw, 4.8rem);
  }

  .hero-subtitle {
    margin: 12px 0 18px;
    font-size: clamp(1.75rem, 8.9vw, 2.55rem);
  }

  .hero-text {
    max-width: none;
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    gap: 10px;
  }

  .button {
    min-height: 54px;
    padding: 0 20px;
    font-size: 0.96rem;
  }

  .hero-media {
    display: none;
  }

  .hero-media img {
    right: -24px;
    bottom: -72px;
    width: 118%;
    max-width: none;
    margin: 0;
  }

  .hero-media::before {
    display: block;
    background: linear-gradient(180deg, rgba(5, 6, 8, 0.06) 0%, rgba(5, 6, 8, 0.18) 42%, rgba(5, 6, 8, 0.7) 100%);
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: clamp(2.3rem, 11.5vw, 3.5rem);
  }

  .section-title-plans {
    font-size: clamp(1.9rem, 8.6vw, 2.9rem);
    line-height: 1;
  }

  .section-title-dark {
    font-family: "Montserrat", sans-serif;
    max-width: none;
    font-size: clamp(1.85rem, 8.3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .eyebrow {
    margin-bottom: 16px;
    padding: 8px 14px;
    font-size: 0.75rem;
    max-width: 100%;
  }

  .compare-card {
    border-radius: 18px;
  }

  .compare-grid div {
    padding: 16px;
    font-size: 0.95rem;
  }

  .step-card p,
  .step-card li,
  .review-card p {
    font-size: 0.96rem;
  }

  .feature-card,
  .step-card,
  .plan-card {
    padding: 22px 18px;
  }

  .feature-card,
  .review-card,
  .step-card,
  .plan-card,
  .lead-form,
  .cta-panel {
    border-radius: 20px;
  }

  .review-card {
    padding: 24px 22px;
  }

  .review-author {
    gap: 12px;
  }

  .cta-panel {
    padding: 28px 18px;
  }

  .plan-card h3 {
    font-size: 1.58rem;
  }

  .plan-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 15px;
    font-size: 1.05rem;
  }

  .contact-phone {
    min-height: 56px;
    padding: 0 18px;
    font-size: 1.68rem;
  }

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

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

  .plan-features {
    gap: 8px;
    margin-bottom: 18px;
  }

  .contacts-head {
    align-items: center;
  }

  .contacts-logo {
    width: 44px;
  }

  .lead-form {
    padding: 32px 16px 28px;
  }

  .lead-form p {
    font-size: 1.05rem;
  }

  .section-contacts {
    padding-bottom: 132px;
  }
}

@media (max-width: 480px) {
  .topbar-inner {
    gap: 10px;
    min-height: 60px;
  }

  .logo img {
    width: 134px;
  }

  .topbar-phone {
    padding: 0 10px;
    font-size: 0.69rem;
  }

  .benefit-strip-inner {
    gap: 6px;
    font-size: 0.8rem;
  }

  .benefit-strip span::before {
    margin-right: 8px;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 4.1rem);
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: clamp(1.35rem, 7vw, 1.95rem);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .button {
    min-height: 52px;
    font-size: 0.92rem;
  }

  .section {
    padding: 52px 0;
  }

  .contact-phone {
    font-size: 1.78rem;
  }

  .mobile-cta {
    left: 12px;
    right: 12px;
    bottom: 10px;
    min-height: 54px;
    border-radius: 16px;
  }
}
