:root {
  color-scheme: dark;
  --navy-950: #06101e;
  --navy-900: #071527;
  --navy-800: #0c2039;
  --orange-500: #ff8a1f;
  --orange-400: #ffb15c;
  --green-400: #35d38b;
  --red-400: #ff6f61;
  --white: #f7fbff;
  --ink: #102033;
  --muted: #9fb4cb;
  --muted-dark: #53687f;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(16, 32, 51, 0.13);
  --surface: rgba(255, 255, 255, 0.075);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.14), transparent 28%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 42%, #eef5fb 42%, #eef5fb 100%);
  color: var(--white);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.platform-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: currentColor;
  fill: currentColor;
}

.platform-cta-icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--orange-500);
  color: var(--navy-950);
  font-weight: 600;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 30, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-actions,
.hero-actions,
.hero-points,
.proof-strip,
.device-list,
.partner-steps,
.calculator-head,
.calc-row,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
  font-size: 18px;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(85, 199, 255, 0.38))
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
}

.wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
  letter-spacing: 0;
  isolation: isolate;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.wordmark::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 4px;
  bottom: -5px;
  z-index: -1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(85, 199, 255, 0.72), rgba(255, 138, 31, 0.86));
  box-shadow:
    0 0 14px rgba(85, 199, 255, 0.24),
    0 0 14px rgba(255, 138, 31, 0.2);
}

.wordmark-auf {
  color: #e9fbff;
  font-size: 20px;
  font-weight: 800;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 12px rgba(85, 199, 255, 0.42),
    0 8px 18px rgba(0, 0, 0, 0.42);
}

.wordmark-vpn {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px 3px;
  border: 1px solid rgba(255, 177, 92, 0.62);
  border-radius: 5px;
  background: linear-gradient(135deg, #ffb15c 0%, #ff8a1f 52%, #ff6f19 100%);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 800;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 0 22px rgba(255, 138, 31, 0.28);
  text-shadow: none;
}

.nav {
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.nav a {
  border-radius: 8px;
  padding: 9px 12px;
  color: #c7d7e8;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button,
.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.header-actions {
  gap: 10px;
  justify-content: flex-end;
}

.header-actions .header-cta {
  flex: 1 1 auto;
  min-width: 0;
}

.header-support {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 46px;
  border: 1px solid rgba(85, 199, 255, 0.24);
  border-radius: 8px;
  background: rgba(85, 199, 255, 0.09);
  color: #9edfff;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.header-cta:hover,
.header-support:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.header-cta:focus-visible,
.header-support:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(85, 199, 255, 0.72);
  outline-offset: 3px;
}

.header-support:hover {
  border-color: rgba(85, 199, 255, 0.5);
  background: rgba(85, 199, 255, 0.15);
  color: #35c3ff;
}

.header-cta,
.button-primary {
  background: var(--orange-500);
  color: var(--navy-950);
  box-shadow: 0 16px 34px rgba(255, 138, 31, 0.24);
}

.button-primary:hover,
.header-cta:hover {
  background: var(--orange-400);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-quiet {
  width: 100%;
  border-color: rgba(16, 32, 51, 0.14);
  background: #ffffff;
  color: var(--ink);
}

.button-quiet:hover {
  border-color: rgba(255, 138, 31, 0.6);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1180px);
  align-items: start;
  overflow: hidden;
  margin: 0;
  padding: 52px max(20px, calc((100vw - 1180px) / 2)) 48px;
  background:
    linear-gradient(180deg, rgba(10, 26, 47, 0.22) 0%, rgba(6, 16, 30, 0.92) 100%),
    var(--navy-950);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("assets/auf-vpn-hero-rkn-focus-v3.jpg?v=8");
  background-position: left 43%;
  background-size: 120% auto;
  background-repeat: no-repeat;
  filter: saturate(1.14) contrast(1.07) brightness(1.1);
  opacity: 0.98;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 16, 30, 0.42) 0%, rgba(6, 16, 30, 0.36) 26%, rgba(6, 16, 30, 0.26) 48%, rgba(6, 16, 30, 0.1) 68%, rgba(6, 16, 30, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 16, 30, 0) 0%, rgba(6, 16, 30, 0.08) 66%, var(--navy-950) 100%),
    radial-gradient(circle at 12% 34%, rgba(70, 183, 255, 0.22), transparent 22rem),
    radial-gradient(circle at 24% 58%, rgba(255, 82, 207, 0.14), transparent 24rem),
    radial-gradient(circle at 70% 42%, rgba(255, 138, 31, 0.14), transparent 18rem),
    radial-gradient(circle at 76% 34%, rgba(85, 199, 255, 0.14), transparent 26rem);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  isolation: isolate;
  max-width: 660px;
  min-width: 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -32px -54px -30px -40px;
  z-index: -1;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 34% 32%, rgba(255, 138, 31, 0.18), transparent 34%),
    radial-gradient(ellipse at 70% 42%, rgba(85, 199, 255, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(5, 13, 26, 0.9) 0%, rgba(5, 13, 26, 0.7) 46%, rgba(5, 13, 26, 0.18) 86%, rgba(5, 13, 26, 0) 100%);
  filter: blur(4px);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-400);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(76px, 7.2vw, 96px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

h1.hero-wordmark {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  isolation: isolate;
  margin-bottom: 14px;
  font-size: clamp(78px, 7.8vw, 108px);
  text-shadow:
    0 12px 26px rgba(0, 0, 0, 0.5),
    0 0 42px rgba(85, 199, 255, 0.2);
  -webkit-text-stroke: 0;
}

h1.hero-wordmark::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 14px;
  bottom: -8px;
  z-index: -1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(85, 199, 255, 0.78), rgba(255, 138, 31, 0.92));
  box-shadow:
    0 0 22px rgba(85, 199, 255, 0.28),
    0 0 26px rgba(255, 138, 31, 0.24);
}

.hero-wordmark-auf {
  display: inline-block;
  color: #eafdff;
  filter:
    drop-shadow(0 2px 0 rgba(39, 128, 181, 0.74))
    drop-shadow(0 8px 0 rgba(5, 22, 39, 0.52))
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 22px rgba(85, 199, 255, 0.35));
  text-shadow:
    0 1px 0 #ffffff,
    0 0 26px rgba(85, 199, 255, 0.34);
}

.hero-wordmark-vpn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0.72em;
  padding: 0.08em 0.18em 0.12em;
  border: 1px solid rgba(255, 225, 172, 0.66);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #ffbd67 0%, #ff8a1f 54%, #f56f16 100%);
  color: #06101e;
  font-size: 0.58em;
  font-weight: 800;
  line-height: 0.9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -12px 24px rgba(128, 51, 0, 0.14),
    0 0 34px rgba(255, 138, 31, 0.4),
    0 16px 34px rgba(0, 0, 0, 0.4);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(0.03em);
}

h2 {
  margin-bottom: 0;
  max-width: 780px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 625px;
  margin-bottom: 24px;
  color: #edf6ff;
  font-size: 18px;
  line-height: 1.46;
  font-weight: 400;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.62),
    0 4px 12px rgba(0, 0, 0, 0.58),
    0 0 24px rgba(6, 16, 30, 0.62);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-points {
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  flex: 1 1 0;
  min-width: 150px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 26, 45, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  color: var(--orange-400);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.hero-points span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.proof-strip {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin: -72px auto 0;
  padding: 0 20px 56px;
  gap: 0;
}

.proof-strip div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.proof-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-weight: 600;
}

.proof-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.ru-access-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.18), transparent 34%),
    linear-gradient(315deg, rgba(53, 211, 139, 0.1), transparent 38%),
    var(--navy-800);
}

.ru-access-section .section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.ru-access-section h2 {
  max-width: 760px;
  font-size: 40px;
  line-height: 1.14;
}

.ru-access-section .section-heading p {
  color: #d3e2f1;
}

.ru-access-section .section-heading .eyebrow {
  color: var(--orange-400);
}

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

.access-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.access-card-main {
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.26), transparent 58%),
    rgba(255, 255, 255, 0.1);
}

.access-label {
  display: inline-flex;
  align-self: flex-start;
  min-height: 32px;
  align-items: center;
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(255, 138, 31, 0.18);
  color: var(--orange-400);
  font-size: 13px;
  font-weight: 600;
}

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

.access-card p {
  margin-bottom: 0;
  color: #d3e2f1;
}

.section,
.persona-section,
.ru-access-section,
.device-band,
.partner-section,
.start-section {
  width: 100%;
  min-width: 0;
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
}

.section,
.persona-section {
  color: var(--ink);
  background: #eef5fb;
}

.section-heading {
  min-width: 0;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.55;
}

.section-heading .eyebrow {
  color: #c75f00;
  font-size: 13px;
}

.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.persona-section {
  background:
    linear-gradient(135deg, rgba(85, 199, 255, 0.18), transparent 32%),
    linear-gradient(315deg, rgba(255, 138, 31, 0.16), transparent 34%),
    #f7fbff;
}

.persona-section .section-heading {
  max-width: 880px;
}

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

.persona-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(16, 32, 51, 0.08);
}

.persona-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #55c7ff, var(--orange-500));
}

.persona-card-dark {
  border-color: rgba(85, 199, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.2), transparent 48%),
    var(--navy-900);
  color: var(--white);
}

.persona-tag {
  align-self: flex-start;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(255, 138, 31, 0.14);
  color: #c75f00;
  font-size: 13px;
  font-weight: 600;
}

.persona-card-dark .persona-tag {
  background: rgba(85, 199, 255, 0.12);
  color: #bfeaff;
}

.persona-card h3 {
  margin-top: 26px;
  font-size: 22px;
}

.persona-card p {
  color: var(--muted-dark);
}

.persona-card-dark p {
  color: #d3e2f1;
}

.persona-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.persona-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  color: var(--muted-dark);
  font-size: 15px;
}

.persona-card-dark li {
  color: #e6f3ff;
}

.persona-card li::before {
  content: "✓";
  color: #0b8d59;
  font-weight: 600;
}

.persona-card-dark li::before {
  color: var(--orange-400);
}

.persona-close {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 32, 51, 0.08);
}

.persona-close strong {
  font-size: 18px;
}

.persona-close span {
  color: var(--muted-dark);
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  margin-bottom: 16px;
}

.scenario,
.feature-item,
.price-card,
.special-grid article,
.review,
.partner-calculator,
.download-panel,
.faq-list details {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 32, 51, 0.08);
}

.scenario {
  min-height: 260px;
  padding: 26px;
}

.scenario-large {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.24), transparent 46%),
    var(--navy-800);
}

.scenario p {
  max-width: 500px;
  color: var(--muted-dark);
}

.scenario-large p {
  color: #d3e2f1;
}

.card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 42px;
  border-radius: 8px;
  background: var(--orange-500);
  color: var(--navy-950);
  font-weight: 600;
}

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

.feature-item {
  min-height: 154px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 20px;
}

.check {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(53, 211, 139, 0.15);
  color: #0b8d59;
  font-weight: 500;
}

.feature-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.feature-item p {
  margin: 0;
  color: var(--muted-dark);
}

.device-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 40px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 138, 31, 0.2), rgba(85, 199, 255, 0.08)),
    var(--navy-800);
}

.device-band h2 {
  max-width: 620px;
  font-size: 40px;
}

.device-list {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.device-list li {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #e6f3ff;
  font-weight: 500;
}

.device-list li.is-soon,
.download-platforms span.is-soon {
  border-style: dashed;
  opacity: 0.72;
}

.pricing-section {
  background: #f7fbff;
}

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

.price-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(255, 138, 31, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 138, 31, 0.13), transparent 45%),
    #ffffff;
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 8px;
  padding: 7px 10px;
  background: var(--navy-900);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.plan-label {
  margin: 0 0 10px;
  color: #c75f00;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 0;
}

.price span {
  display: block;
  color: var(--ink);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.price-note {
  min-height: 48px;
  margin: 8px 0 24px;
  color: var(--muted-dark);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: var(--muted-dark);
}

.price-card li::before {
  content: "✓";
  color: #0b8d59;
  font-weight: 500;
}

.price-card .button {
  margin-top: auto;
}

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

.special-grid article {
  min-height: 128px;
  padding: 22px;
  border-left: 4px solid var(--orange-500);
}

.special-grid strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.special-grid p {
  margin: 0;
  color: var(--muted-dark);
}

.reviews-section {
  background: #eef5fb;
}

.review-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, calc((100% - 32px) / 3));
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 138, 31, 0.55) rgba(16, 32, 51, 0.12);
}

.review-track::-webkit-scrollbar {
  height: 10px;
}

.review-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.12);
}

.review-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.55);
}

.carousel-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 31, 0.5);
  color: #c75f00;
}

.review {
  scroll-snap-align: start;
  margin: 0;
  padding: 24px;
}

.stars {
  margin-bottom: 14px;
  color: var(--orange-500);
  font-size: 17px;
  letter-spacing: 0;
}

.review-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.review-head strong,
.review-head small {
  display: block;
}

.review-head strong {
  color: var(--ink);
  font-weight: 600;
}

.review-head small {
  margin-top: 2px;
  color: var(--muted-dark);
}

.review-avatar {
  width: 58px;
  height: 58px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-image: url("assets/review-avatars.png");
  background-repeat: no-repeat;
  background-size: 400% 300%;
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.16);
}

.avatar-1 {
  background-position: 0% 0%;
}

.avatar-2 {
  background-position: 33.333% 0%;
}

.avatar-3 {
  background-position: 66.666% 0%;
}

.avatar-4 {
  background-position: 100% 0%;
}

.avatar-5 {
  background-position: 0% 50%;
}

.avatar-6 {
  background-position: 33.333% 50%;
}

.avatar-7 {
  background-position: 66.666% 50%;
}

.avatar-8 {
  background-position: 100% 50%;
}

.avatar-9 {
  background-position: 0% 100%;
}

.avatar-10 {
  background-position: 33.333% 100%;
}

.avatar-11 {
  background-position: 66.666% 100%;
}

.avatar-12 {
  background-position: 100% 100%;
}

.review blockquote {
  min-height: 150px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 42px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(85, 199, 255, 0.11), transparent 36%),
    linear-gradient(315deg, rgba(255, 138, 31, 0.18), transparent 42%),
    var(--navy-900);
}

.partner-copy p {
  max-width: 720px;
  min-width: 0;
  color: #d3e2f1;
  font-size: 18px;
}

.partner-steps {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.partner-steps span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #e6f3ff;
  font-weight: 500;
}

.partner-calculator {
  padding: 26px;
  color: var(--ink);
}

.calculator-head {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.calculator-head span {
  color: var(--muted-dark);
  font-weight: 500;
}

.calculator-head strong {
  color: var(--orange-500);
  font-size: 54px;
  line-height: 0.9;
  white-space: nowrap;
}

.calc-row {
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.calc-row span {
  color: var(--muted-dark);
  font-weight: 500;
}

.calc-row strong {
  color: var(--ink);
  font-size: 20px;
  text-align: right;
}

.partner-calculator p {
  margin: 22px 0;
  color: var(--muted-dark);
}

.faq-section {
  background: #f7fbff;
}

.faq-list {
  max-width: 880px;
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 138, 31, 0.13);
  color: #c75f00;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted-dark);
}

.start-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 42px;
  align-items: start;
  color: var(--white);
  background: var(--navy-950);
}

.start-copy p {
  max-width: 640px;
  min-width: 0;
  color: #d3e2f1;
  font-size: 18px;
}

.start-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.start-copy li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  color: #d3e2f1;
}

.start-copy li::before {
  content: "✓";
  color: var(--green-400);
  font-weight: 500;
}

.download-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  color: var(--ink);
}

.download-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.download-panel-head span {
  color: var(--muted-dark);
  font-weight: 600;
}

.download-panel-head strong {
  color: var(--orange-500);
  font-size: 48px;
  line-height: 0.95;
}

.download-button {
  width: 100%;
}

.download-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.download-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 8px;
  padding: 8px 10px;
  background: #f7fbff;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 600;
}

.download-panel p {
  margin: 0;
  color: var(--muted-dark);
}

.support-link,
.footer-support {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.support-link {
  width: fit-content;
  border: 1px solid rgba(34, 158, 217, 0.22);
  border-radius: 8px;
  padding: 11px 13px;
  background: rgba(34, 158, 217, 0.08);
  color: #168ac5;
}

.support-link:hover,
.support-link:focus-visible,
.footer-support:hover,
.footer-support:focus-visible {
  color: #35c3ff;
}

.support-link:focus-visible,
.footer-support:focus-visible {
  outline: 3px solid rgba(85, 199, 255, 0.72);
  outline-offset: 3px;
}

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-950);
  color: var(--muted);
}

.footer-brand img {
  width: 30px;
  height: 30px;
}

.footer-support {
  min-width: max-content;
  color: #9edfff;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .partner-section,
  .start-section,
  .device-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 570px;
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .hero::after {
    left: 0;
    background-position: left 45%;
    background-size: 124% auto;
  }

  .hero-copy,
  .hero-lead {
    max-width: 590px;
  }

  h1.hero-wordmark {
    font-size: clamp(68px, 8.6vw, 88px);
    gap: 12px;
  }

  .scenario-grid,
  .persona-grid,
  .pricing-grid,
  .special-grid {
    grid-template-columns: 1fr;
  }

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

  .persona-close {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .review-track {
    grid-auto-columns: minmax(300px, calc((100% - 16px) / 2));
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: -56px;
    padding-bottom: 48px;
  }

  .proof-strip div,
  .proof-strip div:first-child,
  .proof-strip div:last-child {
    border-radius: 8px;
  }

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

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

  .price-card.featured {
    transform: none;
  }

  .device-list {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header {
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand .wordmark-auf {
    font-size: 16px;
  }

  .brand .wordmark-vpn {
    min-height: 19px;
    padding: 3px 6px 2px;
    font-size: 11px;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .header-support {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 14px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    overflow-x: visible;
  }

  .nav a {
    text-align: center;
    min-width: 0;
  }

  .hero {
    gap: 28px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero::after {
    left: 0;
    opacity: 0.74;
    background-position: left 45%;
    background-size: 138% auto;
  }

  .hero-copy,
  .hero-lead {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-actions,
  .hero-points {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  h1 {
    font-size: 58px;
  }

  h1.hero-wordmark {
    gap: 9px;
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions,
  .hero-points,
  .proof-strip,
  .footer {
    align-items: stretch;
  }

  .hero-actions,
  .hero-points,
  .footer {
    flex-direction: column;
  }

  .support-link {
    width: 100%;
    justify-content: center;
  }

  .footer-support {
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .hero-points li {
    min-width: 0;
  }

  .proof-strip div,
  .proof-strip div:first-child,
  .proof-strip div:last-child {
    border-radius: 8px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: -34px;
    padding-bottom: 38px;
  }

  .section,
  .persona-section,
  .ru-access-section,
  .device-band,
  .partner-section,
  .start-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

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

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

  .persona-card {
    min-height: auto;
  }

  .scenario {
    min-height: 220px;
  }

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

  .access-card {
    min-height: 210px;
  }

  .access-card h3 {
    margin-top: 28px;
  }

  .card-mark {
    margin-bottom: 28px;
  }

  .price-card {
    min-height: 0;
    padding: 22px;
  }

  .badge {
    position: static;
    width: max-content;
    margin-bottom: 16px;
  }

  .price span {
    font-size: 36px;
  }

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

  .review-track {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-auto-columns: minmax(0, 100%);
    padding-bottom: 12px;
  }

  .carousel-button {
    width: 100%;
    height: 42px;
    font-size: 24px;
  }

  .review {
    padding: 22px;
  }

  .review-head {
    grid-template-columns: 52px 1fr;
  }

  .review-avatar {
    width: 52px;
    height: 52px;
  }

  .review blockquote {
    min-height: 0;
  }

  .calculator-head strong {
    font-size: 44px;
  }

  .calc-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .calc-row strong {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: calc(100% - 20px);
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .header-actions .header-cta {
    width: 100%;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 30px;
  }
}
