:root {
  color-scheme: dark;
  --ink: #101820;
  --muted: #5b6670;
  --paper: #f4f7f8;
  --white: #ffffff;
  --night: #071017;
  --night-soft: #0d1922;
  --cyan: #19d3e6;
  --cyan-dark: #087d8e;
  --coral: #ff6b4a;
  --orange: #ff9c3f;
  --green: #4fe08d;
  --green-dark: #0b5d3b;
  --yellow: #ffd84d;
  --blue: #3b82f6;
  --line-light: rgba(16, 24, 32, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(3, 10, 15, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-140%);
}

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

.section {
  scroll-margin-top: 100px;
  padding: 88px max(28px, calc((100vw - 1180px) / 2));
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 16, 23, 0.76);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, top 180ms ease;
}

.site-header.scrolled {
  top: 8px;
  border-color: rgba(25, 211, 230, 0.22);
  background: rgba(5, 12, 18, 0.94);
}

.brand,
.site-nav,
.hero-actions,
.brand-copy,
.footer-brand {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #04151a;
  background: var(--cyan);
  font-size: 0.84rem;
  font-weight: 900;
}

.brand-copy {
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
}

.site-nav {
  justify-content: center;
  gap: 2px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.header-cta,
.button,
.copy-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.header-cta {
  padding: 0 18px;
  color: #031316;
  background: var(--cyan);
}

.button {
  padding: 0 22px;
}

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

.button-primary {
  color: #031316;
  background: var(--cyan);
  box-shadow: 0 14px 34px rgba(25, 211, 230, 0.22);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-green {
  color: #03170d;
  background: var(--green);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(780px, 88svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px max(28px, calc((100vw - 1180px) / 2)) 72px;
  color: var(--white);
  background: var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 17, 0.98) 0%, rgba(4, 11, 17, 0.88) 42%, rgba(4, 11, 17, 0.2) 76%),
    linear-gradient(180deg, rgba(4, 11, 17, 0.16), rgba(4, 11, 17, 0.76));
}

.hero-media,
.hero-media picture {
  position: absolute;
  inset: 0;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero-kicker,
.eyebrow,
.chapter-label,
.offer-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(79, 224, 141, 0.12);
}

.hero h1,
.section-intro h2,
.product-heading h2,
.contact-inner h2,
.faq-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: 66px;
  line-height: 1.01;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
  line-height: 1.58;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-facts div {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px 16px;
  background: rgba(7, 16, 23, 0.72);
  backdrop-filter: blur(10px);
}

.hero-facts strong {
  color: var(--white);
  font-size: 1.28rem;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.hero-next {
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-next span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
}

.service-map {
  color: var(--ink);
  background: var(--paper);
}

.section-intro {
  max-width: 860px;
  margin-bottom: 42px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--cyan-dark);
}

.section-intro h2,
.product-heading h2,
.contact-inner h2,
.faq-heading h2 {
  font-size: 54px;
  line-height: 1.04;
}

.section-intro > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  min-height: 400px;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: hidden;
  padding: 26px;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -54px;
  width: 180px;
  height: 180px;
  border: 32px solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
}

.service-card:hover {
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card-vpn {
  color: #05262c;
  background: var(--cyan);
}

.service-card-ai {
  color: #2a130c;
  background: var(--coral);
}

.service-card-proxy {
  color: #061b10;
  background: var(--green);
}

.service-index {
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 900;
  opacity: 0.58;
}

.service-label {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  opacity: 0.82;
}

.service-card h3 {
  max-width: 280px;
  margin: 18px 0 0;
  font-size: 2rem;
  line-height: 1.05;
}

.service-card p {
  max-width: 310px;
  margin: 0;
  line-height: 1.55;
  opacity: 0.76;
}

.service-proof {
  display: grid;
  gap: 4px;
  margin-top: auto;
  font-size: 0.8rem;
  opacity: 0.75;
}

.service-proof strong {
  font-size: 1.35rem;
  opacity: 1;
}

.service-link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  font-weight: 900;
}

.product-section {
  scroll-margin-top: 90px;
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 58px;
  align-items: end;
}

.product-heading h2 {
  max-width: 820px;
  color: var(--white);
}

.product-heading > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.chapter-label {
  margin-bottom: 14px;
  color: var(--cyan);
}

.vpn-section {
  color: var(--white);
  background: #06151c;
}

.vpn-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1.4fr) minmax(260px, 0.8fr);
  gap: 14px;
  color: var(--ink);
  background: #dff7f8;
}

.vpn-offer,
.platform-board,
.proof-image {
  border-radius: 8px;
}

.vpn-offer {
  min-height: 380px;
  display: grid;
  align-content: center;
  padding: 28px;
  color: var(--white);
  background: #0a2832;
}

.offer-kicker {
  color: var(--cyan);
}

.offer-number {
  margin-top: 16px;
  color: var(--cyan);
  font-size: 7rem;
  line-height: 0.82;
}

.offer-unit {
  margin-top: 12px;
  font-size: 1.55rem;
  font-weight: 900;
}

.vpn-offer > p:last-of-type {
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.proof-image {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  margin: 0;
  background: var(--white);
}

.proof-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: top center;
}

.proof-image figcaption {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.proof-image figcaption span {
  color: var(--ink);
  font-weight: 900;
}

.platform-board {
  min-height: 380px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.platform-board > p {
  margin: 0;
  color: var(--muted);
}

.platform-board > strong {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.05;
}

.platform-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.platform-list span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 8px;
  color: #0c4d58;
  background: #ddf7fa;
  font-size: 0.82rem;
  font-weight: 850;
}

.steps-section {
  color: var(--ink);
  background: #f5f7f8;
}

.minor-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.minor-heading h3,
.catalog-copy h3 {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.06;
}

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

.step-card {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--white);
}

.step-card > span {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #03161a;
  background: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.step-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top center;
}

.step-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.step-card h4,
.step-card p {
  margin: 0;
}

.step-card h4 {
  font-size: 1.3rem;
}

.step-card p {
  color: var(--muted);
  line-height: 1.55;
}

.plans-section {
  color: var(--ink);
  background: #d9f3ef;
}

.plans-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
}

.plans-heading > p {
  max-width: 400px;
  margin: 0 0 2px;
  color: #41635f;
  line-height: 1.6;
}

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

.plan-card {
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(12, 73, 63, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.plan-card p,
.plan-card h4 {
  margin: 0;
}

.plan-card p {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card p b {
  padding: 5px 7px;
  border-radius: 999px;
  color: #04130a;
  background: var(--green);
  font-size: 0.64rem;
}

.plan-card h4 {
  margin-top: 14px;
  font-size: 2.35rem;
  line-height: 1;
}

.plan-card > span {
  color: #57706c;
}

.plan-card > strong {
  margin-top: 18px;
}

.plan-card > a {
  align-self: end;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(12, 73, 63, 0.2);
  color: var(--green-dark);
  font-weight: 900;
}

.plan-card-featured {
  color: var(--white);
  border-color: #0b3129;
  background: #0b3129;
  box-shadow: var(--shadow);
}

.plan-card-featured p,
.plan-card-featured > span,
.plan-card-featured > a {
  color: rgba(255, 255, 255, 0.76);
}

.plan-card-featured > a {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.tariff-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  overflow: hidden;
  margin: 14px 0 0;
  border-radius: 8px;
  background: #0b3129;
}

.tariff-proof img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: top center;
}

.tariff-proof figcaption {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 34px;
  color: rgba(255, 255, 255, 0.62);
}

.tariff-proof figcaption span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tariff-proof figcaption strong {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.28;
}

.lachuga-section {
  color: var(--white);
  background: #21120f;
}

.lachuga-section .chapter-label {
  color: var(--coral);
}

.promo-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1.2fr) auto;
  gap: 34px;
  align-items: center;
  color: #2b1b00;
  background: var(--yellow);
}

.promo-band div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.promo-band div p,
.promo-band > p {
  margin: 0;
}

.promo-band div p {
  max-width: 130px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.promo-band div strong {
  font-size: 3.8rem;
  line-height: 1;
}

.promo-band > p {
  max-width: 540px;
  line-height: 1.55;
}

.copy-button {
  padding: 0 20px;
  color: var(--white);
  background: #2b1b00;
}

.lachuga-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(560px, 1.25fr);
  gap: 54px;
  align-items: center;
  color: var(--ink);
  background: #f2f5f7;
}

.catalog-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.catalog-groups {
  display: grid;
  gap: 1px;
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--line-light);
}

.catalog-groups div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
}

.catalog-groups span {
  color: #a5331c;
  font-size: 0.8rem;
  font-weight: 900;
}

.catalog-groups p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.phone-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 10px;
  align-items: end;
  padding: 16px;
  border-radius: 8px;
  background: #151c23;
}

.phone-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #252d36;
}

.phone-shot img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

.phone-shot-main img {
  height: 500px;
}

.phone-shot figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(7, 16, 23, 0.86);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
  backdrop-filter: blur(8px);
}

.proxy-section {
  color: var(--white);
  background: #07140f;
}

.proxy-section .chapter-label,
.proxy-section .eyebrow {
  color: var(--green);
}

.proxy-dashboard {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: 14px;
  background: #0b2219;
}

.proxy-main {
  min-height: 480px;
  display: grid;
  align-content: center;
  padding: 32px;
  border: 1px solid rgba(79, 224, 141, 0.22);
  border-radius: 8px;
  background: #07140f;
}

.proxy-main > strong {
  margin-top: 18px;
  color: var(--green);
  font-size: 6.4rem;
  line-height: 0.92;
}

.proxy-main > span {
  max-width: 260px;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.25;
}

.proxy-main > p:not(.eyebrow) {
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

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

.proxy-types article {
  min-height: 235px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(79, 224, 141, 0.18);
  border-radius: 8px;
  background: #102e22;
}

.proxy-types article > span {
  width: 44px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 6px;
  color: #03170d;
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.proxy-types h3,
.proxy-types strong {
  margin: 0;
}

.proxy-types h3 {
  font-size: 1.12rem;
}

.proxy-types strong {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.proxy-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: #06110d;
}

.proxy-gallery figure {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #101a15;
}

.proxy-gallery img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.proxy-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(4, 14, 10, 0.9);
  backdrop-filter: blur(10px);
}

.proxy-gallery figcaption span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proxy-gallery figcaption strong {
  color: var(--white);
  font-size: 0.92rem;
}

.proxy-promo {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr auto;
  gap: 32px;
  align-items: center;
  color: #04150b;
  background: var(--green);
}

.proxy-promo div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.proxy-promo div span {
  font-weight: 850;
}

.proxy-promo div strong {
  font-size: 3.6rem;
}

.proxy-promo p {
  margin: 0;
}

.copy-button-light {
  color: var(--white);
  background: #06301c;
}

.decision-section {
  color: var(--ink);
  background: var(--paper);
}

.decision-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--line-light);
}

.decision-list a {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.8fr) auto;
  gap: 28px;
  align-items: center;
  padding: 18px 22px;
  background: var(--white);
  transition: background 160ms ease, color 160ms ease;
}

.decision-list a:hover {
  color: #031316;
  background: var(--cyan);
}

.decision-list span {
  color: var(--muted);
}

.decision-list a:hover span {
  color: inherit;
}

.decision-list strong {
  font-size: 1.35rem;
}

.decision-list small {
  color: var(--cyan-dark);
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  gap: 64px;
  color: var(--white);
  background: #101922;
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  font-size: 48px;
}

.faq-heading > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.faq-heading a {
  color: var(--cyan);
  font-weight: 850;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 14px 54px 14px 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #031316;
  background: var(--cyan);
  font-size: 1.2rem;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 20px 22px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.faq-list details a {
  color: var(--cyan);
}

.contact-section {
  color: #031316;
  background: var(--cyan);
}

.contact-inner {
  min-height: 500px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.contact-inner .eyebrow {
  color: #075762;
}

.contact-inner h2 {
  max-width: 850px;
}

.contact-inner > p:not(.eyebrow) {
  margin: 20px 0 28px;
  font-size: 1.12rem;
}

.contact-inner > a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 4px solid #031316;
  font-size: 2.6rem;
  font-weight: 900;
}

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 30px max(28px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.54);
  background: #050b10;
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.copy-toast {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 13px 16px;
  border-radius: 8px;
  color: var(--white);
  background: #071017;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1100px) {
  .site-nav a {
    padding: 0 8px;
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: 58px;
  }

  .section-intro h2,
  .product-heading h2,
  .contact-inner h2 {
    font-size: 48px;
  }

  .vpn-stage {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .platform-board {
    grid-column: 1 / -1;
    min-height: auto;
  }

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

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

  .proxy-dashboard {
    grid-template-columns: 0.8fr 1.2fr;
  }

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

  .lachuga-content {
    grid-template-columns: minmax(280px, 0.7fr) minmax(480px, 1.3fr);
    gap: 34px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(25, 211, 230, 0.28);
    border-radius: 8px;
    background: #0e202b;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.nav-open .nav-toggle {
    border-color: var(--cyan);
    box-shadow: 0 0 0 2px rgba(25, 211, 230, 0.16);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  body.nav-open .site-nav {
    position: fixed;
    inset: 82px 14px auto;
    display: grid;
    justify-content: stretch;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(25, 211, 230, 0.26);
    border-radius: 8px;
    background: rgba(5, 13, 19, 0.97);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(18px);
  }

  body.nav-open .site-nav a {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.96rem;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(4, 11, 17, 0.34), rgba(4, 11, 17, 0.97) 54%),
      linear-gradient(90deg, rgba(4, 11, 17, 0.7), rgba(4, 11, 17, 0.1));
  }

  .hero-media img {
    height: 58%;
    object-position: 62% top;
  }

  .hero-next {
    display: none;
  }

  .service-grid,
  .steps-grid,
  .proxy-gallery {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 320px;
  }

  .product-heading,
  .lachuga-content,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .product-heading {
    gap: 24px;
  }

  .product-heading > p {
    max-width: 680px;
  }

  .vpn-stage,
  .proxy-dashboard {
    grid-template-columns: 1fr;
  }

  .platform-board {
    grid-column: auto;
  }

  .steps-grid {
    gap: 10px;
  }

  .step-card {
    min-height: 0;
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-rows: 1fr;
  }

  .step-card img {
    height: 280px;
  }

  .plans-heading,
  .promo-band,
  .proxy-promo {
    align-items: start;
    flex-direction: column;
  }

  .promo-band,
  .proxy-promo {
    grid-template-columns: 1fr;
  }

  .copy-button {
    justify-self: start;
  }

  .proxy-main {
    min-height: 420px;
  }

  .proxy-gallery figure,
  .proxy-gallery img {
    min-height: 500px;
    height: 500px;
  }

  .decision-list a {
    grid-template-columns: 1fr auto;
  }

  .decision-list small {
    grid-column: 2;
  }

  .faq-section {
    gap: 38px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 20px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .site-header.scrolled {
    top: 6px;
  }

  body.nav-open .site-nav {
    inset: 76px 10px auto;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: min(760px, 92svh);
    padding: 108px 20px 52px;
  }

  .hero-media img {
    height: 51%;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.52;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .hero-facts div {
    min-height: 58px;
    grid-template-columns: 90px 1fr;
    align-items: center;
  }

  .section-intro h2,
  .product-heading h2,
  .contact-inner h2,
  .faq-heading h2 {
    font-size: 36px;
  }

  .section-intro {
    margin-bottom: 30px;
  }

  .service-card {
    min-height: 340px;
    padding: 22px;
  }

  .service-card h3 {
    font-size: 1.8rem;
  }

  .product-heading {
    gap: 20px;
  }

  .vpn-stage {
    gap: 10px;
  }

  .vpn-offer,
  .platform-board,
  .proof-image {
    min-height: 0;
  }

  .vpn-offer {
    padding: 24px;
  }

  .offer-number {
    font-size: 6rem;
  }

  .proof-image img {
    min-height: 220px;
  }

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

  .minor-heading h3,
  .catalog-copy h3 {
    font-size: 2.1rem;
  }

  .step-card {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }

  .step-card img {
    height: 220px;
  }

  .plans-heading {
    display: grid;
  }

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

  .plan-card {
    min-height: 260px;
  }

  .tariff-proof {
    grid-template-columns: 1fr;
  }

  .tariff-proof img {
    height: 270px;
  }

  .tariff-proof figcaption {
    padding: 24px;
  }

  .promo-band div,
  .proxy-promo div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .promo-band div strong,
  .proxy-promo div strong {
    font-size: 3.2rem;
  }

  .copy-button {
    width: 100%;
  }

  .catalog-groups div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .phone-gallery {
    grid-template-columns: 1fr;
  }

  .phone-shot img,
  .phone-shot-main img {
    height: 500px;
  }

  .proxy-main {
    min-height: 390px;
    padding: 24px;
  }

  .proxy-main > strong {
    font-size: 5.2rem;
  }

  .proxy-types {
    grid-template-columns: 1fr;
  }

  .proxy-types article {
    min-height: 180px;
  }

  .proxy-gallery figure,
  .proxy-gallery img {
    min-height: 480px;
    height: 480px;
  }

  .decision-list a {
    min-height: 128px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .decision-list small {
    grid-column: auto;
  }

  .contact-inner {
    min-height: 430px;
  }

  .contact-inner > a {
    max-width: 100%;
    font-size: 1.7rem;
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: start;
    padding: 28px 20px;
  }

  .site-footer p {
    text-align: left;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
