:root {
  --bg: #f5fbff;
  --text: #082336;
  --muted: #5b7486;
  --blue: #0b9bd8;
  --deep-blue: #075985;
  --aqua: #5de1dc;
  --mint: #d9fbf7;
  --white: #ffffff;
  --line: rgba(8, 35, 54, 0.12);
  --shadow: 0 24px 70px rgba(7, 89, 133, 0.18);
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/Manrope-Cyrillic.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/Manrope-CyrillicExt.woff2") format("woff2-variations");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/Manrope-Latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", Arial, "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(93, 225, 220, 0.35), transparent 28%),
    linear-gradient(180deg, #eefaff 0%, var(--bg) 46%, #ffffff 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(245, 251, 255, 0.82);
  border-bottom: 1px solid rgba(8, 35, 54, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11, 155, 216, 0.32);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--deep-blue);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px) 92px;
  background: linear-gradient(180deg, rgba(238, 250, 255, 0.22) 0%, #f3fcff 72%, #ffffff 100%);
}

.floating-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.floating-decor span {
  position: absolute;
  color: rgba(7, 89, 133, 0.22);
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 800;
  text-shadow: 0 12px 30px rgba(93, 225, 220, 0.22);
  animation: floatNote 9s ease-in-out infinite;
}

.floating-decor span:nth-child(1) { left: 9%; top: 18%; animation-delay: 0s; }
.floating-decor span:nth-child(2) { left: 31%; top: 23%; font-size: clamp(18px, 3vw, 38px); animation-delay: 1.1s; }
.floating-decor span:nth-child(3) { right: 36%; top: 17%; animation-delay: 2.2s; }
.floating-decor span:nth-child(4) { right: 13%; top: 28%; font-size: clamp(18px, 3vw, 34px); animation-delay: 3.1s; }
.floating-decor span:nth-child(5) { left: 41%; bottom: 18%; animation-delay: 4.2s; }
.floating-decor span:nth-child(6) { right: 23%; bottom: 22%; font-size: clamp(18px, 3vw, 34px); animation-delay: 5s; }

.section > .section-decor {
  position: absolute;
  z-index: 0;
}

.section-decor span {
  color: rgba(7, 89, 133, 0.14);
  text-shadow: 0 16px 36px rgba(93, 225, 220, 0.2);
}

.sea-band .section-decor span {
  color: rgba(255, 255, 255, 0.18);
  text-shadow: 0 18px 42px rgba(255, 255, 255, 0.14);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--deep-blue);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-7px) scale(1.12);
}

.button:active {
  transform: translateY(-2px) scale(1.04);
}

.button-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, #078cc4 0%, #12b9d9 52%, #32d8cb 100%);
  background-size: 220% 220%;
  box-shadow: 0 18px 38px rgba(4, 112, 158, 0.28);
  outline: 0;
  background-clip: padding-box;
}

.button-primary {
  animation: ctaPulse 2.4s ease-in-out infinite, ctaGradient 5.5s ease-in-out infinite;
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: -40% -26%;
  z-index: 0;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.62) 48%, transparent 62%);
  transform: translateX(-78%) rotate(6deg);
  animation: ctaShine 3.2s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.button-primary:hover {
  transform: translateY(-7px) scale(1.12);
  filter: saturate(1.12);
  box-shadow:
    0 32px 68px rgba(4, 112, 158, 0.44),
    0 0 0 10px rgba(93, 225, 220, 0.2);
  animation-duration: 1.7s, 3.8s;
}

.button-secondary {
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(7, 89, 133, 0.18);
}

.hero-visual {
  min-height: 520px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(-76px);
}

.record {
  position: relative;
  display: grid;
  place-items: center;
  width: min(88vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #f7fdff 0 13%, transparent 13% 18%, rgba(255, 255, 255, 0.4) 18% 20%, transparent 20%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 16px),
    conic-gradient(from 130deg, #075985, #0b9bd8, #5de1dc, #0b9bd8, #075985);
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
}

.record-ring {
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.record-label {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: var(--deep-blue);
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  background: var(--mint);
}

.wave-card {
  position: relative;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 245px;
  height: 112px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.wave-card span {
  display: block;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--aqua), var(--blue));
  animation: bars 1.4s ease-in-out infinite;
}

.wave-card span:nth-child(1) { height: 32px; animation-delay: 0ms; }
.wave-card span:nth-child(2) { height: 56px; animation-delay: 120ms; }
.wave-card span:nth-child(3) { height: 76px; animation-delay: 240ms; }
.wave-card span:nth-child(4) { height: 48px; animation-delay: 360ms; }
.wave-card span:nth-child(5) { height: 68px; animation-delay: 480ms; }
.wave-card span:nth-child(6) { height: 42px; animation-delay: 600ms; }
.wave-card span:nth-child(7) { height: 60px; animation-delay: 720ms; }

.section,
.cta-section,
.site-footer {
  position: relative;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.hero > *,
.section > *,
.cta-section > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.hero > .floating-decor,
.section > .section-decor {
  position: absolute;
  z-index: 0;
}

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

.intro {
  overflow: hidden;
  margin-top: -1px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 34%, #f7fdff 72%, #eefaff 100%);
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: clamp(72px, 9vw, 118px);
}

.intro::before {
  content: none;
}

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

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

.feature {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(232, 249, 253, 0.18));
  box-shadow:
    0 24px 58px rgba(7, 89, 133, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(11, 155, 216, 0.08);
  backdrop-filter: blur(22px) saturate(150%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature::before,
.step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 58%);
  pointer-events: none;
}

.feature > *,
.step > * {
  position: relative;
  z-index: 1;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 155, 216, 0.34);
  box-shadow: 0 30px 70px rgba(7, 89, 133, 0.18);
}

.feature p,
.step p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--deep-blue), var(--blue), var(--aqua));
  box-shadow: 0 18px 36px rgba(11, 155, 216, 0.3);
}

.feature h3 {
  font-size: 24px;
}

.feature p {
  font-size: 17px;
}

.payment-section {
  overflow: hidden;
  background: linear-gradient(180deg, #eefaff 0%, #f6fdff 52%, #e8fbff 100%);
}

.payment-section .section-heading {
  max-width: 980px;
}

.payment-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
}

.pricing-grid,
.payment-info-grid {
  display: grid;
  gap: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.price-card,
.payment-info-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(224, 249, 255, 0.34));
  box-shadow:
    0 24px 60px rgba(7, 89, 133, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(145%);
}

.price-card {
  min-height: 210px;
  padding: 28px;
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.price-card-head > span:first-child {
  display: block;
  color: var(--deep-blue);
  font-size: 18px;
  font-weight: 900;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff385c 0%, #e11d48 58%, #be123c 100%);
  box-shadow:
    0 16px 30px rgba(225, 29, 72, 0.34),
    0 0 0 5px rgba(255, 56, 92, 0.1);
  transform: rotate(-9deg);
}

.price-stack {
  display: grid;
  justify-items: start;
  gap: 4px;
  margin-bottom: 14px;
}

.price-stack del {
  color: #e11d48;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-decoration-thickness: 3px;
  text-decoration-color: #be123c;
}

.price-card strong {
  display: block;
  color: var(--text);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}

.price-card p,
.payment-info-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.price-card-accent {
  border-color: rgba(11, 155, 216, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(93, 225, 220, 0.18)),
    rgba(255, 255, 255, 0.42);
}

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

.payment-info-grid article {
  padding: 24px;
}

.payment-info-grid h3 {
  font-size: 20px;
}

.payment-info-grid a {
  color: var(--deep-blue);
  font-weight: 800;
}

.sea-band {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, #eefaff 0%, #d9f7fb 10%, #8edfee 28%, #31afd1 52%, #2fb6d1 72%, #2a9db7 86%, #1c6579 100%);
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: clamp(92px, 11vw, 150px);
}

.sea-band::before {
  content: none;
}

.sea-band .eyebrow,
.sea-band .section-heading p,
.sea-band .step p {
  color: rgba(255, 255, 255, 0.76);
}

.sea-band .section-heading {
  max-width: 980px;
}

.sea-band .section-heading h2 {
  max-width: 980px;
  font-size: clamp(30px, 4.2vw, 48px);
}

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

.step {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 24px 56px rgba(3, 42, 63, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(140%);
}

.step:nth-child(3)::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 62%);
}

.step strong {
  display: block;
  margin-bottom: 28px;
  font-size: 48px;
}

.step p {
  font-size: 20px;
}

.cta-section {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, 640px) max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  width: min(100%, 1040px);
  margin: clamp(30px, 5vw, 58px) auto 0;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(28, 198, 218, 0.36), rgba(10, 148, 182, 0.22) 58%, rgba(255, 255, 255, 0.06)),
    rgba(8, 129, 160, 0.18);
  box-shadow:
    0 30px 78px rgba(3, 42, 63, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 34%, transparent 62%);
  pointer-events: none;
}

.cta-section::after {
  content: none;
}

.cta-section h2 {
  max-width: 640px;
}

.cta-section .button-primary,
.hero-actions .button-primary {
  min-height: 68px;
  padding: 0 36px;
  font-size: 19px;
}

.cta-section .button-primary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(6, 137, 187, 0.78), rgba(19, 199, 206, 0.68)),
    rgba(8, 129, 160, 0.32);
  box-shadow:
    0 18px 42px rgba(3, 42, 63, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.site-footer {
  background: linear-gradient(180deg, #1c6579 0%, #18576b 22%, #12475a 52%, #0e394c 78%, #0b3042 100%);
  padding-top: clamp(84px, 10vw, 140px);
}

.site-footer,
.site-footer a,
.site-footer button {
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a,
.footer-links button {
  padding: 0;
  font: inherit;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-links a {
  display: inline-block;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--aqua);
}

.legal-note {
  max-width: 1120px;
  margin: 24px 0 0;
  font-size: 13px;
}

.company-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.company-details a {
  font-weight: 700;
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(3, 24, 38, 0.58);
  backdrop-filter: blur(10px);
}

.legal-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: min(920px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  color: var(--text);
  border: 1px solid rgba(8, 35, 54, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(3, 24, 38, 0.35);
  transform: translate(-50%, -50%);
}

.legal-modal[hidden],
.modal-overlay[hidden] {
  display: none;
}

.legal-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--line);
}

.legal-modal-header h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.08;
}

.modal-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--deep-blue);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  border: 1px solid rgba(7, 89, 133, 0.16);
  border-radius: 8px;
  background: var(--mint);
  cursor: pointer;
}

.legal-modal-body {
  overflow: auto;
  padding: 22px 26px 28px;
}

.legal-modal-body h3 {
  margin: 22px 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.legal-modal-body h3:first-child {
  margin-top: 0;
}

.legal-modal-body p,
.legal-modal-body dd,
.legal-modal-body li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-modal-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-modal-body a {
  color: var(--deep-blue);
  font-weight: 700;
}

.requisites {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.requisites div {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.requisites dt {
  color: var(--text);
  font-weight: 800;
}

.requisites dd {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  bottom: 18px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 18px;
  color: var(--text);
  border: 1px solid rgba(7, 89, 133, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(7, 89, 133, 0.22);
  backdrop-filter: blur(14px);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  font: inherit;
  font-weight: 800;
  border: 0;
  border-radius: 8px;
  background: var(--deep-blue);
  cursor: pointer;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(36px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--bg);
}

.legal-page article {
  max-width: 900px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 89, 133, 0.08);
}

.legal-page h1 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.75;
}

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

@keyframes bars {
  0%, 100% { transform: scaleY(0.7); }
  50% { transform: scaleY(1); }
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 18px 38px rgba(4, 112, 158, 0.28);
  }
  45% {
    box-shadow:
      0 26px 52px rgba(4, 112, 158, 0.38),
      0 0 0 8px rgba(93, 225, 220, 0.16);
  }
  72% {
    box-shadow: 0 20px 42px rgba(4, 112, 158, 0.32);
  }
}

@keyframes ctaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes ctaShine {
  0%, 42% { transform: translateX(-86%) rotate(6deg); opacity: 0; }
  52% { opacity: 0.9; }
  72% { transform: translateX(86%) rotate(6deg); opacity: 0; }
  100% { transform: translateX(86%) rotate(6deg); opacity: 0; }
}

@keyframes floatNote {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-6deg); opacity: 0.34; }
  45% { transform: translate3d(10px, -18px, 0) rotate(7deg); opacity: 0.62; }
  72% { transform: translate3d(-8px, -7px, 0) rotate(2deg); opacity: 0.46; }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
    transform: none;
  }

  .record {
    width: min(82vw, 340px);
  }

  .wave-card {
    width: 210px;
    height: 94px;
  }

  .feature-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .footer-main,
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main p {
    max-width: 100%;
  }

  .footer-links {
    width: 100%;
    gap: 14px;
  }

  .footer-links a,
  .footer-links button {
    max-width: 100%;
    line-height: 1.35;
  }

  .cta-section {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
  }

  .requisites div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .nav {
    flex-wrap: wrap;
  }

  .eyebrow {
    font-size: 17px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
  }

  .button,
  .cta-section .button {
    width: 100%;
  }

  .payment-info-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-main p,
  .legal-note,
  .company-details {
    font-size: 15px;
    line-height: 1.6;
  }

  .footer-links {
    font-size: 15px;
  }

  .company-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
