:root {
  --blue-950: #092252;
  --blue-900: #103a91;
  --blue-700: #1264f4;
  --blue-600: #1685ff;
  --blue-100: #eaf3ff;
  --blue-50: #f5f9ff;
  --yellow: #ffd829;
  --yellow-deep: #edaa00;
  --green: #27c96f;
  --green-deep: #128b4a;
  --ink: #172849;
  --muted: #60708d;
  --line: #dbe7f5;
  --white: #fff;
  --shadow: 0 24px 70px rgba(24, 75, 155, .13);
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(46, 91, 157, .12);
  background: rgba(247, 250, 255, .95);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand strong {
  color: #1758c8;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: .025em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.desktop-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #51617e;
  font-size: .84rem;
  font-weight: 750;
  transition: color .2s ease, background .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue-700);
  background: #edf4ff;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-register {
  padding: 9px 10px;
  color: #4f5f7b;
  font-size: .84rem;
  font-weight: 800;
}
.mobile-header-tools { display: none; align-items: center; gap: 8px; margin-left: auto; }
.language-control { position: relative; }
.language-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid #c9daf0;
  border-radius: 11px;
  color: #345273;
  background: #fff;
  font: inherit;
  font-size: .76rem;
  font-weight: 850;
  cursor: pointer;
}
.language-toggle img,
.language-menu img {
  width: 24px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(25, 57, 103, .12);
}
.language-toggle i {
  width: 7px;
  height: 7px;
  margin: -4px 2px 0 3px;
  border-right: 2px solid #68809f;
  border-bottom: 2px solid #68809f;
  transform: rotate(45deg);
}
.language-toggle[aria-expanded="true"] i { margin-top: 3px; transform: rotate(225deg); }
.language-menu {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 10px);
  right: 0;
  overflow-y: auto;
  display: grid;
  width: 420px;
  max-height: min(72vh, 580px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  padding: 10px;
  border: 1px solid #d5e3f4;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 55, 110, .22);
}
.language-menu[hidden] { display: none; }
.language-menu a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  color: #385274;
  font-size: .76rem;
  font-weight: 750;
}
.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] {
  color: #1158c8;
  background: #edf4ff;
}
.language-menu a span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.language-toggle-compact { width: 46px; justify-content: center; padding: 8px; }
.language-toggle-compact i { display: none; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 1px solid #c9daf0;
  border-radius: 13px;
  background: #fff;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #194a9b;
}
.mobile-menu {
  display: none;
  padding: 8px 20px 20px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-menu > a {
  display: block;
  padding: 12px 4px;
  color: #385274;
  font-weight: 800;
}
.mobile-menu-actions { display: grid; gap: 9px; margin-top: 10px; }

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: .92rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(255, 216, 41, .7); outline-offset: 3px; }
.button-primary {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 12px 28px rgba(18, 100, 244, .25);
}
.button-primary:hover { background: #0c55da; box-shadow: 0 17px 35px rgba(18, 100, 244, .32); }
.button-small { min-height: 42px; padding: 9px 17px; border-radius: 10px; font-size: .82rem; }
.button-light {
  color: #16449b;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 39, 125, .22);
}
.button-light:hover { box-shadow: 0 20px 46px rgba(0, 39, 125, .3); }
.button-ghost {
  border-color: rgba(255,255,255,.58);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.button-ghost:hover { background: rgba(255,255,255,.16); }
.button-outline {
  border-color: #bcd2ed;
  color: #185ac7;
  background: #fff;
}
.button-outline-blue {
  min-height: 46px;
  border-color: #a9c7ef;
  color: #1458c6;
  background: #fff;
}
.shine-button::after {
  position: absolute;
  top: -85%;
  bottom: -85%;
  left: -82%;
  width: 58%;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,.18) 20%,
      rgba(255,255,255,1) 48%,
      rgba(255,244,167,.96) 55%,
      rgba(255,255,255,.18) 78%,
      transparent 100%
    );
  pointer-events: none;
  transform: skewX(-20deg);
  filter: blur(.2px);
  mix-blend-mode: screen;
  animation: shine 1.85s cubic-bezier(.2,.7,.25,1) infinite;
}
.strong-shine {
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.42),
    0 0 22px rgba(255,255,255,.26),
    0 14px 34px rgba(8, 57, 157, .4);
  animation: button-attract 1.85s ease-in-out infinite;
}
@keyframes shine {
  0%, 20% { left: -82%; opacity: 0; }
  30% { opacity: 1; }
  72% { left: 142%; opacity: 1; }
  88%, 100% { left: 142%; opacity: 0; }
}
@keyframes button-attract {
  0%, 100% {
    filter: brightness(1);
    transform: translateY(0);
  }
  52% {
    filter: brightness(1.14) saturate(1.08);
    transform: translateY(-1px);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 78px 0 150px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.065) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(75, 149, 255, .62), transparent 35%),
    linear-gradient(120deg, #1f49cc 0%, #1767f2 52%, #04a8ed 100%);
  background-size: 44px 44px, 44px 44px, auto, auto;
}
.sun-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
}
.sun-orb::before,
.sun-orb::after {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: inherit;
  content: "";
}
.sun-orb::after { inset: 30%; }
.sun-orb-one { width: 440px; height: 440px; top: 105px; left: -265px; }
.sun-orb-two { width: 560px; height: 560px; top: 30px; right: -360px; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: clamp(34px, 4.5vw, 58px);
  align-items: center;
}
.hero-copy {
  min-width: 0;
  text-align: start;
}
.hero-media {
  position: relative;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 30px;
  background: rgba(255,255,255,.15);
  box-shadow: 0 28px 65px rgba(2, 40, 112, .28), inset 0 1px 0 rgba(255,255,255,.42);
  backdrop-filter: blur(12px);
}
.hero-media::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 21px;
  content: "";
}
.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 21px;
  object-fit: contain;
  background: #fff;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .025em;
}
.hero-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,216,41,.13);
}
.hero-price {
  width: max-content;
  max-width: 100%;
  margin: 0 0 12px;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(3.7rem, 6.3vw, 5.6rem);
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(105deg, #ffd829 0%, #ffd829 38%, #fffbd7 48%, #ffd829 58%, #ffd829 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: headline-shine 3.2s ease-in-out infinite;
}
.hero-price-featured { font-size: clamp(2.9rem, 4.8vw, 4.4rem); }
.hero-price-long { font-size: clamp(2.55rem, 3.55vw, 3.2rem); }
.hero-price-very-long { font-size: clamp(2.05rem, 3vw, 2.6rem); }
.hero-price-ultra-long { font-size: clamp(1.85rem, 2.9vw, 2.3rem); }
.hero-slogan {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.hero-slogan span {
  display: block;
  white-space: nowrap;
}
.hero-slogan-long { font-size: clamp(1.55rem, 2.8vw, 2.45rem); }
.hero-slogan-very-long { font-size: clamp(1.3rem, 2.35vw, 2rem); }
@keyframes headline-shine {
  0%, 56% { background-position: 110% 0; }
  82%, 100% { background-position: -110% 0; }
}
.hero-lead {
  max-width: 720px;
  margin: 0 0 28px;
  color: #e7f1ff;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-note {
  margin: 17px 0 0;
  color: #d7e8ff;
  font-size: .78rem;
  font-weight: 700;
}
.hero-wave {
  position: absolute;
  right: -5%;
  bottom: -92px;
  left: -5%;
  height: 180px;
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
  background: #fff;
}

.section-heading { margin-bottom: 42px; }
.section-heading.centered { max-width: 760px; margin-right: auto; margin-left: auto; text-align: center; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--blue-700);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-kicker::before {
  width: 26px;
  height: 3px;
  border-radius: 10px;
  background: var(--yellow);
  content: "";
}
.section-heading h2,
.how-copy h2,
.faq-intro h2 {
  margin-bottom: 16px;
  color: var(--blue-950);
  font-size: clamp(2.15rem, 4.5vw, 3.65rem);
}
.section-heading p,
.how-copy > p,
.faq-intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.pathways { padding: 68px 0 105px; background: #fff; }
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pathway {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(25, 77, 151, .08);
}
.pathway::after {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -86px;
  bottom: -96px;
  border-radius: 50%;
  content: "";
  opacity: .16;
}
.pathway-blue::after { background: var(--blue-600); }
.pathway-yellow::after { background: var(--yellow); }
.pathway-green::after { background: var(--green); }
.pathway-index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #a6b5ca;
  font-size: .72rem;
  font-weight: 900;
}
.pathway-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  font-weight: 950;
}
.pathway-blue .pathway-symbol { background: var(--blue-700); }
.pathway-yellow .pathway-symbol { color: #694d00; background: var(--yellow); }
.pathway-green .pathway-symbol { background: var(--green); }
.pathway h3 { margin-bottom: 10px; color: var(--blue-950); font-size: 1.35rem; }
.pathway p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.plans-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: var(--blue-50);
}
.plans-section::before {
  position: absolute;
  top: 90px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,216,41,.18);
  content: "";
}
.plans-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}
.plans-heading > div { max-width: 670px; }
.plans-heading > p { max-width: 400px; }
.plan-showcase {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: stretch;
  grid-template-columns: 1.03fr .97fr;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid #d6e4f5;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}
.plan-showcase + .plan-showcase { margin-top: 36px; }
.plan-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(145deg, #dff1ff, #b9dcff 58%, #fdf2aa);
  background-size: 36px 36px, 36px 36px, auto;
}
.plan-bright .plan-visual {
  background:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(145deg, #fff0a6, #d8f5d6 54%, #b9ddff);
  background-size: 36px 36px, 36px 36px, auto;
}
.plan-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  box-shadow: 0 0 0 36px rgba(255,255,255,.18), 0 0 0 74px rgba(255,255,255,.1);
}
.plan-visual img { position: relative; z-index: 2; height: auto; object-fit: contain; filter: drop-shadow(0 25px 30px rgba(20, 49, 84, .22)); }
.plan-dawn .plan-visual img { width: 92%; }
.plan-bright .plan-visual img { width: 61%; max-height: 550px; }
.visual-label {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 22px;
  color: rgba(12, 60, 142, .15);
  font-size: 3.6rem;
  font-weight: 950;
  letter-spacing: -.06em;
}
.plan-content {
  display: flex;
  padding: 52px 54px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.plan-topline {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.plan-topline span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #155cc8;
  background: #eaf3ff;
  font-size: .67rem;
  font-weight: 950;
  letter-spacing: .1em;
}
.plan-bright .plan-topline span { color: #755b00; background: #fff5bd; }
.plan-topline b { color: #8ba0bc; font-size: .72rem; letter-spacing: .08em; }
.plan-content h3 {
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: clamp(2.9rem, 5vw, 4.5rem);
}
.plan-summary { max-width: 480px; margin-bottom: 22px; color: var(--muted); }
.plan-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--blue-700);
}
.plan-price strong { font-size: 4rem; font-weight: 950; line-height: .9; letter-spacing: -.065em; }
.plan-price span { color: #38577d; font-size: .9rem; font-weight: 900; line-height: 1.2; }
.plan-price small { color: #8a9ab0; font-size: .68rem; font-weight: 750; text-transform: uppercase; }
.plan-stats {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.plan-stats div {
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfdff;
}
.plan-stats small { display: block; margin-bottom: 3px; color: #8595aa; font-size: .65rem; }
.plan-stats strong { display: block; color: var(--blue-950); font-size: .84rem; }
.principal-chip {
  width: 100%;
  margin-bottom: 20px;
  padding: 11px 14px;
  border-radius: 11px;
  color: var(--green-deep);
  background: #eafff2;
  font-size: .82rem;
}
.plan-content > .button { min-width: 190px; }
.plan-terms { margin: 12px 0 0; color: #8b99ac; font-size: .68rem; }
.all-plans {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid #d5e3f4;
  border-radius: 20px;
  background: rgba(255,255,255,.8);
}
.all-plans span { display: block; color: var(--blue-700); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.all-plans strong { display: block; margin-top: 3px; color: var(--blue-950); }

.how-section { padding: 105px 0; background: #fff; }
.how-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.how-copy { position: sticky; top: 110px; align-self: start; }
.how-copy > p { margin-bottom: 22px; }
.text-link { color: var(--blue-700); font-size: .88rem; font-weight: 900; }
.steps { position: relative; display: grid; gap: 16px; }
.steps::before {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 28px;
  width: 2px;
  background: #d9e8fa;
  content: "";
}
.steps article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 11px 35px rgba(26, 76, 146, .06);
}
.steps article > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 7px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 0 0 1px #d4e4f6;
  font-weight: 950;
}
.steps article:nth-child(2) > span { color: #5f4900; background: var(--yellow); }
.steps article:nth-child(3) > span { background: var(--green); }
.steps article:nth-child(4) > span { background: #7759e8; }
.steps h3 { margin: 3px 0 5px; color: var(--blue-950); font-size: 1.17rem; }
.steps p { margin: 0; color: var(--muted); font-size: .88rem; }

.return-section { padding: 28px 0 105px; background: #fff; }
.return-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .78fr 1.22fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 44px 48px;
  border-radius: 32px;
  background: var(--yellow);
  box-shadow: 0 24px 60px rgba(219, 164, 0, .2);
}
.return-sun { position: relative; display: grid; min-height: 180px; place-items: center; }
.return-sun::before,
.return-sun::after {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #fff5a5;
  content: "";
}
.return-sun::after { width: 92px; height: 92px; background: #fff; }
.return-sun span {
  position: relative;
  z-index: 2;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--yellow-deep);
  box-shadow:
    0 -70px 0 -13px var(--yellow-deep),
    0 70px 0 -13px var(--yellow-deep),
    70px 0 0 -13px var(--yellow-deep),
    -70px 0 0 -13px var(--yellow-deep),
    50px 50px 0 -13px var(--yellow-deep),
    -50px -50px 0 -13px var(--yellow-deep),
    50px -50px 0 -13px var(--yellow-deep),
    -50px 50px 0 -13px var(--yellow-deep);
}
.return-label { color: #755700; font-size: .69rem; font-weight: 950; letter-spacing: .12em; }
.return-copy h2 { margin: 9px 0 12px; color: #173565; font-size: clamp(2rem, 3.5vw, 3.05rem); }
.return-copy p { margin: 0; color: #5e542f; font-size: .91rem; }
.return-facts { display: grid; gap: 10px; text-align: center; }
.return-facts div {
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 15px;
  background: rgba(255,255,255,.55);
}
.return-facts small { display: block; color: #684f00; font-weight: 900; }
.return-facts strong { display: block; color: #163b78; font-size: 1.05rem; }
.return-facts span { color: #675c37; font-size: .74rem; }

.faq-section { padding: 105px 0; background: var(--blue-50); }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; }
.notice {
  display: grid;
  gap: 4px;
  margin-top: 25px;
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
  border-radius: 10px 15px 15px 10px;
  background: #fffbea;
}
.notice strong { color: #785d00; font-size: .8rem; }
.notice span { color: #746a4a; font-size: .78rem; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(30, 76, 142, .05);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 21px;
  color: var(--blue-950);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: #edf4ff;
  transition: transform .2s ease;
}
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 21px 21px; color: var(--muted); font-size: .9rem; }

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 75px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,216,41,.26), transparent 24%),
    linear-gradient(120deg, #1945c4, #1264f4 55%, #06a2e9);
}
.final-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}
.final-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-kicker { color: #fff29a; font-size: .7rem; font-weight: 950; letter-spacing: .12em; }
.final-cta h2 { margin: 9px 0 10px; font-size: clamp(2.2rem, 4vw, 3.55rem); }
.final-cta p { max-width: 620px; margin: 0; color: #e3efff; }
.final-actions { display: flex; flex: 0 0 auto; gap: 10px; }

.site-footer { padding: 34px 0 100px; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; }
.footer-brand img { width: 40px; height: 40px; }
.footer-inner > p { margin: 0; color: var(--muted); font-size: .8rem; }
.footer-inner nav { display: flex; gap: 18px; color: #48617f; font-size: .8rem; font-weight: 800; }

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 10px;
  left: 10px;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(19, 67, 139, .13);
  border-radius: 17px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 38px rgba(17, 55, 110, .22);
  backdrop-filter: blur(14px);
}
.mobile-cta .button { min-height: 46px; padding: 9px 12px; font-size: .8rem; }
.button-telegram { flex: 1.25; color: #fff; background: #159bd4; }
.button-register-mobile { flex: .75; color: #fff; background: var(--green); }

@media (max-width: 1040px) {
  .desktop-nav, .header-actions { display: none; }
  .mobile-header-tools { display: flex; }
  .menu-toggle { display: inline-flex; margin-left: 0; }
  .mobile-menu:not([hidden]) { display: block; }
  .hero { min-height: 620px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-media {
    width: min(650px, 100%);
    margin-inline: auto;
  }
  .hero-price,
  .hero-slogan,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .plan-showcase { grid-template-columns: 1fr; }
  .plan-bright .plan-content { order: 2; }
  .plan-bright .plan-visual { order: 1; }
  .plan-visual { min-height: 520px; }
  .plan-bright .plan-visual img { width: min(48%, 350px); }
  .how-layout { gap: 55px; }
  .return-card { grid-template-columns: .6fr 1.4fr; }
  .return-facts { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 41px; height: 41px; }
  .brand strong { font-size: 1.06rem; }
  .language-menu-mobile {
    position: fixed;
    top: calc(76px + env(safe-area-inset-top, 0px));
    right: max(10px, env(safe-area-inset-right, 0px)) !important;
    left: max(10px, env(safe-area-inset-left, 0px)) !important;
    width: auto;
    max-width: none;
    max-height: min(72dvh, calc(100dvh - 96px - env(safe-area-inset-bottom, 0px)));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 6px;
    padding: 9px;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
  .language-menu-mobile a {
    min-height: 42px;
    gap: 7px;
    padding: 8px;
    line-height: 1.18;
  }
  .language-menu-mobile a span {
    overflow: visible;
    display: block;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero {
    min-height: auto;
    padding: 52px 0 128px;
    background-size: 32px 32px, 32px 32px, auto, auto;
  }
  .hero-status { margin-bottom: 20px; font-size: .68rem; }
  .hero-price { margin-bottom: 12px; font-size: clamp(2.75rem, 12vw, 4rem); }
  .hero-price-featured { font-size: clamp(1.9rem, 8vw, 3.1rem); }
  .hero-price-long { font-size: clamp(1.9rem, 8vw, 3.1rem); }
  .hero-price-very-long { font-size: clamp(1.45rem, 6.1vw, 2.35rem); }
  .hero-price-ultra-long { font-size: clamp(1rem, 4.7vw, 1.85rem); }
  .hero-slogan { margin-bottom: 18px; font-size: clamp(1.65rem, 7.4vw, 2.25rem); }
  .hero-slogan-long { font-size: clamp(1.35rem, 5.8vw, 1.9rem); }
  .hero-slogan-very-long { font-size: clamp(1.08rem, 4.7vw, 1.55rem); }
  .hero-lead { max-width: 510px; font-size: .94rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-ghost { width: min(72%, 250px); margin-inline: auto; }
  .hero-note { font-size: .7rem; }
  .hero-grid { gap: 34px; }
  .hero-media {
    width: min(100%, 560px);
    padding: 7px;
    border-radius: 23px;
  }
  .hero-media::after {
    inset: 7px;
    border-radius: 17px;
  }
  .hero-media img {
    border-radius: 17px;
  }
  .hero-wave { bottom: -54px; height: 105px; }
  .sun-orb-one { left: -360px; }
  .sun-orb-two { right: -470px; }

  .pathways, .plans-section, .how-section, .faq-section { padding: 72px 0; }
  .return-section { padding: 10px 0 72px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2,
  .how-copy h2,
  .faq-intro h2 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .section-heading p,
  .how-copy > p,
  .faq-intro > p { font-size: .93rem; }
  .pathway-grid { grid-template-columns: 1fr; gap: 12px; }
  .pathway { min-height: 0; padding: 22px; text-align: center; }
  .pathway-symbol { margin: 0 auto 18px; }

  .plans-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .plans-heading > p { max-width: none; }
  .plan-showcase { min-height: 0; border-radius: 25px; }
  .plan-visual { min-height: 220px; }
  .plan-glow { width: 165px; height: 165px; box-shadow: 0 0 0 24px rgba(255,255,255,.18), 0 0 0 48px rgba(255,255,255,.1); }
  .plan-dawn .plan-visual img { width: min(70%, 310px); max-height: 185px; }
  .plan-bright .plan-visual img { width: min(28%, 125px); max-height: 180px; }
  .visual-label { right: 14px; bottom: 8px; font-size: 2rem; }
  .plan-content { padding: 25px 22px 29px; align-items: center; text-align: center; }
  .plan-topline { text-align: left; }
  .plan-content h3 { font-size: 3rem; }
  .plan-summary { font-size: .9rem; }
  .plan-price { justify-content: center; }
  .plan-price strong { font-size: 3.25rem; }
  .plan-stats { gap: 5px; }
  .plan-stats div { min-width: 0; padding: 10px 6px; text-align: center; }
  .plan-stats small { font-size: .56rem; }
  .plan-stats strong { overflow-wrap: anywhere; font-size: .72rem; }
  .plan-content > .button { width: 100%; }
  .plan-terms { text-align: center; }
  .all-plans { align-items: stretch; flex-direction: column; gap: 15px; padding: 20px; text-align: center; }
  .all-plans .button { width: 100%; }

  .how-layout, .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .how-copy { position: static; text-align: center; }
  .section-kicker { justify-content: center; }
  .steps article { grid-template-columns: 50px 1fr; padding: 18px 16px; }
  .steps article > span { width: 44px; height: 44px; border-width: 5px; }
  .steps::before { left: 38px; }

  .return-card { grid-template-columns: 1fr; gap: 22px; padding: 30px 22px; border-radius: 25px; text-align: center; }
  .return-sun { min-height: 130px; }
  .return-sun::before { width: 105px; height: 105px; }
  .return-sun::after { width: 70px; height: 70px; }
  .return-sun span {
    width: 27px;
    height: 27px;
    box-shadow:
      0 -52px 0 -10px var(--yellow-deep),
      0 52px 0 -10px var(--yellow-deep),
      52px 0 0 -10px var(--yellow-deep),
      -52px 0 0 -10px var(--yellow-deep),
      37px 37px 0 -10px var(--yellow-deep),
      -37px -37px 0 -10px var(--yellow-deep),
      37px -37px 0 -10px var(--yellow-deep),
      -37px 37px 0 -10px var(--yellow-deep);
  }
  .return-facts { grid-column: auto; grid-template-columns: 1fr; text-align: center; }

  .faq-intro { text-align: center; }
  .notice { text-align: left; }
  .faq-list summary { padding: 17px; font-size: .9rem; }
  .faq-list details p { padding: 0 17px 18px; font-size: .83rem; }

  .final-cta { padding: 62px 0 85px; text-align: center; }
  .final-cta-inner { align-items: stretch; flex-direction: column; gap: 28px; }
  .final-actions { display: grid; grid-template-columns: 1fr; }
  .final-actions .button-ghost { width: min(72%, 250px); margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; justify-items: center; text-align: center; }
  .footer-inner nav { justify-content: center; }
  .mobile-cta { display: flex; }
}

@media (max-width: 390px) {
  .language-menu-mobile {
    top: calc(72px + env(safe-area-inset-top, 0px));
    right: max(6px, env(safe-area-inset-right, 0px)) !important;
    left: max(6px, env(safe-area-inset-left, 0px)) !important;
    padding: 7px;
  }
  .language-menu-mobile a {
    min-height: 40px;
    gap: 6px;
    padding: 7px 6px;
    font-size: .72rem;
  }
  .language-menu-mobile img {
    width: 22px;
    height: 16px;
  }
  .hero-price { font-size: 2.65rem; }
  .hero-price-featured { font-size: 1.9rem; }
  .hero-price-long { font-size: 1.9rem; }
  .hero-price-very-long { font-size: 1.42rem; }
  .hero-price-ultra-long { font-size: 1rem; }
  .hero-slogan { font-size: 1.62rem; }
  .hero-slogan-long { font-size: 1.3rem; }
  .hero-slogan-very-long { font-size: 1.02rem; }
  .plan-visual { min-height: 205px; }
  .plan-content { padding-inline: 18px; }
  .plan-stats strong { font-size: .66rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .shine-button::after { display: none; animation: none; }
  .hero-price, .strong-shine { animation: none; background-position: 0 0; }
}

[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}
[dir="rtl"] .hero-price {
  margin-right: 0;
  margin-left: auto;
}
[dir="rtl"] .plan-topline,
[dir="rtl"] .plan-stats,
[dir="rtl"] .plan-price {
  direction: rtl;
}
[dir="rtl"] .steps article { direction: rtl; }
