:root {
  --ink: #172033;
  --ink-soft: #536078;
  --purple: #6b43e4;
  --purple-dark: #4d2bb9;
  --purple-pale: #f2edff;
  --yellow: #ffd74a;
  --yellow-pale: #fff8d7;
  --coral: #ff6d65;
  --coral-pale: #fff0ee;
  --blue: #2387f3;
  --blue-pale: #eaf5ff;
  --mint: #2dbf9f;
  --mint-pale: #e7fbf5;
  --pink: #ec5f9f;
  --pink-pale: #fff0f7;
  --orange: #f39127;
  --orange-pale: #fff3e4;
  --green: #38a85e;
  --green-pale: #eaf9ee;
  --white: #ffffff;
  --paper: #fbfcff;
  --line: #e7eaf1;
  --shadow-sm: 0 10px 28px rgba(43, 32, 86, 0.08);
  --shadow-md: 0 20px 55px rgba(43, 32, 86, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-rounded, "Arial Rounded MT Bold", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
select,
input {
  font: inherit;
}

button,
a,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
.brand,
.button,
.stat strong,
.package-card__count {
  letter-spacing: -0.025em;
}

h1,
h2,
h3 {
  line-height: 1.14;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 10.5vw, 4.9rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 3.45rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
  font-weight: 850;
}

p {
  color: var(--ink-soft);
}

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

.section {
  padding: 76px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.promo-bar {
  position: relative;
  z-index: 60;
  color: var(--white);
  background: var(--ink);
}

.promo-bar__inner {
  min-height: 42px;
  width: min(100% - 24px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.3;
}

.promo-bar__tag {
  display: none;
  padding: 3px 8px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.promo-bar__timer {
  min-width: 52px;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  font-size: 0.93rem;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  font-size: 1.08rem;
  font-weight: 950;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 11px 15px 10px 14px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-4deg);
}

.desktop-nav,
.button--header {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.locale-picker {
  position: relative;
}

.locale-picker::after {
  content: "⌄";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-54%);
  color: var(--ink-soft);
  font-size: 0.9rem;
  pointer-events: none;
}

.locale-picker select {
  width: 142px;
  min-height: 44px;
  padding: 0 28px 0 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  appearance: none;
  font-size: 0.78rem;
  font-weight: 760;
  cursor: pointer;
}

.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 12px 26px rgba(88, 52, 198, 0.32);
}

.button--primary:hover {
  box-shadow: 0 16px 34px rgba(88, 52, 198, 0.42);
}

.button--small {
  min-height: 44px;
  padding: 9px 16px;
  font-size: 0.9rem;
}

.button--wide {
  width: 100%;
  max-width: 430px;
  min-height: 58px;
  padding: 15px 22px;
  font-size: 1.02rem;
}

.button--light {
  color: var(--purple-dark);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(22, 15, 51, 0.2);
}

.hero {
  position: relative;
  padding: 58px 0 66px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 215, 74, 0.34), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(35, 135, 243, 0.18), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
}

.hero__blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.55;
}

.hero__blob--one {
  width: 140px;
  height: 140px;
  right: -60px;
  top: 9%;
  background: var(--yellow);
}

.hero__blob--two {
  width: 100px;
  height: 100px;
  left: -46px;
  bottom: 9%;
  background: #a994ff;
}

.hero__grid {
  display: grid;
  gap: 38px;
}

.eyebrow,
.section-kicker {
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--purple-dark);
  background: var(--purple-pale);
  border: 1px solid #ddd2ff;
  border-radius: 999px;
  font-size: 0.69rem;
  letter-spacing: 0.05em;
}

.hero h1 span {
  color: var(--purple);
  background: linear-gradient(transparent 72%, rgba(255, 215, 74, 0.82) 72%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero__lead {
  margin-bottom: 22px;
  font-size: 1.06rem;
  line-height: 1.66;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 720;
  line-height: 1.45;
}

.check-list li > span:first-child {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 950;
}

.hero__checks {
  margin-bottom: 26px;
}

.microcopy {
  max-width: 440px;
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero__trust {
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  border-top: 1px solid var(--line);
}

.hero__trust div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 760;
}

.hero-photo-wrap {
  position: relative;
  width: min(90%, 470px);
  margin-inline: auto;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -14px -16px 16px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 34px;
  transform: rotate(3deg);
}

.hero-photo-wrap img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: center 42%;
  border: 3px solid var(--ink);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.floating-badge {
  position: absolute;
  min-width: 112px;
  padding: 10px 13px;
  display: grid;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 6px 0 var(--ink);
  line-height: 1.1;
}

.floating-badge strong {
  color: var(--purple);
  font-size: 1.38rem;
  font-weight: 950;
}

.floating-badge span {
  margin-top: 4px;
  font-size: 0.69rem;
  font-weight: 800;
}

.floating-badge--top {
  top: 28px;
  right: -17px;
  transform: rotate(3deg);
}

.floating-badge--bottom {
  left: -16px;
  bottom: 38px;
  transform: rotate(-3deg);
}

.stats {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: var(--white);
  background: var(--ink);
}

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

.stat {
  min-height: 105px;
  padding: 20px 10px;
  display: grid;
  place-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat:nth-child(2n) {
  border-right: 0;
}

.stat:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stat strong {
  color: var(--yellow);
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
}

.stat span {
  margin-top: 7px;
  color: #d8deeb;
  font-size: 0.78rem;
  font-weight: 700;
}

.package-section {
  background: var(--white);
}

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

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--narrow {
  max-width: 680px;
}

.section-heading p,
.section-copy {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--purple);
}

.package-grid {
  display: grid;
  gap: 16px;
}

.package-card {
  position: relative;
  min-height: 250px;
  padding: 24px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.package-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -35px;
  bottom: -42px;
  border: 18px solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
}

.package-card--yellow { color: #9a6700; background: var(--yellow-pale); }
.package-card--blue { color: #1264b8; background: var(--blue-pale); }
.package-card--coral { color: #b83e39; background: var(--coral-pale); }
.package-card--mint { color: #0b826a; background: var(--mint-pale); }
.package-card--violet { color: #5d3fc3; background: var(--purple-pale); }
.package-card--pink { color: #b33470; background: var(--pink-pale); }
.package-card--orange { color: #a95d0d; background: var(--orange-pale); }
.package-card--green { color: #237b40; background: var(--green-pale); }

.package-card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.08);
  font-size: 1.55rem;
}

.package-card__count {
  position: absolute;
  right: 18px;
  top: 16px;
  color: currentColor;
  opacity: 0.2;
  font-size: 2rem;
  font-weight: 950;
}

.package-card h3 {
  color: var(--ink);
}

.package-card p {
  margin-bottom: 16px;
  font-size: 0.93rem;
  line-height: 1.58;
}

.package-card__pill {
  display: inline-flex;
  padding: 5px 10px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
}

.center-cta {
  margin-top: 34px;
  display: grid;
  justify-items: center;
}

.age-section {
  background:
    linear-gradient(135deg, rgba(107, 67, 228, 0.07), rgba(255, 215, 74, 0.1)),
    var(--paper);
}

.age-layout,
.how-layout {
  display: grid;
  gap: 42px;
  align-items: center;
}

.age-layout__visual,
.how-layout__visual {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
}

.age-layout__visual img,
.how-layout__visual img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.age-layout__visual img {
  object-position: center 42%;
}

.how-layout__visual img {
  object-position: center 48%;
}

.image-note,
.delivery-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(20, 19, 44, 0.2);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.image-note > span:first-child,
.delivery-card > span:first-child {
  font-size: 1.4rem;
}

.age-layout__content > h2,
.how-layout__content > h2 {
  margin-bottom: 16px;
}

.age-cards {
  margin-top: 28px;
  display: grid;
  gap: 13px;
}

.age-card {
  padding: 17px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.age-card__number {
  min-height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple);
  border-radius: 15px;
  font-size: 1.24rem;
  font-weight: 950;
}

.age-card:nth-child(2) .age-card__number { background: var(--blue); }
.age-card:nth-child(3) .age-card__number { background: var(--coral); }

.age-card h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.age-card p {
  margin-bottom: 0;
  font-size: 0.83rem;
  line-height: 1.48;
}

.benefits-section {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  gap: 16px;
}

.benefit-card {
  padding: 26px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.benefit-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 17px;
  box-shadow: var(--shadow-sm);
  font-size: 1.6rem;
}

.benefit-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.how-section {
  background: #f3f7ff;
}

.steps {
  margin-top: 26px;
  display: grid;
  gap: 22px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.step__number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--yellow);
  font-weight: 950;
}

.step h3 {
  margin: 2px 0 5px;
  font-size: 1.05rem;
}

.step p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.delivery-card {
  left: 16px;
  right: auto;
  min-width: 210px;
}

.delivery-card div {
  display: grid;
}

.delivery-card small {
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.guarantee-section {
  padding-top: 58px;
  padding-bottom: 58px;
  background: var(--white);
}

.guarantee-card {
  position: relative;
  padding: 34px 24px;
  display: grid;
  justify-items: center;
  gap: 22px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 215, 74, 0.32), transparent 22%),
    linear-gradient(135deg, #714de1, #45229f);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.guarantee-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -80px;
  border: 22px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.guarantee-card__seal {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  display: grid;
  place-content: center;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.15);
  line-height: 0.9;
}

.guarantee-card__seal span {
  font-size: 2.4rem;
  font-weight: 950;
}

.guarantee-card__seal small {
  margin-top: 7px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.guarantee-card__content {
  position: relative;
  z-index: 1;
}

.guarantee-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 6vw, 2.7rem);
}

.guarantee-card p {
  max-width: 690px;
  margin: 0;
  color: #eee9ff;
}

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

.guarantee-card .button {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 330px;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  gap: 28px;
}

.faq-intro p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(43, 32, 86, 0.04);
}

.faq-list summary {
  position: relative;
  min-height: 60px;
  padding: 17px 52px 17px 18px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--purple);
  background: var(--purple-pale);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 20px;
  font-size: 0.9rem;
}

.final-cta {
  padding: 74px 0 86px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 215, 74, 0.24), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(255, 109, 101, 0.2), transparent 26%),
    #f0ebff;
}

.final-cta__inner {
  max-width: 760px;
}

.final-cta__stars {
  margin-bottom: 14px;
  color: #efa900;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}

.final-cta p {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.02rem;
}

.final-cta .button {
  margin-top: 10px;
}

.final-cta__notes {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 15px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 760;
}

.site-footer {
  padding: 42px 0 104px;
  color: #e7eaf2;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.brand--footer {
  color: var(--white);
}

.site-footer p {
  max-width: 480px;
  margin: 0;
  color: #aeb8c9;
  font-size: 0.86rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}

.site-footer button {
  padding: 4px;
  color: #d9ddeb;
  background: transparent;
  border: 0;
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.site-footer small {
  color: #8d98ab;
  font-size: 0.72rem;
}

.mobile-buy-bar {
  position: fixed;
  z-index: 55;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  min-height: 66px;
  padding: 8px 8px 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(20, 19, 44, 0.24);
  backdrop-filter: blur(14px);
}

.mobile-buy-bar > div {
  display: grid;
  line-height: 1.2;
}

.mobile-buy-bar small {
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 850;
}

.mobile-buy-bar strong {
  font-size: 0.83rem;
}

.mobile-buy-bar .button {
  min-height: 48px;
  padding: 10px 14px;
  flex: 0 0 auto;
  font-size: 0.8rem;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 16px;
  right: 16px;
  bottom: 92px;
  max-width: 520px;
  margin-inline: auto;
  padding: 13px 16px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 760;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-dialog {
  width: min(92vw, 620px);
  max-height: min(82vh, 720px);
  padding: 32px 24px 26px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 26px 90px rgba(20, 19, 44, 0.38);
  overflow-y: auto;
}

.info-dialog::backdrop {
  background: rgba(15, 18, 33, 0.68);
  backdrop-filter: blur(4px);
}

.info-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.info-dialog h2 {
  padding-right: 36px;
  font-size: 1.7rem;
}

.info-dialog p,
.info-dialog li {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.info-dialog ul {
  padding-left: 22px;
}

@media (min-width: 520px) {
  .promo-bar__tag {
    display: inline-flex;
  }

  .locale-picker select {
    width: 192px;
    font-size: 0.82rem;
  }

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

  .mobile-buy-bar .button {
    padding-inline: 20px;
    font-size: 0.9rem;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 96px 0;
  }

  .hero {
    padding: 76px 0 84px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
    gap: 64px;
    align-items: center;
  }

  .hero__visual {
    order: 2;
  }

  .hero-photo-wrap {
    width: min(100%, 475px);
  }

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

  .stat {
    min-height: 118px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .stat:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat:last-child {
    border-right: 0;
  }

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

  .age-layout,
  .how-layout {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    gap: 72px;
  }

  .how-layout__content {
    order: 1;
  }

  .how-layout__visual {
    order: 2;
  }

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

  .guarantee-card {
    padding: 42px;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    gap: 26px;
    text-align: left;
  }

  .guarantee-card .button {
    grid-column: 2;
    width: auto;
  }

  .faq-layout {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 76px;
    align-items: start;
  }

  .faq-intro {
    position: sticky;
    top: 120px;
  }

  .site-footer {
    padding-bottom: 42px;
  }

  .mobile-buy-bar {
    display: none;
  }

  .toast {
    bottom: 28px;
  }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .desktop-nav a {
    color: var(--ink-soft);
    font-size: 0.84rem;
    font-weight: 760;
    text-decoration: none;
  }

  .desktop-nav a:hover {
    color: var(--purple);
  }

  .button--header {
    display: inline-flex;
  }

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

  .package-card {
    min-height: 275px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .promo-bar,
  .site-header,
  .mobile-buy-bar,
  .button,
  .site-footer {
    display: none !important;
  }

  body {
    background: var(--white);
  }

  .section,
  .hero,
  .final-cta {
    padding: 30px 0;
  }
}
