@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

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

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-symbols.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+20BD;
}

:root {
  color-scheme: light;
  --bg: #f4ece3;
  --bg-rgb: 244, 236, 227;
  --surface: #fff9f3;
  --surface-rgb: 255, 249, 243;
  --surface-strong: #fffdf9;
  --surface-strong-rgb: 255, 253, 249;
  --peach: #fad9c5;
  --peach-rgb: 250, 217, 197;
  --gold: #fce5b2;
  --gold-rgb: 252, 229, 178;
  --rose: #f56a79;
  --rose-soft: #f9b7b2;
  --rose-dark: #d04c5b;
  --ink: #333333;
  --ink-rgb: 51, 51, 51;
  --ink-soft: #655d5d;
  --night: #242126;
  --night-soft: #302a2c;
  --green: #45b36b;
  --bronze: #b87935;
  --line: rgba(51, 51, 51, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 12px 34px rgba(61, 43, 39, 0.08);
  --shadow-md: 0 26px 70px rgba(48, 35, 35, 0.14);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --header-height: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #171519;
  --bg-rgb: 23, 21, 25;
  --surface: #242126;
  --surface-rgb: 36, 33, 38;
  --surface-strong: #2c282e;
  --surface-strong-rgb: 44, 40, 46;
  --peach: #593a3a;
  --peach-rgb: 89, 58, 58;
  --gold: #5a4933;
  --gold-rgb: 90, 73, 51;
  --rose: #f56a79;
  --rose-soft: #ffaaa9;
  --rose-dark: #ff7f8e;
  --ink: #f5eee9;
  --ink-rgb: 245, 238, 233;
  --ink-soft: #c9bdbb;
  --night: #111014;
  --night-soft: #1e1a20;
  --green: #62cb83;
  --bronze: #d49a5b;
  --line: rgba(255, 255, 255, 0.13);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 12px 34px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 26px 70px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(var(--peach-rgb), 0.72), transparent 27rem),
    var(--bg);
  font-family: "Onest", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: color 0.3s ease, background-color 0.3s ease;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--rose-dark);
  outline-offset: 4px;
}

::selection {
  color: var(--night);
  background: var(--rose-soft);
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

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

.shell {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 9vw, 144px);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--night);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--rose-dark);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow--light > span {
  background: var(--rose-soft);
}

.button {
  display: inline-flex;
  min-height: 52px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--night);
  background: var(--rose);
  box-shadow: 0 12px 24px rgba(208, 76, 91, 0.16);
  font-size: 0.94rem;
  font-weight: 730;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.button:hover {
  color: #fff;
  background: var(--rose-dark);
  box-shadow: 0 16px 32px rgba(208, 76, 91, 0.24);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.84rem;
}

.button--primary {
  padding-inline: 25px;
}

.button--ghost {
  border-color: rgba(var(--ink-rgb), 0.2);
  color: var(--ink);
  background: rgba(var(--surface-rgb), 0.55);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--surface);
  box-shadow: none;
}

.button--light {
  color: var(--night);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.button--light:hover {
  color: var(--night);
  background: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(var(--bg-rgb), 0.68);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: height 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: rgba(var(--ink-rgb), 0.08);
  background: rgba(var(--surface-rgb), 0.92);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(36, 33, 38, 0.1);
}

.primary-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.primary-nav > a:not(.button) {
  min-height: 42px;
  padding: 11px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 630;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.22s ease, background 0.22s ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a.is-active:not(.button),
.primary-nav > a[aria-current="page"]:not(.button) {
  color: var(--ink);
  background: rgba(var(--peach-rgb), 0.62);
}

.primary-nav .button {
  margin-left: 6px;
}

.theme-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: rgba(var(--surface-rgb), 0.66);
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.primary-nav .theme-toggle {
  margin-left: 5px;
}

.theme-toggle:hover {
  border-color: rgba(var(--ink-rgb), 0.3);
  background: var(--surface);
  transform: translateY(-1px);
}

.theme-icon {
  width: 19px;
  height: 19px;
  grid-area: 1 / 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.25s ease, transform 0.35s var(--ease);
}

.theme-icon--sun {
  opacity: 0;
  transform: rotate(-35deg) scale(0.7);
}

[data-theme="dark"] .theme-icon--moon {
  opacity: 0;
  transform: rotate(35deg) scale(0.7);
}

[data-theme="dark"] .theme-icon--sun {
  opacity: 1;
  transform: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--ink);
  background: rgba(var(--surface-rgb), 0.7);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(900px, calc(100svh - var(--header-height)));
  overflow-x: clip;
  padding-block: clamp(52px, 5vw, 76px) clamp(86px, 8vw, 124px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 6%;
  right: -12%;
  width: min(56vw, 820px);
  height: min(56vw, 820px);
  border-radius: 50%;
  background: rgba(var(--peach-rgb), 0.46);
  content: "";
  filter: blur(4px);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  bottom: 7%;
  left: 8%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.42);
  filter: blur(60px);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 8.2ch;
  font-size: clamp(3.6rem, 6.4vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: -0.072em;
}

.hero h1 em {
  color: var(--rose-dark);
  font-style: normal;
}

.hero-lead {
  max-width: 580px;
  margin: 32px 0 0;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.62;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 25px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 600;
  list-style: none;
}

.hero-notes li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-notes span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(var(--ink-rgb), 0.15);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(var(--surface-rgb), 0.62);
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  width: min(100%, 640px);
  min-width: 0;
  justify-self: end;
}

.hero-visual picture {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
  object-position: 53% center;
}

.hero-visual::before {
  position: absolute;
  z-index: 2;
  inset: auto 10% -22px;
  height: 70px;
  border-radius: 50%;
  background: rgba(52, 34, 34, 0.18);
  content: "";
  filter: blur(28px);
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: -32px;
  display: grid;
  width: 128px;
  height: 128px;
  place-content: center;
  border: 1px solid rgba(var(--ink-rgb), 0.11);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(var(--gold-rgb), 0.94);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transform: rotate(-7deg);
}

.hero-stamp span {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.hero-stamp small {
  display: block;
  margin-top: 4px;
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(42px, 5vw, 70px);
}

.section-heading h2,
.facts h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(2.65rem, 5.6vw, 5.5rem);
  letter-spacing: -0.065em;
}

.section-heading > p:last-child,
.section-heading--split > p {
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 50px;
  align-items: end;
}

.section-heading--split > p {
  max-width: 440px;
  margin: 0 0 8px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.benefits {
  background: linear-gradient(180deg, rgba(var(--surface-rgb), 0.48), rgba(var(--surface-rgb), 0));
}

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

.feature-card {
  min-height: 255px;
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(var(--surface-rgb), 0.72);
  box-shadow: 0 10px 28px rgba(48, 34, 33, 0.045);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease);
}

.feature-card:hover {
  border-color: rgba(208, 76, 91, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 45px;
  place-items: center;
  border-radius: 15px;
  color: var(--rose-dark);
  background: rgba(249, 183, 178, 0.3);
}

.feature-icon--green {
  color: #267d46;
  background: rgba(69, 179, 107, 0.15);
}

.feature-icon--gold {
  color: #8a5627;
  background: rgba(252, 229, 178, 0.58);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.18rem;
  letter-spacing: -0.035em;
}

.feature-card p {
  margin: 13px 0 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.cinematic-section {
  position: relative;
  min-height: clamp(520px, 61vw, 720px);
  overflow: hidden;
  margin-block: 20px clamp(88px, 9vw, 144px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--night);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.cinematic-media,
.cinematic-media picture,
.cinematic-media img,
.cinematic-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cinematic-media img {
  object-fit: cover;
  object-position: 50% center;
  transition: transform 1.2s var(--ease);
}

.cinematic-section:hover .cinematic-media img {
  transform: scale(1.018);
}

.cinematic-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 20, 23, 0.78) 0%, rgba(23, 20, 23, 0.34) 45%, rgba(23, 20, 23, 0.06) 75%),
    linear-gradient(0deg, rgba(22, 19, 22, 0.82), transparent 55%);
}

.cinematic-copy {
  position: absolute;
  z-index: 2;
  bottom: clamp(36px, 5vw, 70px);
  left: clamp(28px, 6vw, 76px);
  max-width: 650px;
}

.cinematic-copy h2 {
  max-width: 8ch;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  letter-spacing: -0.068em;
}

.cinematic-copy p:last-child {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.cinematic-index {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.connection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.connection-copy .section-heading {
  margin-bottom: 42px;
}

.connection-copy .section-heading h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.steps {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 17px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-dark);
  background: var(--surface);
  box-shadow: 0 7px 18px rgba(70, 51, 49, 0.08);
  font-size: 0.69rem;
  font-weight: 800;
}

.steps h3 {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 7px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.connection-visual {
  position: relative;
  padding: 14px 14px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(var(--surface-rgb), 0.72);
  box-shadow: var(--shadow-md);
}

.connection-visual picture {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
}

.connection-visual img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  object-position: center;
}

.connection-visual > p {
  position: absolute;
  bottom: 17px;
  left: 28px;
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
}

.connection-visual > p span {
  color: var(--green);
  font-size: 0.6rem;
}

.plans {
  background:
    radial-gradient(circle at 10% 100%, rgba(var(--gold-rgb), 0.82), transparent 28rem),
    linear-gradient(180deg, rgba(var(--peach-rgb), 0.5), rgba(var(--peach-rgb), 0.25));
}

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

.plan-card {
  display: flex;
  min-height: 525px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(var(--ink-rgb), 0.13);
  border-radius: var(--radius-md);
  background: rgba(var(--surface-rgb), 0.88);
  box-shadow: 0 14px 36px rgba(72, 50, 47, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease);
}

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

.plan-card--rose {
  background: linear-gradient(160deg, var(--surface) 0%, rgba(var(--peach-rgb), 0.72) 100%);
}

.plan-card--night {
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  background: linear-gradient(150deg, var(--night-soft), var(--night));
  box-shadow: 0 26px 66px rgba(36, 33, 38, 0.2);
}

.plan-topline {
  display: flex;
  min-height: 27px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card--night .plan-topline {
  color: rgba(255, 255, 255, 0.58);
}

.plan-badge {
  padding: 7px 10px;
  border: 1px solid rgba(69, 179, 107, 0.26);
  border-radius: 999px;
  color: color-mix(in srgb, var(--green) 72%, var(--ink));
  background: rgba(69, 179, 107, 0.13);
  letter-spacing: 0.03em;
}

.plan-card h3 {
  margin-top: 45px;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
}

.plan-price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 18px 0 36px;
  color: var(--ink);
}

.plan-card--night .plan-price {
  color: #fff;
}

.plan-price strong {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 770;
  letter-spacing: -0.065em;
  line-height: 1;
}

.plan-price span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.plan-card--night .plan-price span {
  color: rgba(255, 255, 255, 0.58);
}

.plan-card ul {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.plan-card li:last-child {
  border-bottom: 1px solid var(--line);
}

.plan-card li strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.plan-card--night li {
  border-color: var(--line-light);
  color: rgba(255, 255, 255, 0.62);
}

.plan-card--night li strong {
  color: #fff;
}

.button--plan {
  width: 100%;
  margin-top: auto;
  border-color: rgba(var(--ink-rgb), 0.15);
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button--plan:hover {
  border-color: var(--rose-dark);
}

.button--plan-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.button--plan-light:hover {
  border-color: var(--surface);
  color: var(--night);
  background: var(--surface);
}

.plan-notes {
  display: grid;
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius-sm);
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: rgba(var(--surface-rgb), 0.45);
}

.plan-notes p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.plan-notes strong {
  color: var(--ink);
}

.scenario-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, 0.9fr);
  grid-template-rows: repeat(2, minmax(270px, 340px));
  gap: 16px;
}

.scenario-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--night);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.scenario-card--large {
  grid-row: 1 / span 2;
}

.scenario-card picture,
.scenario-card img {
  width: 100%;
  height: 100%;
}

.scenario-card img {
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.scenario-card--large img {
  object-position: center;
}

.scenario-card:not(.scenario-card--large) img {
  object-position: 45% center;
}

.scenario-card:hover img {
  transform: scale(1.025);
}

.scenario-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 20, 23, 0.86), rgba(24, 20, 23, 0.02) 68%);
  content: "";
}

.scenario-card > div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 27px;
  left: 28px;
}

.scenario-card > div > span {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.scenario-card h3 {
  margin-top: 6px;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}

.scenario-card p {
  max-width: 440px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
}

.facts {
  padding-block: clamp(88px, 9vw, 136px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 40%, rgba(245, 106, 121, 0.12), transparent 30rem),
    var(--night);
}

.facts-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: end;
}

.facts h2 {
  color: #fff;
  font-size: clamp(2.9rem, 5vw, 5rem);
}

.facts-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr;
}

.facts-list > div {
  min-height: 150px;
  padding: 28px 18px 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.facts-list > div:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.facts-list > div:nth-child(even) {
  padding-left: 28px;
}

.facts-list dt {
  color: var(--rose-soft);
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.facts-list dd {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.1fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-heading h2 {
  max-width: 7.8ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 370px;
  margin: 24px 0 0;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration-color: var(--rose-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 82px;
  padding: 24px 4px;
  cursor: pointer;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 20px;
  align-items: center;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 680;
  list-style: none;
}

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

.faq-list summary > span {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(var(--surface-rgb), 0.6);
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-list summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--rose-dark);
}

.faq-list details > p {
  max-width: 690px;
  margin: -2px 54px 26px 4px;
  font-size: 0.92rem;
  line-height: 1.68;
}

.final-cta {
  position: relative;
  min-height: clamp(590px, 64vw, 760px);
  overflow: hidden;
  margin-bottom: clamp(30px, 5vw, 72px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--night);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.final-cta > picture,
.final-cta > picture img,
.final-cta-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > picture img {
  object-fit: cover;
  object-position: center;
}

.final-cta-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 19, 22, 0.84) 0%, rgba(22, 19, 22, 0.52) 36%, rgba(22, 19, 22, 0.04) 72%),
    linear-gradient(0deg, rgba(22, 19, 22, 0.46), transparent 55%);
}

.final-cta-copy {
  position: absolute;
  z-index: 2;
  bottom: clamp(38px, 6vw, 78px);
  left: clamp(28px, 6vw, 78px);
  max-width: 560px;
}

.final-cta h2 {
  max-width: 7ch;
  color: #fff;
  font-size: clamp(3.2rem, 6.8vw, 6rem);
}

.final-cta-copy > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.final-cta-copy small {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
}

.site-footer {
  padding: 48px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
}

.footer-top {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line-light);
}

.brand--footer {
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: flex-end;
}

.footer-nav a {
  min-height: 40px;
  padding-block: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.footer-note span {
  margin-left: 4px;
}

/* Section-by-section navigation */

.section-nav {
  position: fixed;
  z-index: 850;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: none;
  width: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  flex-direction: column;
  align-items: center;
  background: rgba(var(--surface-rgb), 0.86);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px) saturate(1.25);
}

.js .section-nav {
  display: flex;
}

.section-nav button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.section-nav button:hover:not(:disabled) {
  color: var(--surface-strong);
  background: var(--rose-dark);
}

.section-nav button:disabled {
  opacity: 0.28;
  cursor: default;
}

.section-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-nav > span {
  width: 22px;
  height: 1px;
  background: var(--line);
}

/* Legal pages */

.legal-page {
  background:
    radial-gradient(circle at 88% 5%, rgba(var(--peach-rgb), 0.78), transparent 28rem),
    var(--bg);
}

.legal-page .site-header {
  position: sticky;
}

.legal-nav-link {
  display: inline-flex;
  min-height: 42px;
  gap: 7px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 670;
  text-decoration: none;
}

.legal-hero {
  padding-block: clamp(76px, 9vw, 130px) 58px;
  border-bottom: 1px solid var(--line);
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.legal-hero h1 {
  max-width: 950px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.97;
  letter-spacing: -0.068em;
}

.legal-meta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(var(--surface-rgb), 0.6);
  font-size: 0.75rem;
  font-weight: 650;
  white-space: nowrap;
}

.legal-main {
  padding-block: 64px clamp(92px, 10vw, 150px);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 800px);
  gap: clamp(44px, 7vw, 100px);
  justify-content: center;
  align-items: start;
}

.legal-content--narrow {
  max-width: 900px;
}

.legal-toc--desktop {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  max-height: calc(100vh - var(--header-height) - 64px);
  overflow: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(var(--surface-rgb), 0.62);
}

.legal-toc-title {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-toc ul,
.legal-toc--mobile ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc li + li,
.legal-toc--mobile li + li {
  margin-top: 3px;
}

.legal-toc a,
.legal-toc--mobile a {
  display: block;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-toc a:hover,
.legal-toc a.is-active,
.legal-toc--mobile a:hover {
  color: var(--rose-dark);
}

.legal-toc--mobile {
  display: none;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(var(--surface-rgb), 0.72);
}

.legal-toc--mobile summary {
  min-height: 50px;
  padding: 14px 18px;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.legal-toc--mobile ul {
  padding: 0 18px 17px;
}

.legal-document {
  min-width: 0;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(var(--surface-strong-rgb), 0.86);
  box-shadow: var(--shadow-sm);
}

.legal-document h2,
.legal-document h3 {
  scroll-margin-top: 24px;
}

.legal-document h2 {
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.045em;
}

.legal-document h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-document h3 {
  margin-top: 34px;
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.legal-document p,
.legal-document li {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.78;
}

.legal-document p {
  margin: 16px 0 0;
}

.legal-document ul,
.legal-document ol {
  margin: 16px 0 0;
  padding-left: 1.35rem;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document a {
  color: var(--rose-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-related {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.legal-related a {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--ink);
  background: rgba(var(--surface-rgb), 0.65);
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.35;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.legal-related a:hover {
  border-color: rgba(208, 76, 91, 0.35);
  background: var(--surface);
}

.legal-related a[aria-current="page"] {
  color: #fff;
  background: var(--night-soft);
}

.legal-related span {
  color: var(--rose-dark);
}

.legal-related a[aria-current="page"] span {
  color: var(--rose-soft);
}

.legal-page .site-footer {
  margin-top: 0;
}

/* Dark theme refinements */

[data-theme="dark"] .feature-icon--green {
  color: #8be1a6;
}

[data-theme="dark"] .feature-icon--gold {
  color: #f0c77f;
  background: rgba(var(--gold-rgb), 0.58);
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .plan-card,
[data-theme="dark"] .connection-visual,
[data-theme="dark"] .legal-document {
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .plan-card--night {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(150deg, #29222b, #111014);
}

[data-theme="dark"] .plan-badge {
  color: #9ce8b2;
}

[data-theme="dark"] .button--light,
[data-theme="dark"] .button--plan-light:hover {
  color: #171519;
  background: #fff9f3;
}

[data-theme="dark"] .button--light:hover {
  color: #171519;
  background: #fce5b2;
}

[data-theme="dark"] .legal-related a[aria-current="page"] {
  background: #111014;
}

/* Progressive animation */

.js [data-reveal].will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.js [data-reveal].will-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 7.5vw, 5.4rem);
  }

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

  .connection-grid {
    gap: 52px;
  }

  .plans-grid {
    gap: 12px;
  }

  .plan-card {
    min-height: 500px;
    padding: 28px;
  }

  .plan-card h3 {
    margin-top: 36px;
  }

  .legal-layout {
    grid-template-columns: 215px minmax(0, 760px);
    gap: 38px;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero {
    padding-block: 44px 78px;
  }

  .hero-visual {
    width: min(100%, 610px);
  }

  .hero h1 {
    font-size: clamp(3.6rem, 6.1vw, 5.5rem);
  }

  .hero-lead {
    margin-top: 25px;
  }

  .hero-actions {
    margin-top: 28px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: grid;
    max-height: calc(100svh - var(--header-height) - 24px);
    overflow: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(var(--surface-rgb), 0.98);
    box-shadow: var(--shadow-md);
  }

  .js .primary-nav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top;
    transition: visibility 0.25s ease, opacity 0.25s ease, transform 0.25s var(--ease);
  }

  .js .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav > a:not(.button) {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding-inline: 15px;
    border-radius: 12px;
  }

  .primary-nav .button {
    width: 100%;
    margin: 7px 0 0;
  }

  .primary-nav .theme-toggle {
    width: 100%;
    min-height: 48px;
    height: auto;
    margin: 2px 0 0;
    padding: 11px 15px;
    border-radius: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
  }

  .primary-nav .theme-toggle::before {
    grid-area: 1 / 1;
    justify-self: start;
    color: var(--ink-soft);
    content: "Сменить тему";
    font-size: 0.84rem;
    font-weight: 630;
  }

  .primary-nav .theme-icon {
    grid-area: 1 / 2;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(4rem, 10vw, 6.2rem);
  }

  .hero-visual {
    width: min(100%, 760px);
    justify-self: end;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading--split > p {
    margin: 0;
  }

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

  .connection-copy {
    max-width: 700px;
  }

  .connection-visual {
    width: min(100%, 760px);
  }

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

  .plan-card--night {
    grid-column: 1 / -1;
    min-height: 460px;
  }

  .scenario-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 470px 330px;
  }

  .scenario-card--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .facts-inner {
    grid-template-columns: 1fr;
  }

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

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    max-width: 10ch;
  }

  .legal-hero-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .legal-meta {
    justify-self: start;
  }

  .legal-layout {
    display: block;
  }

  .legal-toc--desktop {
    display: none;
  }

  .legal-toc--mobile {
    display: block;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 32px), 1240px);
  }

  .section {
    padding-block: 84px;
  }

  .section-nav {
    right: max(11px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 44px;
  }

  .section-nav button {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-block: 48px 96px;
  }

  .hero::before {
    top: 33%;
    right: -42%;
    width: 620px;
    height: 620px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-visual img {
    aspect-ratio: 9 / 10;
    object-position: center;
  }

  .hero-stamp {
    right: 10px;
    bottom: -35px;
    width: 105px;
    height: 105px;
  }

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

  .feature-card {
    min-height: 225px;
  }

  .feature-icon {
    margin-bottom: 36px;
  }

  .cinematic-section {
    min-height: 620px;
    margin-bottom: 84px;
    border-radius: 28px;
  }

  .cinematic-media img {
    object-position: 60% center;
  }

  .cinematic-overlay {
    background: linear-gradient(0deg, rgba(22, 19, 22, 0.92), rgba(22, 19, 22, 0.06) 75%);
  }

  .cinematic-copy {
    right: 24px;
    bottom: 34px;
    left: 24px;
  }

  .cinematic-copy h2 {
    font-size: clamp(3.1rem, 14vw, 4.7rem);
  }

  .cinematic-copy p:last-child {
    font-size: 0.94rem;
  }

  .cinematic-index {
    top: 22px;
    right: 23px;
  }

  .connection-copy .section-heading h2,
  .section-heading h2,
  .facts h2,
  .faq h2 {
    font-size: clamp(2.75rem, 12vw, 4.1rem);
  }

  .connection-visual {
    padding: 10px 10px 55px;
    border-radius: 28px;
  }

  .connection-visual picture {
    border-radius: 20px;
  }

  .connection-visual img {
    aspect-ratio: 1.05;
    object-position: center;
  }

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

  .plan-card,
  .plan-card--night {
    min-height: 470px;
    grid-column: auto;
  }

  .plan-notes {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .scenario-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .scenario-card,
  .scenario-card--large {
    min-height: 430px;
    grid-column: auto;
    grid-row: auto;
  }

  .scenario-card:not(.scenario-card--large) img {
    object-position: center;
  }

  .facts-list {
    grid-template-columns: 1fr;
  }

  .facts-list > div,
  .facts-list > div:nth-child(even) {
    min-height: 120px;
    padding: 24px 0;
    border-right: 0;
  }

  .faq-list summary {
    min-height: 76px;
    padding-block: 21px;
    font-size: 0.95rem;
  }

  .faq-list details > p {
    margin-right: 4px;
  }

  .final-cta {
    min-height: clamp(610px, 166vw, 650px);
    border-radius: 28px;
  }

  .final-cta > picture img {
    object-position: 52% center;
  }

  .final-cta-shade {
    background: linear-gradient(0deg, rgba(22, 19, 22, 0.94) 0%, rgba(22, 19, 22, 0.42) 55%, rgba(22, 19, 22, 0.02) 84%);
  }

  .final-cta-copy {
    right: 25px;
    bottom: 35px;
    left: 25px;
  }

  .final-cta h2 {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    display: grid;
    justify-content: start;
  }

  .footer-bottom {
    gap: 9px;
  }

  .legal-hero {
    padding-top: 66px;
  }

  .legal-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
    overflow-wrap: anywhere;
  }

  .legal-main {
    padding-block: 38px 86px;
  }

  .legal-document {
    padding: 26px 21px;
    border-radius: 20px;
  }

  .legal-document h2 {
    margin-top: 48px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .legal-related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .primary-nav {
    right: 12px;
    left: 12px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15.5vw, 4rem);
  }

  .hero-stamp {
    width: 94px;
    height: 94px;
  }

  .hero-stamp small {
    font-size: 0.44rem;
  }

  .feature-card,
  .plan-card {
    padding: 25px;
  }

  .plan-card h3 {
    margin-top: 34px;
  }

  .plan-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .plan-badge {
    align-self: flex-start;
  }

  .scenario-card,
  .scenario-card--large {
    min-height: 390px;
  }

  .scenario-card > div {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(calc(100% - 24px), 1240px);
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions .button {
    padding-inline: 16px;
  }

  .final-cta h2 {
    font-size: clamp(2.45rem, 12vw, 2.8rem);
  }

  .final-cta .button {
    gap: 7px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }

  .plan-price strong {
    font-size: 2.25rem;
  }

  .legal-document {
    padding-inline: 18px;
  }
}

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

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

  .js [data-reveal].will-reveal {
    opacity: 1;
    transform: none;
  }
}
