:root {
  --bg: #070913;
  --bg-soft: #121524;
  --bg-card: #171a2a;
  --bg-card-2: #1d2034;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f7f6fb;
  --muted: #b9bfd1;
  --lime: #e4fb53;
  --lime-2: #d6f736;
  --purple: #8755ff;
  --purple-2: #6f3cff;
  --pink: #ff77d7;
  --cyan: #8ee8ff;
  --yellow: #ffe56f;
  --danger: #ffa6bb;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1240px;
  --font-display: "Arial Rounded MT Bold", "Avenir Next", "Trebuchet MS", sans-serif;
  --font-body: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --fs-caption: 14px;
  --fs-body-sm: 15px;
  --fs-body-md: 17px;
  --fs-body-lg: 18px;
  --fs-body-xl: 19px;
  --fs-lead: 24px;
  --fs-title-xs: 23px;
  --fs-title-sm: 27px;
  --fs-title-md: 30px;
  --fs-title-lg: 34px;
  --fs-title-section: clamp(34px, 3vw, 54px);
  --fs-title-display: clamp(52px, 5vw, 78px);
  --fs-title-price: clamp(44px, 4vw, 72px);
  --fs-title-display-mobile: 46px;
  --fs-title-banner-mobile: 26px;
  --lh-display: 0.95;
  --lh-heading: 1.05;
  --lh-title: 1.2;
  --lh-body: 1.35;
  --lh-body-relaxed: 1.45;
  --lh-prose: 1.55;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(135, 85, 255, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(228, 251, 83, 0.07), transparent 18%),
    linear-gradient(180deg, #05070f 0%, #0b0e17 48%, #070913 100%);
  color: var(--text);
  font-family: var(--font-body);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

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

main > section.container:not(.hero):not(#about) {
  margin-top: 60px;
}

main > section.container:not(.hero):not(#about) > .section-title:first-child {
  margin-top: 0;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.bg-glow--left {
  width: 420px;
  height: 420px;
  top: 110px;
  left: -140px;
  background: rgba(98, 56, 255, 0.22);
}

.bg-glow--right {
  width: 460px;
  height: 460px;
  top: 80px;
  right: -120px;
  background: rgba(224, 81, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 12px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: var(--fs-lead);
  font-weight: 700;
}

.brand__mark {
  position: relative;
  width: 46px;
  height: 34px;
  border: 2px solid rgba(228, 251, 83, 0.8);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(228, 251, 83, 0.08), rgba(228, 251, 83, 0.01));
  box-shadow: inset 0 0 14px rgba(228, 251, 83, 0.12);
}

.brand__mark::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(228, 251, 83, 0.8);
  border-radius: 50%;
  transform: translateX(-50%);
}

.brand__mark::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 18px;
  height: 2px;
  background: rgba(228, 251, 83, 0.8);
  transform: translateX(-50%);
}

.brand__eye {
  position: absolute;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(228, 251, 83, 0.8);
}

.brand__eye:first-child {
  left: 12px;
}

.brand__eye:last-child {
  right: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav__link {
  color: rgba(247, 246, 251, 0.86);
  font-size: var(--fs-body-sm);
  transition: color 0.2s ease;
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
  color: #9e77ff;
}

.main-nav__link:focus-visible {
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  border-radius: 24px;
  background: var(--lime);
  color: #101318;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(228, 251, 83, 0.18);
}

.header-cta__icon {
  font-size: 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  padding: 32px 0 0;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: #9e77ff;
  font-size: var(--fs-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-title-display);
  line-height: var(--lh-display);
  letter-spacing: -0.03em;
}

.hero__title-highlight {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  color: var(--lime);
}

.hero__title-highlight::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -10px;
  bottom: -12px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e4fb53, #caef1d);
  transform: rotate(-2deg);
}

.hero__heart {
  color: #9e77ff;
  font-size: 0.8em;
}

.hero__text {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: var(--lh-body-relaxed);
}

.hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 22px;
  border: 2px solid transparent;
  font-size: var(--fs-body-lg);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--lime);
  color: #11131a;
  box-shadow: 0 18px 34px rgba(228, 251, 83, 0.18);
}

.btn--outline {
  border-color: rgba(228, 251, 83, 0.85);
  background: rgba(14, 16, 24, 0.55);
}

.btn--outline-dark {
  border-color: rgba(17, 19, 26, 0.45);
  color: #11131a;
  background: rgba(255, 255, 255, 0.18);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.btn--small {
  min-height: 56px;
  padding: 0 28px;
  font-size: var(--fs-body-md);
}

.hero__meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 246, 251, 0.92);
  font-size: var(--fs-body-md);
}

.meta-pill__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(228, 251, 83, 0.45);
  color: var(--lime);
}

.hero__visual {
  position: relative;
  min-height: 628px;
  align-self: end;
}

.hero-card {
  position: absolute;
}

.hero-card--phone {
  left: 24px;
  bottom: -28px;
  width: 354px;
}

.hero-phone-image {
  width: 100%;
  height: auto;
}

.hero-card--teen {
  right: -2px;
  bottom: -28px;
  width: 384px;
}

.hero-teen-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
}

.decor {
  position: absolute;
  display: block;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.decor--hero-heart {
  top: 174px;
  left: 10px;
  width: 176px;
  height: 164px;
  background-image: url("./assets/decor/heart.png");
}

.decor--hero-crown {
  top: 40px;
  right: 14px;
  width: 172px;
  height: 130px;
  background-image: url("./assets/decor/crown.png");
  transform: rotate(5deg);
}

.decor--hero-star-purple {
  top: 408px;
  left: 28px;
  width: 132px;
  height: 144px;
  background-image: url("./assets/decor/star_purple.png");
}

.decor--hero-mini-heart {
  top: 154px;
  right: 246px;
  width: 78px;
  height: 88px;
  background-image: url("./assets/decor/heart_pink.png");
}

.decor--tape-purple {
  top: 22px;
  left: -16px;
  width: 132px;
  height: 72px;
  background-image: url("./assets/decor/tape_purple.png");
  transform: rotate(-26deg);
}

.decor--tape-yellow {
  top: 24px;
  right: -8px;
  width: 126px;
  height: 66px;
  background-image: url("./assets/decor/tape_yellow.png");
  transform: rotate(14deg);
}

.panel {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(29, 32, 52, 0.94), rgba(17, 20, 34, 0.94));
  box-shadow: var(--shadow);
}

.panel--wide {
  margin-top: 28px;
  padding-inline: 40px;
}

.panel--tall {
  min-height: 560px;
}

.panel--faq {
  min-height: 0;
  margin-top: 18px;
  padding: 18px 18px 16px;
}

.section-title {
  margin: 0 0 38px;
  font-family: var(--font-display);
  font-size: var(--fs-title-section);
  line-height: var(--lh-heading);
  text-align: center;
}

.panel--faq .section-title {
  margin-bottom: 16px;
}

.section-title--lined {
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title__accent {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}

.section-title__accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -34px;
  width: calc(100% + 30px);
  height: 42px;
  background: url("./assets/decor/Line_red.png") left center / 100% 100% no-repeat;
}

.split-grid .section-title--lined {
  width: auto;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.how-grid__arrow {
  color: var(--yellow);
  font-size: 54px;
  text-align: center;
}

.how-card {
  position: relative;
  min-height: 178px;
  padding: 28px 26px 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(166, 122, 255, 0.86), rgba(213, 166, 255, 0.9));
  color: #18151f;
}

.how-card__step {
  position: absolute;
  top: -16px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e7dcff;
  font-weight: 700;
}

.how-card__step--blue {
  background: #9ceeff;
}

.how-card__step--lime {
  background: var(--lime);
}

.how-card__icon {
  margin-bottom: 14px;
  font-size: 42px;
}

.howworks-card__icon {
  width: 72px;
  height: 72px;
}

.how-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: var(--fs-title-sm);
  line-height: var(--lh-heading);
}

.how-card__text {
  margin: 0;
  font-size: var(--fs-body-md);
  line-height: var(--lh-body);
}

.trust-grid,
.topics-grid {
  display: grid;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(31, 35, 58, 0.94), rgba(19, 22, 37, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 22px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), rgba(135, 85, 255, 0.08));
}

.info-card__icon img,
.feature-list__icon img,
.topic-card__icon img,
.process-step__icon img {
  width: 72%;
  height: auto;
}

.info-card__title {
  margin: 0 0 10px;
  color: #c6a8ff;
  font-size: var(--fs-title-xs);
}

.info-card__text {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body-md);
  line-height: var(--lh-body-relaxed);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.audience-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1fr;
  min-height: 340px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.audience-card--violet {
  background: linear-gradient(135deg, #6946f1 0%, #8d68ff 44%, #6449c4 100%);
}

.audience-card--lime {
  background: linear-gradient(135deg, #dff65c 0%, #ebff78 48%, #d8f244 100%);
  color: #17181d;
}

.audience-card__media {
  position: relative;
  overflow: visible;
  min-height: 100%;
}

.audience-card__image {
  position: absolute;
  bottom: -14px;
  max-width: none;
  height: 118%;
  width: auto;
  object-fit: contain;
}

.audience-card__image--teen {
  left: -32px;
}

.audience-card__image--psych {
  left: -6px;
}

.audience-card__body {
  position: relative;
  z-index: 1;
  padding: 34px 30px 32px 16px;
}

.audience-card__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: var(--fs-title-lg);
}

.audience-card__title--dark {
  color: #1b1d23;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #ecfc8b;
  font-weight: 700;
}

.check-list--dark li::before {
  color: #24262e;
}

.topics-grid {
  grid-template-columns: repeat(7, 1fr);
}

.topic-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 22px 14px;
  min-height: 158px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(27, 31, 50, 0.96), rgba(19, 22, 37, 0.96));
  font-size: var(--fs-body-md);
  line-height: var(--lh-body);
  text-align: center;
}

.topic-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), rgba(135, 85, 255, 0.1));
}

.split-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 20px;
  margin-top: 16px;
}

.panel__lead {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-body-xl);
  line-height: var(--lh-prose);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 34px;
}

.process-row__arrow {
  display: none;
}

.process-step {
  position: relative;
  padding-top: 92px;
  text-align: center;
}

.process-step::after {
  content: "→";
  position: absolute;
  top: 30px;
  right: -24px;
  color: white;
  font-size: 34px;
  opacity: 0.8;
}

.process-step:last-child::after {
  display: none;
}

.process-step__icon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: var(--fs-body-lg);
}

.process-step span {
  color: var(--muted);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.notice-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(157, 157, 74, 0.45), rgba(165, 169, 106, 0.4));
  color: #f7f8de;
}

.notice-pill__icon {
  font-size: 28px;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin: 10px 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-relaxed);
}

.feature-list__icon {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 119, 215, 0.12);
}

.price-box {
  margin-top: auto;
  padding-top: 22px;
}

.price-box__caption {
  display: block;
  margin-bottom: 16px;
  color: rgba(247, 246, 251, 0.88);
  font-size: var(--fs-body-lg);
}

.price-box__value {
  color: #9863ff;
  font-family: var(--font-display);
  font-size: var(--fs-title-price);
  line-height: var(--lh-display);
}

.panel--price {
  overflow: hidden;
}

.decor--price-smile {
  top: auto;
  right: 10px;
  bottom: 10px;
  width: 364px;
  height: 302px;
  background-image: url("./assets/decor/smile.png");
}

.decor--price-crown {
  right: 44px;
  bottom: 82px;
  width: 84px;
  height: 96px;
  background-image: url("./assets/decor/crown_i.png");
  transform: rotate(8deg);
}

.alert-banner {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: 10px 24px 10px 14px;
  border-radius: 24px;
  background: linear-gradient(90deg, #f687a7 0%, #ff9fb7 40%, #ffb6c7 100%);
  color: #1e1018;
  box-shadow: var(--shadow);
  overflow: visible;
}

.alert-banner__icon {
  position: relative;
  width: 170px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.alert-banner__icon-image {
  width: 216px;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 10px 18px rgba(30, 16, 24, 0.24));
  transform: translate(-18px, -4px);
}

.alert-banner__body {
  max-width: 560px;
}

.alert-banner__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: var(--fs-title-md);
  line-height: var(--lh-heading);
}

.alert-banner__text {
  margin: 0;
  max-width: 560px;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.alert-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 312px;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 20px rgba(30, 16, 24, 0.12);
  font-size: var(--fs-body-sm);
  font-weight: 700;
}

.alert-banner__button::after {
  content: "☎";
  font-size: 20px;
  line-height: 1;
}

.decor--banner-brush-left {
  left: -14px;
  bottom: 0;
  width: 88px;
  height: 60px;
  background-image: url("./assets/decor/tape_purple.png");
  transform: rotate(-34deg);
  opacity: 0.96;
}

.decor--banner-brush-right {
  right: 18px;
  top: 18px;
  width: 70px;
  height: 28px;
  background-image: url("./assets/decor/spark.png");
  transform: rotate(8deg);
  opacity: 0.96;
}

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

.faq-item {
  min-height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(14, 16, 24, 0.4);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(228, 251, 83, 0.26);
  background: rgba(20, 24, 34, 0.68);
}

.faq-item__toggle {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item__toggle::after {
  content: "▾";
  flex: 0 0 auto;
  color: var(--muted);
  font-size: var(--fs-body-sm);
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item.is-open .faq-item__toggle::after {
  transform: rotate(180deg);
  color: var(--lime);
}

.faq-item__text {
  display: block;
  max-width: 100%;
}

.faq-item__text--question {
  font-size: var(--fs-caption);
  line-height: var(--lh-title);
  font-weight: 600;
}

.faq-item__text--answer {
  display: none;
  color: var(--muted);
  font-size: var(--fs-caption);
  line-height: var(--lh-title);
}

.faq-item.is-open .faq-item__text--question {
  display: none;
}

.faq-item.is-open .faq-item__text--answer {
  display: block;
}

.faq-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--lime);
  font-size: var(--fs-body-sm);
  font-weight: 700;
}

.cta-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  margin-top: 20px;
  padding: 16px 186px 16px 30px;
  border-radius: 24px;
  background: linear-gradient(90deg, #5e35f6 0%, #7147ff 42%, #6940ea 100%);
  box-shadow: var(--shadow);
  overflow: visible;
}

.cta-ribbon__copy,
.cta-ribbon__actions {
  position: relative;
  z-index: 1;
}

.cta-ribbon__copy {
  max-width: 560px;
}

.cta-ribbon__title {
  max-width: 640px;
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: var(--fs-title-sm);
  line-height: var(--lh-heading);
}

.cta-ribbon__text {
  margin: 0;
  color: rgba(247, 246, 251, 0.84);
  font-size: var(--fs-caption);
  line-height: var(--lh-body);
}

.cta-ribbon__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-right: 26px;
}

.cta-ribbon__actions .btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: var(--fs-body-sm);
}

.cta-ribbon__bot {
  position: absolute;
  right: -6px;
  bottom: -10px;
  width: 212px;
  pointer-events: none;
}

.cta-ribbon__bot-image {
  width: 100%;
  height: auto;
}

.decor--cta-star {
  right: -6px;
  bottom: -12px;
  width: 40px;
  height: 44px;
  background-image: url("./assets/decor/stars.png");
  opacity: 0.72;
}

.decor--cta-swoosh {
  right: 124px;
  bottom: 10px;
  width: 52px;
  height: 16px;
  background-image: url("./assets/decor/tape_purple.png");
  opacity: 0.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0 48px;
}

.brand--footer {
  font-size: 22px;
}

.site-footer__note {
  max-width: 340px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-prose);
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: rgba(247, 246, 251, 0.95);
  font-size: var(--fs-body-md);
}

.footer-col a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: var(--fs-body-sm);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: var(--fs-caption);
  text-align: center;
}

@media (max-width: 1220px) {
  .main-nav {
    gap: 20px;
  }

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

  .hero__visual {
    display: none;
  }

  .trust-grid,
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .site-footer,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .cta-ribbon {
    padding-right: 240px;
  }
}

@media (max-width: 980px) {
  main > section.container:not(.hero):not(#about) {
    margin-top: 52px;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .how-grid__arrow {
    transform: rotate(90deg);
  }

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

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

  .alert-banner,
  .cta-ribbon {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .alert-banner__button,
  .cta-ribbon__actions {
    justify-self: center;
  }

  .decor--price-smile {
    top: auto;
    right: -36px;
    bottom: -8px;
  }

  .cta-ribbon {
    padding: 28px 28px 170px;
  }

  .cta-ribbon__bot {
    right: 50%;
    bottom: -30px;
    width: 220px;
    transform: translateX(50%);
  }

  .cta-ribbon__title {
    max-width: none;
  }
}

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

  main > section.container:not(.hero):not(#about) {
    margin-top: 40px;
  }

  .site-header {
    gap: 14px;
    padding-top: 18px;
  }

  .main-nav {
    gap: 14px 18px;
  }

  .main-nav__link {
    font-size: var(--fs-caption);
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .hero {
    gap: 18px;
    padding-top: 16px;
  }

  .hero__title {
    font-size: var(--fs-title-display-mobile);
  }

  .hero__text {
    font-size: var(--fs-body-lg);
  }

  .hero__actions {
    flex-direction: column;
  }

  .decor--hero-heart,
  .decor--hero-mini-heart {
    display: none;
  }

  .decor--hero-crown {
    top: 0;
    right: 2px;
    width: 104px;
    height: 86px;
  }

  .decor--price-smile {
    top: auto;
    right: -82px;
    bottom: -6px;
  }

  .decor--hero-star-purple {
    top: 188px;
    left: -8px;
    width: 90px;
    height: 100px;
  }

  .panel,
  .panel--wide {
    padding: 24px 20px;
  }

  .panel--wide {
    margin-top: 22px;
  }

  .section-title {
    margin-bottom: 28px;
    padding-bottom: 24px;
    font-size: var(--fs-title-lg);
    line-height: var(--lh-heading);
  }

  .section-title__accent {
    padding-bottom: 0;
  }

  .section-title__accent::after {
    bottom: -22px;
    width: calc(100% + 20px);
    height: 22px;
  }

  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .topics-grid .topic-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 220px;
  }

  .how-card,
  .info-card {
    min-height: 0;
    padding: 16px 16px 14px;
  }

  .how-card__icon,
  .info-card__icon {
    margin: 0;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
  }

  .howworks-card__icon {
    width: 44px;
    height: 44px;
  }

  .how-card__title,
  .info-card__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .how-card,
  .info-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 4px;
    align-items: start;
  }

  .how-card__icon,
  .info-card__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .how-card__text,
  .info-card__text {
    grid-column: 2;
    grid-row: 2;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
  }

  .how-card__step {
    top: -10px;
    left: -6px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .audience-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .audience-card__media {
    display: none;
  }

  .audience-card__body {
    padding: 18px 20px 20px;
  }

  .topic-card {
    min-height: 118px;
    gap: 10px;
    padding: 16px 10px;
    font-size: 15px;
  }

  .topic-card__icon {
    width: 52px;
    height: 52px;
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding-top: 84px;
  }

  .process-step::after {
    display: none;
  }

  .feature-list li,
  .notice-pill,
  .alert-banner {
    align-items: flex-start;
  }

  .alert-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px 18px;
    text-align: left;
  }

  .alert-banner__icon {
    width: 110px;
    height: 86px;
  }

  .alert-banner__icon-image {
    width: 154px;
    transform: translate(-8px, -6px);
  }

  .alert-banner__title {
    font-size: var(--fs-title-banner-mobile);
  }

  .alert-banner__button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .faq-item,
  .faq-item__toggle {
    min-height: 72px;
  }

  .faq-item__toggle {
    padding: 8px 10px;
  }

  .cta-ribbon {
    gap: 18px;
    padding: 18px 18px 84px;
    min-height: 0;
    text-align: left;
  }

  .cta-ribbon__title {
    font-size: var(--fs-title-lg);
  }

  .cta-ribbon__text {
    font-size: var(--fs-body-lg);
  }

  .cta-ribbon__actions {
    width: 100%;
    flex-direction: column;
    justify-self: stretch;
  }

  .cta-ribbon__actions .btn {
    width: 100%;
  }

  .cta-ribbon__bot {
    right: -12px;
    bottom: -18px;
    width: 152px;
    transform: none;
  }

  .decor--cta-star,
  .decor--cta-swoosh,
  .decor--banner-brush-left,
  .decor--banner-brush-right,
  .decor--price-smile,
  .decor--price-crown {
    opacity: 0.32;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }
}
