
:root {
  --deep:       #052941;  --deep-soft:  #0a3350;
  --navy:       #284e75;  --navy-dark:  #1d3c5e;
  --pink:       #f6cfe2;  --pink-soft:  #fadbeb;  --pink-deep:  #e9b3cf;
  --olive:      #6f8c70;  --paper:      #f3f6f9;  --white:      #ffffff;
  --ink:        #14293a;  --ink-soft:   #48627a;
  --line:       rgba(20, 41, 58, 0.12);
  --line-light: rgba(250, 219, 235, 0.18);

  --font-display: "Prata", "Georgia", serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(5, 41, 65, 0.16);
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 { margin: 0 0 0.5em; line-height: 1.2; font-weight: 400; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}

.section { padding: 90px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--deep);
  margin-bottom: 18px;
}

.section-lead {
  max-width: 640px;
  color: var(--ink-soft);
  margin: 0 0 44px;
}

.section--dark {
  background: var(--deep);
  color: var(--pink-soft);
}
.section--dark .section-title { color: var(--pink-soft); }
.section--dark .section-lead { color: rgba(250, 219, 235, 0.75); }
.section--dark .eyebrow { color: var(--olive); filter: brightness(1.35); }

.section--navy {
  background: var(--navy);
  color: var(--pink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--pink {
  background: var(--pink);
  color: var(--deep);
  box-shadow: 0 12px 30px rgba(246, 207, 226, 0.25);
}
.btn--pink:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--pink-soft);
  border: 1px solid rgba(250, 219, 235, 0.45);
}
.btn--outline:hover { border-color: var(--pink-soft); transform: translateY(-2px); }

.btn--navy {
  background: var(--navy);
  color: var(--pink-soft);
}
.btn--navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

.btn .arrow { width: 26px; height: 12px; flex: none; }
.btn .arrow path { fill: currentColor; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(5, 41, 65, 0);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-solid {
  background: rgba(5, 41, 65, 0.96);
  box-shadow: 0 6px 24px rgba(3, 25, 40, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-link { flex: none; display: block; }
.logo-link img { height: 56px; width: auto; }

.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  color: var(--pink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a.is-active { border-bottom-color: var(--pink); color: var(--white); }

.header-side {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: var(--pink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.header-phone:hover { color: var(--white); }

.lang-switch {
  display: flex;
  border: 1px solid rgba(250, 219, 235, 0.4);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  background: transparent;
  border: none;
  color: rgba(250, 219, 235, 0.7);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch button.is-active {
  background: var(--pink);
  color: var(--deep);
}

.burger {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--pink-soft);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--deep);
  color: var(--pink-soft);
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 60px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(38% 30% at 22% 30%, rgba(40, 78, 117, 0.55), transparent 70%),
    radial-gradient(30% 26% at 75% 18%, rgba(111, 140, 112, 0.20), transparent 70%),
    radial-gradient(42% 34% at 68% 78%, rgba(40, 78, 117, 0.45), transparent 70%);
  animation: drift 26s ease-in-out infinite alternate;
}
.hero::after {
  background:
    radial-gradient(26% 22% at 40% 70%, rgba(246, 207, 226, 0.06), transparent 70%),
    radial-gradient(34% 30% at 85% 45%, rgba(40, 78, 117, 0.5), transparent 70%);
  animation-duration: 34s;
  animation-direction: alternate-reverse;
}

@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(2%, 2%, 0) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 76px);
  color: var(--pink-soft);
  margin: 0 0 22px;
}

.hero-sub {
  max-width: 520px;
  font-size: 17px;
  color: rgba(250, 219, 235, 0.82);
  margin: 0 0 36px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-caption {
  margin: 18px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: rgba(250, 219, 235, 0.9);
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
}
.hero-badges li {
  font-size: 13px;
  font-weight: 500;
  color: var(--pink-soft);
  background: rgba(246, 207, 226, 0.1);
  border: 1px solid rgba(246, 207, 226, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
}

.hero-note {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(250, 219, 235, 0.6);
}

.hero-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -36px;
}
.hero-figure img {
  width: min(290px, 58%);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.page-hero {
  position: relative;
  background: var(--deep);
  color: var(--pink-soft);
  padding: calc(var(--header-h) + 90px) 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(40% 34% at 25% 40%, rgba(40, 78, 117, 0.5), transparent 70%),
    radial-gradient(30% 28% at 80% 60%, rgba(246, 207, 226, 0.05), transparent 70%);
  animation: drift 30s ease-in-out infinite alternate;
}
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 14px;
}
.page-hero p { max-width: 620px; color: rgba(250, 219, 235, 0.78); margin: 0 auto; }

.pricing-note {
  margin: 26px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px 36px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.price-card--hot {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--pink-soft);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-qty {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}
.price-card--hot .price-qty { color: var(--pink-deep); }

.price-value {
  font-family: var(--font-display);
  font-size: 58px;
  color: var(--deep);
  line-height: 1;
}
.price-card--hot .price-value { color: var(--pink-soft); }

.price-unit {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 12px 0 32px;
}
.price-card--hot .price-unit { color: rgba(250, 219, 235, 0.7); }

.price-card .btn { margin-top: auto; justify-content: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature {
  background: rgba(40, 78, 117, 0.35);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(246, 207, 226, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--pink); fill: none; }
.feature h3 { font-family: var(--font-body); font-weight: 600; font-size: 17px; color: var(--white); }
.feature p { margin: 0; font-size: 14px; color: rgba(250, 219, 235, 0.72); }

.trust {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.trust-figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}
.trust h2 { text-align: left; }
.trust p { color: var(--ink-soft); }
.trust-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.trust-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 500;
}
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(246, 207, 226, 0.25);
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.cta-qr {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px 18px;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(3, 25, 40, 0.35);
  transition: transform 0.2s ease;
}
.cta-qr:hover { transform: translateY(-4px); }
.cta-qr img { width: 170px; height: 170px; display: block; }
.cta-qr-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--deep);
}
.cta-qr-note {
  max-width: 190px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  text-align: center;
}
@media (max-width: 720px) {
  .cta-flex { flex-direction: column; gap: 34px; }
  .cta-qr { display: none; }
}

.hero-qr {
  position: absolute;
  z-index: 3;
  top: calc(var(--header-h) + 14px);
  right: 18px;
  width: 112px;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 10px;
  gap: 5px;
  transition: none;
  animation: none;
}
.hero-qr:hover { transform: none; }
.hero-qr img { width: 100%; height: auto; }
.hero-qr .cta-qr-title { font-size: 13px; width: 100%; text-align: center; }

.cta-band { text-align: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 38px);
  color: var(--pink-soft);
  margin-bottom: 14px;
}
.cta-band p { color: rgba(250, 219, 235, 0.75); margin: 0 0 30px; }
.cta-band .phones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin-bottom: 30px;
}
.cta-band .phones a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  text-decoration: none;
}
.cta-band .phones a:hover { color: var(--pink); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.split h2 { text-align: left; }
.split p { color: var(--ink-soft); }
.section--dark .split p { color: rgba(250, 219, 235, 0.78); }

.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.step { grid-column: span 2; }
.step:nth-child(4) { grid-column: 2 / span 2; }
.step {
  background: rgba(40, 78, 117, 0.35);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
}
.step-ico {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--white); }
.step p { margin: 0; font-size: 14px; color: rgba(250, 219, 235, 0.72); }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(5, 41, 65, 0.06);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 540px;
}
table.data th,
table.data td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.data th {
  background: var(--navy);
  color: var(--pink-soft);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
table.data tr:last-child td { border-bottom: none; }
table.data td:first-child { font-weight: 500; }

.status-ok {
  display: inline-block;
  background: rgba(111, 140, 112, 0.15);
  color: #4c6b4e;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.table-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 14px;
}
.table-note a { color: var(--navy); font-weight: 600; }

.lab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.lab-grid > div,
.split > * { min-width: 0; }
#lab table.data th { color: var(--white); }
#lab table.data td { color: var(--navy-dark); }

.lab-grid h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--deep);
  margin-bottom: 16px;
}

.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--olive);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0; padding: 0 24px 22px; color: var(--ink-soft); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.how-card {
  background: var(--navy-dark);
  border: 1px solid rgba(250, 219, 235, 0.16);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 14px 36px rgba(5, 41, 65, 0.22);
}
.how-card .num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--pink);
  display: block;
  margin-bottom: 14px;
}
.how-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 17px; color: var(--pink-soft); }
.how-card p { margin: 0; font-size: 14px; color: rgba(250, 219, 235, 0.75); }

.badge-soon {
  display: inline-block;
  background: var(--pink);
  color: var(--deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 8px;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pay-card {
  background: rgba(40, 78, 117, 0.35);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-align: center;
}
.pay-card svg { width: 30px; height: 30px; stroke: var(--pink); fill: none; margin: 0 auto 16px; }
.pay-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--white); }
.pay-card p { margin: 0; font-size: 13px; color: rgba(250, 219, 235, 0.7); }

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.contact-card h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}
.contact-card a {
  color: var(--deep);
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
}
.contact-card a:hover { color: var(--navy); }
.contact-card p { margin: 6px 0 0; color: var(--ink-soft); font-size: 14px; }
.contact-card .stack { display: flex; flex-direction: column; gap: 8px; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

.site-footer {
  background: var(--deep);
  color: rgba(250, 219, 235, 0.7);
  padding: 60px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand img { height: 56px; margin-bottom: 18px; }
.footer-brand p { margin: 0; font-size: 14px; max-width: 300px; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  color: rgba(250, 219, 235, 0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

.float-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
}

.float-toggle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--navy);
  color: var(--pink-soft);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(5, 41, 65, 0.4);
  transition: background 0.2s ease;
  animation: pulse 3s ease-in-out infinite, nudge 5s ease-in-out infinite;
}
.float-toggle:hover { background: var(--navy-dark); }
.float-toggle svg { width: 36px; height: 36px; fill: var(--pink-soft); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(5, 41, 65, 0.4), 0 0 0 0 rgba(246, 207, 226, 0.55); }
  50%      { box-shadow: 0 14px 34px rgba(5, 41, 65, 0.4), 0 0 0 16px rgba(246, 207, 226, 0); }
}
@keyframes nudge {
  0%, 86%, 100% { transform: scale(1) rotate(0deg); }
  90% { transform: scale(1.12) rotate(-8deg); }
  94% { transform: scale(1.06) rotate(6deg); }
  97% { transform: scale(1.1) rotate(0deg); }
}

.float-menu {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 290px;
  background: var(--deep);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(3, 25, 40, 0.5);
  padding: 18px;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.float-contact.is-open .float-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.float-menu-title {
  font-family: var(--font-display);
  color: var(--pink-soft);
  font-size: 18px;
  margin: 4px 6px 14px;
}

.float-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--pink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease;
}
.float-item:hover { background: rgba(246, 207, 226, 0.08); }
.float-item.is-disabled { opacity: 0.55; cursor: default; }
.float-item .ico {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(246, 207, 226, 0.12);
  display: grid;
  place-items: center;
}
.float-item .ico svg { width: 19px; height: 19px; fill: var(--pink); }
.float-item small { display: block; font-weight: 400; font-size: 11px; color: rgba(250, 219, 235, 0.55); }

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.order-modal.is-open { opacity: 1; pointer-events: auto; }

.order-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 25, 40, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.order-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--deep);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(3, 25, 40, 0.6);
  padding: 40px 38px 30px;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
}
.order-modal.is-open .order-dialog { transform: translateY(0) scale(1); }

.order-dialog h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 34px);
  color: var(--pink-soft);
  margin: 10px 0 10px;
}
.order-dialog > p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250, 219, 235, 0.75);
}

.order-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(246, 207, 226, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.order-close:hover { background: rgba(246, 207, 226, 0.24); transform: rotate(90deg); }
.order-close svg { width: 18px; height: 18px; fill: var(--pink-soft); }

.order-bot {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pink);
  color: var(--deep);
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.order-bot:hover { transform: translateY(-2px); background: var(--pink-soft); }
.order-bot svg { flex: none; width: 26px; height: 26px; fill: var(--deep); }
.order-bot small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: rgba(5, 41, 65, 0.65);
  margin-top: 2px;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.order-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(246, 207, 226, 0.18);
  border-radius: var(--radius-sm);
  color: var(--pink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.order-item:hover { background: rgba(246, 207, 226, 0.08); border-color: rgba(246, 207, 226, 0.38); }
.order-item .ico {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(246, 207, 226, 0.12);
  display: grid;
  place-items: center;
}
.order-item .ico svg { width: 19px; height: 19px; fill: var(--pink); }
.order-item small { display: block; font-weight: 400; font-size: 11px; color: rgba(250, 219, 235, 0.55); }

.order-note {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(250, 219, 235, 0.55);
}

@media (max-width: 620px) {
  .order-dialog { padding: 32px 22px 24px; }
  .order-grid { grid-template-columns: 1fr; }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step, .step:nth-child(4) { grid-column: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-qr { display: none; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-figure { order: -1; margin-top: 0; }
  .hero-figure img { width: min(210px, 48%); }
  .trust, .split { grid-template-columns: 1fr; gap: 36px; }
  .lab-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 41, 65, 0.98);
    padding: 12px 6%;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    box-shadow: 0 20px 40px rgba(3, 25, 40, 0.4);
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav.is-closing {
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
  }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line-light); }
  .header-phone { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  table.data { min-width: 0; font-size: 12px; }
  table.data th,
  table.data td { padding: 8px 8px; }
  table.data th { font-size: 10px; letter-spacing: 0.04em; }
  .status-ok { font-size: 11px; padding: 3px 9px; }
  .table-wrap { border-radius: var(--radius-sm); }
  .pricing-grid, .how-grid, .pay-grid { grid-template-columns: 1fr; }
  .price-card--hot { order: -1; }
  .features-grid, .steps { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-contact { right: 16px; bottom: 16px; }
  .map-wrap iframe { height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before, .hero::after, .page-hero::before,
  .hero-figure img, .float-toggle { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
