:root {
  --blue: #25b7ff;
  --blue-deep: #0579bd;
  --blue-ink: #0d4b7a;
  --pink: #ff4fa8;
  --pink-deep: #e93491;
  --pink-soft: #fff0f8;
  --aqua: #65d9d0;
  --ink: #152033;
  --ink-2: #26364e;
  --muted: #647187;
  --line: #dcebf7;
  --surface: #ffffff;
  --surface-blue: #f2fbff;
  --surface-pink: #fff5fb;
  --shadow-soft: 0 18px 44px rgba(17, 83, 126, 0.1);
  --shadow-strong: 0 32px 80px rgba(17, 83, 126, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 235, 247, 0.85);
  display: flex;
  gap: 28px;
  inset: 0 0 auto;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand,
.header-actions,
.nav,
.hero-actions,
.contact-row {
  align-items: center;
  display: flex;
}

.brand {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  gap: 11px;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(255, 79, 168, 0.24);
  color: #ffffff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.nav {
  color: #3d4e68;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.contact-row a {
  transition: color 180ms ease;
}

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

.header-actions {
  gap: 10px;
}

.primary-button,
.round-action,
.icon-link {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-weight: 900;
  justify-content: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(255, 79, 168, 0.3);
  color: #ffffff;
  font-size: 15px;
  min-height: 54px;
  padding: 0 26px;
}

.primary-button:hover,
.round-action:hover,
.icon-link:hover {
  box-shadow: 0 18px 42px rgba(37, 183, 255, 0.18);
  transform: translateY(-2px);
}

.primary-button.small {
  font-size: 13px;
  min-height: 42px;
  padding: 0 18px;
}

.icon-link,
.round-action {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-deep);
  height: 42px;
  width: 42px;
}

.round-action {
  height: 54px;
  width: 54px;
}

.telegram {
  color: #159bd8;
}

.hero {
  min-height: calc(100svh - 76px);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 30%, rgba(255, 255, 255, 0.48) 49%, rgba(255, 255, 255, 0) 70%),
    url("assets/hero-cotton-candy-machine.png") right center / cover no-repeat;
  inset: 0;
  position: absolute;
}

.hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  bottom: 0;
  content: "";
  height: 136px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-content {
  display: grid;
  gap: 42px;
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100svh - 76px);
  padding: 104px 24px 48px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.97;
  margin: 0;
  max-width: 780px;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--pink);
}

.hero-copy p {
  color: #31445f;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.48;
  margin: 28px 0 0;
  max-width: 640px;
}

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

.hero-stats {
  align-self: end;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
}

.hero-stats article {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 235, 247, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.hero-stats article:first-child {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 248, 0.92));
  border-color: rgba(255, 79, 168, 0.26);
}

.hero-stats strong {
  color: var(--blue-deep);
  display: block;
  font-size: clamp(24px, 2.35vw, 32px);
  line-height: 1.05;
  white-space: nowrap;
}

.hero-stats article:first-child strong {
  color: var(--pink-deep);
}

.hero-stats span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.42;
  margin-top: 9px;
}

.section {
  padding: clamp(76px, 9vw, 124px) 24px;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.split {
  align-items: start;
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

h3 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.section p,
.problem p,
.product-copy p,
.lead-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.72;
  margin: 0;
}

.problem {
  background: linear-gradient(135deg, #f5fbff 0%, #fff5fb 100%);
  border-top: 1px solid rgba(220, 235, 247, 0.7);
}

.problem .split {
  align-items: center;
}

.problem p {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 235, 247, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 38px);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 42px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 450px;
}

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

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(21, 32, 51, 0.06);
  min-height: 224px;
  padding: 26px;
  position: relative;
}

.benefit-card::before {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  content: "";
  height: 3px;
  left: 26px;
  position: absolute;
  right: 26px;
  top: 0;
}

.benefit-card.wide {
  background: linear-gradient(135deg, #ffffff 0%, #fff4fb 100%);
  grid-column: span 2;
}

.benefit-icon {
  align-items: center;
  background: #f4fbff;
  border: 1px solid rgba(37, 183, 255, 0.2);
  border-radius: var(--radius);
  color: var(--blue-deep);
  display: inline-flex;
  font-size: 21px;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  margin-bottom: 24px;
  min-width: 52px;
  padding: 0 10px;
}

.benefit-card:nth-child(even) .benefit-icon {
  background: var(--pink-soft);
  border-color: rgba(255, 79, 168, 0.2);
  color: var(--pink-deep);
}

.benefit-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
  margin: 14px 0 0;
}

.product {
  background: linear-gradient(180deg, var(--surface-blue) 0%, #ffffff 100%);
}

.product-layout {
  align-items: center;
  display: grid;
  gap: clamp(42px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.product-media {
  background: #ffffff;
  border: 1px solid rgba(220, 235, 247, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  padding: 10px;
}

.product-media img {
  aspect-ratio: 1.22 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.product-copy p {
  margin-top: 24px;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
}

.spec-list div {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: 152px 1fr;
  padding: 18px 20px;
}

.spec-list dt {
  color: var(--blue-deep);
  font-weight: 900;
}

.spec-list dd {
  color: #46566f;
  font-weight: 800;
  margin: 0;
}

.finance {
  background: #ffffff;
}

.finance-top {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.finance-top p {
  margin-top: 16px;
}

.payback {
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(21, 32, 51, 0.14);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  padding: 20px 24px;
  white-space: nowrap;
}

.finance-board {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 183, 255, 0.7), rgba(255, 79, 168, 0.7)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  padding: clamp(22px, 4vw, 42px);
}

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

.finance-cards article {
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.finance-cards .profit {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border: 0;
  color: #ffffff;
}

.finance-cards span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.finance-cards strong {
  display: block;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.04;
  margin-top: 14px;
}

.finance-cards p {
  color: #58667d;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
  margin: 10px 0 0;
}

.finance-cards .profit span,
.finance-cards .profit p {
  color: rgba(255, 255, 255, 0.86);
}

.finance-note {
  background: linear-gradient(135deg, #fff6fb, #f3fbff);
  border: 1px solid rgba(255, 79, 168, 0.18);
  border-left: 5px solid var(--pink);
  border-radius: var(--radius);
  color: #34455f;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
  margin-top: 24px;
  padding: 20px 22px;
}

.audience {
  background: linear-gradient(135deg, #fff6fb 0%, #f0faff 100%);
}

.audience h2 {
  max-width: 720px;
}

.audience-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.audience-list article {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 235, 247, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(21, 32, 51, 0.055);
  padding: 24px;
}

.audience-list span {
  color: var(--pink-deep);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 30px;
}

.audience-list p {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.support {
  background: #ffffff;
}

.support .split {
  align-items: center;
}

.support-grid {
  display: grid;
  gap: 14px;
}

.support-grid article {
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f7fcff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.055);
  display: flex;
  gap: 16px;
  padding: 24px;
}

.support-grid svg {
  color: var(--pink);
  font-size: 34px;
}

.support-grid strong {
  font-size: 21px;
  font-weight: 900;
}

.trust {
  background: linear-gradient(135deg, #111c30 0%, #173a61 100%);
  color: #ffffff;
}

.trust h2 {
  color: #ffffff;
  max-width: 620px;
}

.testimonial-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}

figure {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  margin: 0;
  padding: 32px;
}

blockquote {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.24;
  margin: 0;
}

figcaption {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  margin-top: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(21, 32, 51, 0.04);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font-family: inherit;
  gap: 0;
  padding: 24px;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover {
  border-color: rgba(37, 183, 255, 0.42);
}

.faq-item span {
  font-size: 20px;
  font-weight: 900;
}

.faq-item strong {
  color: var(--muted);
  display: grid;
  font-size: 0;
  font-weight: 750;
  line-height: 1.6;
  opacity: 0;
  padding-top: 0;
  transition: font-size 180ms ease, opacity 180ms ease, padding-top 180ms ease;
}

.faq-item[aria-expanded="true"] {
  background: #f5fbff;
  border-color: rgba(37, 183, 255, 0.38);
  box-shadow: 0 16px 34px rgba(37, 183, 255, 0.09);
}

.faq-item[aria-expanded="true"] strong {
  font-size: 17px;
  opacity: 1;
  padding-top: 14px;
}

.final-cta {
  background: linear-gradient(135deg, #24b6ff 0%, #827be6 48%, #ff4fa8 100%);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.final-cta::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  content: "";
  height: 1px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.lead-layout {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
}

.lead-copy h2 {
  color: #ffffff;
}

.lead-copy p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  max-width: 630px;
}

.contact-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-row a {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  color: #ffffff;
  font-weight: 900;
  padding: 15px 17px;
}

.lead-form {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(21, 32, 51, 0.24);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 28px;
}

.lead-form label {
  color: #34445f;
  display: grid;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
}

.lead-form input {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: 800 16px/1 "Manrope", Arial, sans-serif;
  height: 54px;
  outline: 0;
  padding: 0 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 183, 255, 0.16);
}

.lead-form .primary-button {
  width: 100%;
}

.form-status {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
  min-height: 20px;
  margin: 0;
}

.site-footer {
  background: #0e1727;
  color: rgba(255, 255, 255, 0.75);
  padding: 30px 24px;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.site-footer strong {
  color: #ffffff;
}

.site-footer p {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  margin: 6px 0 0;
}

@media (max-width: 980px) {
  .site-header {
    gap: 16px;
  }

  .nav {
    display: none;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 0.46) 100%),
      url("assets/hero-cotton-candy-machine.png") center bottom / cover no-repeat;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-stats,
  .split,
  .product-layout,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .finance-top,
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .benefit-grid,
  .audience-list,
  .finance-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card.wide {
    grid-column: span 2;
  }

  .payback {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 0 14px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    height: 32px;
    width: 32px;
  }

  .header-actions .primary-button {
    display: none;
  }

  .icon-link {
    height: 38px;
    width: 38px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 34%, rgba(255, 255, 255, 0.58) 100%),
      url("assets/hero-cotton-candy-machine.png") 58% bottom / auto 58% no-repeat,
      linear-gradient(135deg, #f2fbff, #fff3fa);
  }

  .hero-content {
    gap: 212px;
    min-height: 790px;
    padding: 48px 18px 28px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-stats,
  .benefit-grid,
  .audience-list,
  .finance-cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats article,
  .benefit-card,
  .finance-cards article,
  .audience-list article,
  figure,
  .lead-form {
    padding: 20px;
  }

  .benefit-card.wide {
    grid-column: auto;
  }

  .section {
    padding: 68px 18px;
  }

  .spec-list div {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .finance-note {
    font-size: 17px;
  }

  .contact-row a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
