:root {
  --bg: #060812;
  --bg-soft: #0a0d1b;
  --card: #101426;
  --card-2: #151a31;
  --text: #f7f8ff;
  --muted: #939ab2;
  --blue: #3977ff;
  --blue-light: #6a93ff;
  --violet: #7958df;
  --green: #56e6aa;
  --border: rgba(255,255,255,.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 45% -20%,
      rgba(54,88,190,.16),
      transparent 36%
    ),
    var(--bg);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

button,
input {
  font: inherit;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}


/* HEADER */

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: rgba(6,8,18,.76);
  backdrop-filter: blur(22px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(
      140deg,
      #1768c9,
      #7655d7
    );
  box-shadow:
    0 8px 25px rgba(45,104,215,.32);
  font-weight: 900;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 17px;
}

.brand-text span {
  color: #8792ad;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #a8aec0;
  font-size: 14px;
  transition: color .2s;
}

.nav a:hover {
  color: white;
}

.header-login {
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  font-size: 14px;
  font-weight: 700;
}


/* HERO */

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
}

.glow-one {
  width: 600px;
  height: 600px;
  right: -140px;
  top: -40px;
  background:
    radial-gradient(
      circle,
      rgba(73,84,218,.2),
      transparent 68%
    );
}

.glow-two {
  width: 350px;
  height: 350px;
  left: -180px;
  bottom: 0;
  background:
    radial-gradient(
      circle,
      rgba(104,54,175,.13),
      transparent 68%
    );
}

.hero-label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #bbc2d8;
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 700;
}

.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.hero h1 {
  max-width: 720px;
  margin: 25px 0 22px;
  font-size: clamp(52px, 6vw, 86px);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 span {
  display: block;
  color: #aeb5cd;
}

.hero-description {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.btn {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform .15s,
    opacity .15s,
    box-shadow .15s;
}

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

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

.btn-primary {
  color: white;
  background:
    linear-gradient(
      135deg,
      #1768c9,
      #5b62d8 55%,
      #7655d7
    );
  box-shadow:
    0 14px 35px rgba(43,84,218,.27);
}

.btn-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.055);
}

.btn-light {
  color: #151b35;
  background: white;
}

.hero-benefits {
  display: flex;
  gap: 35px;
  margin-top: 44px;
}

.hero-benefits div {
  display: flex;
  flex-direction: column;
}

.hero-benefits strong {
  font-size: 15px;
}

.hero-benefits span {
  margin-top: 4px;
  color: #737b94;
  font-size: 11px;
}


/* PHONE */

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
}

.phone {
  position: relative;
  width: 310px;
  min-height: 590px;
  padding: 15px 15px 20px;
  border:
    1px solid rgba(255,255,255,.18);
  border-radius: 46px;
  background:
    linear-gradient(
      160deg,
      #11172a,
      #080a12 70%
    );
  box-shadow:
    0 70px 120px rgba(0,0,0,.5),
    0 0 100px rgba(50,78,211,.14);
}

.phone::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 49px;
  background:
    linear-gradient(
      150deg,
      rgba(120,142,255,.4),
      transparent 28%,
      transparent 70%,
      rgba(120,72,205,.2)
    );
}

.phone-top {
  height: 35px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 1px 6px;
  color: #e7eafa;
  font-size: 10px;
  font-weight: 700;
}

.phone-island {
  width: 80px;
  height: 23px;
  border-radius: 20px;
  background: #030408;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 14px 6px 28px;
}

.app-logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(
      140deg,
      #1768c9,
      #7655d7
    );
  font-weight: 900;
}

.app-logo div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-logo strong {
  font-size: 14px;
}

.app-logo span {
  color: #788198;
  font-size: 9px;
}

.connection-card {
  min-height: 360px;
  padding: 19px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 28px;
  background:
    linear-gradient(
      150deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    );
  text-align: center;
}

.connection-label {
  display: block;
  color: #687089;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-align: left;
}

.connection-status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  padding: 5px 9px;
  border-radius: 20px;
  color: #72e8b4;
  background: rgba(82,230,170,.08);
  font-size: 10px;
  font-weight: 700;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.power-wrap {
  display: grid;
  place-items: center;
  margin: 45px 0 22px;
}

.power-ring {
  width: 155px;
  height: 155px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(58,98,225,.28),
      rgba(96,70,202,.12) 52%,
      transparent 69%
    );
  box-shadow:
    0 0 55px rgba(54,85,220,.22);
}

.power-inner {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      #2675d2,
      #6958d0
    );
  box-shadow:
    inset 0 0 18px rgba(255,255,255,.08),
    0 13px 30px rgba(49,77,210,.28);
}

.power-icon {
  color: white;
  font-size: 38px;
  transform: rotate(-90deg);
}

.connected-text {
  display: block;
  font-size: 17px;
}

.smart-route {
  display: block;
  margin-top: 8px;
  color: #80889e;
  font-size: 10px;
}

.app-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.app-stats div {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.app-stats span,
.app-stats strong {
  display: block;
}

.app-stats span {
  color: #747c93;
  font-size: 9px;
}

.app-stats strong {
  margin-top: 3px;
  font-size: 11px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border:
    1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(15,20,38,.88);
  box-shadow: 0 20px 45px rgba(0,0,0,.3);
  backdrop-filter: blur(16px);
}

.floating-card > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(72,110,235,.14);
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  color: #777f97;
  font-size: 9px;
}

.floating-card strong {
  margin-top: 2px;
  font-size: 11px;
}

.floating-speed {
  top: 145px;
  left: 15px;
}

.floating-secure {
  right: 0;
  bottom: 130px;
}


/* TRUST */

.trust-strip {
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: rgba(255,255,255,.018);
}

.trust-grid {
  min-height: 105px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
}

.trust-grid > div + div {
  border-left: 1px solid rgba(255,255,255,.055);
}

.trust-grid > div > span {
  font-size: 20px;
}

.trust-grid p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #747d96;
  font-size: 10px;
}

.trust-grid strong {
  margin-bottom: 4px;
  color: #e3e6f0;
  font-size: 12px;
}


/* GENERIC SECTION */

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 50px;
}

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

.section-heading > span,
.section-kicker,
.modal-kicker {
  color: #7193ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.section-heading h2,
.devices-card h2,
.final-inner h2 {
  margin: 12px 0 15px;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-heading p,
.devices-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}


/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.feature {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.018)
    );
}

.feature-large {
  grid-row: span 2;
  min-height: 535px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103,132,255,.22);
  border-radius: 15px;
  color: #9cb5ff;
  background: rgba(73,95,211,.09);
  font-size: 21px;
}

.feature h3 {
  margin: 26px 0 10px;
  font-size: 22px;
}

.feature p {
  max-width: 470px;
  margin: 0;
  color: #838ba2;
  font-size: 14px;
  line-height: 1.65;
}

.route-demo {
  display: flex;
  align-items: center;
  margin-top: 95px;
}

.route-point {
  width: 72px;
  text-align: center;
}

.route-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  color: #7f879b;
  background: rgba(255,255,255,.035);
  font-size: 9px;
  font-weight: 900;
}

.route-icon.active {
  color: white;
  background:
    linear-gradient(
      140deg,
      #276fcf,
      #6956cf
    );
  box-shadow: 0 0 40px rgba(73,93,218,.25);
}

.route-point span {
  display: block;
  margin-top: 9px;
  color: #767f95;
  font-size: 9px;
}

.route-line {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.09);
}

.route-line span {
  position: absolute;
  width: 40%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #557bff
  );
  animation: flow 2s linear infinite;
}

@keyframes flow {
  from { left: 0; }
  to { left: 60%; }
}


/* STEPS */

.how-section {
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(33,40,83,.13),
      transparent
    );
}

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

.step {
  position: relative;
  min-height: 275px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #0b0e1a;
}

.step-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #373d55;
  font-size: 44px;
  font-weight: 900;
}

.step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: white;
  background:
    linear-gradient(
      145deg,
      rgba(46,107,208,.8),
      rgba(109,80,207,.75)
    );
  font-size: 23px;
  font-weight: 800;
}

.step h3 {
  margin: 42px 0 10px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: #80889f;
  font-size: 13px;
  line-height: 1.65;
}


/* DEVICES */

.devices-section {
  padding: 30px 0 90px;
}

.devices-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 55px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(62,79,185,.15),
      transparent 40%
    ),
    #0b0f1e;
}

.device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.device {
  padding: 19px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}

.device div {
  margin-bottom: 17px;
  font-size: 24px;
}

.device strong,
.device span {
  display: block;
}

.device strong {
  font-size: 14px;
}

.device span {
  margin-top: 4px;
  color: #717a92;
  font-size: 10px;
}


/* PRICES */

.pricing-section {
  padding-top: 100px;
}

.pricing-grid {
  max-width: 830px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #0c0f1d;
}

.featured-price {
  border-color: rgba(97,111,235,.32);
  background:
    linear-gradient(
      145deg,
      rgba(66,77,173,.17),
      #0d101f 40%
    );
}

.popular {
  position: absolute;
  top: -12px;
  left: 30px;
  padding: 6px 10px;
  border-radius: 20px;
  color: white;
  background:
    linear-gradient(
      120deg,
      #3578db,
      #7653d4
    );
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.price-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.price-type {
  color: #7884a4;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.price-head h3 {
  margin: 8px 0 0;
  font-size: 23px;
}

.price-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}

.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 35px 0 28px;
}

.price > strong {
  font-size: 62px;
  line-height: .9;
  letter-spacing: -.06em;
}

.price > div {
  display: flex;
  flex-direction: column;
}

.price span {
  font-size: 18px;
  font-weight: 800;
}

.price small {
  margin-top: 2px;
  color: #6d758d;
  font-size: 10px;
}

.price-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  color: #a5acc0;
  font-size: 13px;
}

.price-card li::first-letter {
  color: var(--green);
}

.price-card .btn {
  width: 100%;
}

.trial-banner {
  max-width: 830px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px auto 0;
  padding: 18px 20px;
  border: 1px dashed rgba(255,255,255,.13);
  border-radius: 20px;
}

.trial-banner > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.trial-banner > div > span {
  font-size: 24px;
}

.trial-banner p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #767e95;
  font-size: 10px;
}

.trial-banner strong {
  margin-bottom: 3px;
  color: #e4e7f1;
  font-size: 13px;
}

.trial-banner .btn {
  min-height: 42px;
}


/* FAQ */

.faq-container {
  max-width: 850px;
}

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

.faq-item {
  position: relative;
  width: 100%;
  padding: 21px 55px 21px 21px;
  color: white;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.026);
  cursor: pointer;
}

.faq-item > div {
  font-weight: 700;
}

.faq-item > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #778099;
  font-size: 23px;
  transition: transform .2s;
}

.faq-item p {
  display: none;
  margin: 13px 0 0;
  color: #858da2;
  font-size: 13px;
  line-height: 1.6;
}

.faq-item.open p {
  display: block;
}

.faq-item.open > span {
  transform: rotate(45deg);
}


/* FINAL */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 35px 0 95px;
}

.final-inner {
  position: relative;
  min-height: 245px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 55px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(
      125deg,
      #1b5eae,
      #3d50bf 50%,
      #6446ad
    );
}

.final-inner > div {
  position: relative;
  z-index: 1;
}

.final-inner > span {
  font-size: 11px;
}

.final-inner h2 {
  margin-bottom: 6px;
  font-size: 42px;
}

.final-inner p {
  margin: 0;
  color: rgba(255,255,255,.7);
}

.final-glow {
  position: absolute;
}

.final-inner .btn {
  position: relative;
  z-index: 1;
}


/* FOOTER */

footer {
  border-top: 1px solid rgba(255,255,255,.055);
}

.footer-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
  color: #6e768d;
  font-size: 11px;
}

.copyright {
  color: #555d73;
  font-size: 10px;
}


/* MODAL */

.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 33px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background: #0d1120;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 17px;
  width: 34px;
  height: 34px;
  color: #9aa2b8;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.055);
  cursor: pointer;
  font-size: 23px;
}

.modal-card h2 {
  margin: 10px 0 8px;
  font-size: 29px;
}

.modal-description {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.selected-plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 25px 0;
}

.selected-plan div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
}

.selected-plan span,
.selected-plan strong {
  display: block;
}

.selected-plan span {
  color: #6e7690;
  font-size: 9px;
}

.selected-plan strong {
  margin-top: 5px;
  font-size: 14px;
}

#checkoutForm label {
  display: block;
  color: #a2a9bc;
  font-size: 11px;
  font-weight: 700;
}

#checkoutForm input {
  width: 100%;
  height: 53px;
  margin: 8px 0 12px;
  padding: 0 15px;
  color: white;
  border: 1px solid rgba(255,255,255,.1);
  outline: none;
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}

#checkoutForm input:focus {
  border-color: #5977e8;
}

#checkoutForm .btn {
  width: 100%;
}

.checkout-note {
  margin: 13px 0 0;
  color: #656d83;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 85px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-label,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-benefits {
    justify-content: center;
  }

  .hero-visual {
    margin-top: -10px;
  }

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

  .trust-grid > div:nth-child(3) {
    border-left: 0;
  }

  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .devices-card {
    grid-template-columns: 1fr;
  }

  .floating-speed {
    left: 5%;
  }

  .floating-secure {
    right: 5%;
  }

}

@media (max-width: 650px) {

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    height: 68px;
  }

  .header-login {
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 70px;
    gap: 30px;
  }

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

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-benefits {
    gap: 14px;
  }

  .hero-benefits div {
    flex: 1;
  }

  .hero-benefits strong {
    font-size: 12px;
  }

  .hero-benefits span {
    font-size: 8px;
  }

  .phone {
    width: 278px;
    min-height: 550px;
  }

  .connection-card {
    min-height: 335px;
  }

  .floating-card {
    display: none;
  }

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

  .trust-grid > div {
    padding: 15px 8px;
  }

  .trust-grid p {
    font-size: 8px;
  }

  .trust-grid strong {
    font-size: 10px;
  }

  .section {
    padding: 85px 0;
  }

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

  .section-heading h2,
  .devices-card h2 {
    font-size: 37px;
  }

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

  .feature-large {
    grid-row: auto;
    min-height: 460px;
  }

  .route-demo {
    margin-top: 65px;
  }

  .devices-card {
    padding: 30px 20px;
    gap: 35px;
  }

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

  .price-card {
    padding: 27px 22px;
  }

  .trial-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .trial-banner .btn {
    width: 100%;
  }

  .final-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    padding: 35px 25px;
  }

  .final-inner h2 {
    font-size: 35px;
  }

  .final-inner .btn {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 35px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 9px;
    margin-left: 0;
  }

  .selected-plan {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   TRIUMPHVPN HERO — FINAL V1
   ========================================================= */

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

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;

  width: 680px;
  height: 520px;

  left: -260px;
  top: -80px;

  background:
    radial-gradient(
      circle,
      rgba(70, 108, 255, 0.13) 0%,
      rgba(92, 67, 214, 0.055) 42%,
      transparent 70%
    );

  filter: blur(18px);
}


/* small top badge */

.hero-product-label {
  width: fit-content;

  border: 1px solid rgba(116, 141, 255, 0.20);

  background:
    linear-gradient(
      100deg,
      rgba(26, 43, 84, 0.56),
      rgba(38, 31, 80, 0.40)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 14px 34px rgba(0,0,0,0.16);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


/* main title */

.hero-title-premium {
  display: flex;
  flex-direction: column;

  margin: 34px 0 28px;

  font-size: clamp(62px, 5.15vw, 91px);
  font-weight: 800;
  line-height: 0.98;

  letter-spacing: -0.058em;

  color: #f5f7ff;
}

.hero-title-premium > span {
  display: block;
  white-space: nowrap;
}

.hero-title-premium > span + span {
  margin-top: 6px;
}


/* accent only on the word "только" */

.hero-title-premium em {
  position: relative;

  font-style: normal;

  color: transparent;

  background:
    linear-gradient(
      105deg,
      #b6c2ff 0%,
      #8094ff 43%,
      #ad7cff 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  filter:
    drop-shadow(0 0 22px rgba(104, 116, 255, 0.13));
}

.hero-title-premium em::after {
  content: "";

  position: absolute;

  left: 5%;
  right: 4%;
  bottom: -8px;

  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(91, 136, 255, 0.72),
      rgba(157, 102, 255, 0.64),
      transparent
    );

  opacity: 0.58;
}


/* description */

.hero-description {
  max-width: 650px;

  margin-top: 0;

  font-size: 18px;
  line-height: 1.68;

  color: rgba(205, 216, 245, 0.73);
}


/* proof line:
   intentionally not another big card */

.hero-proof {
  max-width: 650px;

  margin-top: 23px;
  padding: 0;

  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-proof p {
  color: rgba(170, 187, 225, 0.70);
}


/* buttons */

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

.hero-actions a,
.hero-actions button {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.hero-actions a:hover,
.hero-actions button:hover {
  transform: translateY(-2px);
}

.hero-actions > :first-child {
  box-shadow:
    0 18px 42px rgba(52, 96, 255, 0.23),
    0 5px 18px rgba(0,0,0,0.20);
}


/* phone gets depth instead of more UI clutter */

.phone-shell,
.phone {
  filter:
    drop-shadow(0 38px 74px rgba(0,0,0,0.36))
    drop-shadow(0 0 60px rgba(68,84,220,0.08));
}


/* ---------------- MOBILE ---------------- */

@media (max-width: 900px) {

  .hero-copy::before {
    width: 560px;
    height: 430px;

    left: 50%;
    top: -40px;

    transform: translateX(-50%);
  }

  .hero-title-premium {
    align-items: center;

    margin: 34px auto 27px;

    font-size: clamp(45px, 11.5vw, 66px);
    line-height: 1;

    letter-spacing: -0.054em;
    text-align: center;
  }

  .hero-title-premium > span {
    white-space: nowrap;
  }

  .hero-title-premium > span + span {
    margin-top: 5px;
  }

  .hero-description {
    max-width: 540px;

    margin-left: auto;
    margin-right: auto;

    font-size: 17px;
    line-height: 1.62;

    text-align: center;
  }

  .hero-proof {
    max-width: 520px;

    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 560px) {

  .hero-title-premium {
    font-size: clamp(40px, 10.8vw, 55px);
  }

  .hero-title-premium em::after {
    bottom: -5px;
  }

  .hero-description {
    font-size: 16px;
  }
}


@media (max-width: 390px) {

  .hero-title-premium {
    font-size: 39px;
  }
}

/* HERO — SAME TYPOGRAPHY FOR ACCENT WORD */

.hero-title-premium em {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-style: normal !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;

  color: #9daaff;

  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;

  filter: none;

  text-shadow:
    0 0 28px rgba(112, 125, 255, 0.18);
}

.hero-title-premium em::after {
  display: none;
}


/* HERO — SAME TYPOGRAPHY FOR ACCENT WORD */

.hero-title-premium em {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-style: normal !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;

  color: #9daaff;

  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;

  filter: none;

  text-shadow:
    0 0 28px rgba(112, 125, 255, 0.18);
}

.hero-title-premium em::after {
  display: none;
}

/* TRIUMPHVPN TELEGRAM FLOATING BUTTON */

.telegram-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 999;

  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  background:
    linear-gradient(
      135deg,
      #5488ff 0%,
      #6e70ff 48%,
      #9365ff 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 15px 38px rgba(42, 79, 220, 0.34),
    0 0 40px rgba(103, 99, 255, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.22);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;

  -webkit-tap-highlight-color: transparent;
}

.telegram-fab::before {
  content: "";

  position: absolute;
  inset: -6px;

  border-radius: inherit;

  border: 1px solid rgba(119, 132, 255, 0.18);

  opacity: 0.75;
  pointer-events: none;
}

.telegram-fab:hover {
  transform: translateY(-4px) scale(1.04);

  box-shadow:
    0 20px 48px rgba(42, 79, 220, 0.42),
    0 0 54px rgba(108, 96, 255, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.26);
}

.telegram-fab:active {
  transform: scale(0.96);
}

.telegram-fab-icon {
  width: 30px;
  height: 30px;

  fill: #ffffff;

  transform: translate(-1px, 1px);

  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,0.13));
}

.telegram-fab-tooltip {
  position: absolute;

  right: 74px;
  top: 50%;

  transform:
    translateY(-50%)
    translateX(8px);

  padding: 8px 12px;

  border-radius: 10px;

  background: rgba(15, 20, 43, 0.94);

  border: 1px solid rgba(132, 151, 255, 0.16);

  color: rgba(240, 244, 255, 0.94);

  font-size: 13px;
  font-weight: 600;
  line-height: 1;

  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.22);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;

  pointer-events: none;
}

.telegram-fab:hover .telegram-fab-tooltip {
  opacity: 1;
  visibility: visible;

  transform:
    translateY(-50%)
    translateX(0);
}


/* MOBILE */

@media (max-width: 700px) {

  .telegram-fab {
    width: 56px;
    height: 56px;

    right: 17px;
    bottom: 18px;
  }

  .telegram-fab-icon {
    width: 27px;
    height: 27px;
  }

  .telegram-fab-tooltip {
    display: none;
  }
}

