:root {
  --bg: #080b18;
  --bg-soft: #0e1327;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f7f9ff;
  --muted: #a9b4cf;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #38bdf8;
  --blue-strong: #2563eb;
  --violet: #8b5cf6;
  --green: #42e6a4;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

html {
  max-width: 100%;
  overflow-x: hidden;
  background: #080b18;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(139, 92, 246, 0.2), transparent 24rem),
    linear-gradient(180deg, #070a16 0%, var(--bg) 44%, #060812 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

a {
  color: inherit;
}

main,
.site-footer {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 24, 0.78);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand:hover {
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
  overflow: hidden;
}

.brand-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-link {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 46px;
  padding-inline: 1.25rem;
  text-align: center;
}

.btn-primary {
  border: 0;
  background: linear-gradient(135deg, #22d3ee, #2563eb 54%, #7c3aed);
  box-shadow: 0 15px 36px rgba(37, 99, 235, 0.36);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #67e8f9, #3b82f6 54%, #8b5cf6);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.46);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: #07101f;
  background: #fff;
}

.btn-telegram {
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: #f8fbff;
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.16);
}

.btn-telegram:hover,
.btn-telegram:focus {
  color: #06131f;
  background: #8ee9ff;
  border-color: #8ee9ff;
  transform: translateY(-1px);
}

.section-pad {
  padding: 92px 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding-top: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #8ee9ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(66, 230, 164, 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.55rem, 5.2vw, 5.7rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.17rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.trust-grid {
  display: grid;
  max-width: 780px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-item,
.advantage-item {
  --check-top: 1.22rem;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  min-height: 58px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #eef4ff;
  font-weight: 700;
  text-align: left;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.trust-item::before,
.advantage-item::before {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 0 5px rgba(66, 230, 164, 0.1);
  margin-top: calc(var(--check-top) - 1rem);
}

.trust-item::after,
.advantage-item::after {
  position: absolute;
  top: calc(var(--check-top) + 0.47rem);
  left: 1.33rem;
  width: 8px;
  height: 4px;
  border-left: 2px solid #061224;
  border-bottom: 2px solid #061224;
  content: "";
  transform: translateY(-50%) rotate(-45deg);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(10, 16, 36, 0.78);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: -40% 18% auto -30%;
  height: 320px;
  content: "";
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.4), rgba(139, 92, 246, 0.2));
  transform: rotate(-12deg);
  filter: blur(12px);
}

.status-card,
.server-list {
  position: relative;
  z-index: 1;
}

.status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 10, 24, 0.68);
  color: #dbe7ff;
  font-weight: 700;
}

.status-card strong {
  color: #fff;
  white-space: nowrap;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(66, 230, 164, 0.14);
}

.vpn-visual {
  position: relative;
  display: grid;
  height: 320px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 250px;
  height: 250px;
}

.orbit-two {
  width: 172px;
  height: 172px;
  border-color: rgba(56, 189, 248, 0.35);
}

.shield-core {
  position: relative;
  display: grid;
  width: 116px;
  height: 138px;
  place-items: center;
  border-radius: 34px 34px 48px 48px;
  background: linear-gradient(145deg, #e9fbff, #8bdcff 45%, #7c3aed);
  clip-path: polygon(50% 0, 90% 14%, 84% 78%, 50% 100%, 16% 78%, 10% 14%);
  box-shadow: 0 24px 70px rgba(56, 189, 248, 0.35);
}

.shield-core span {
  display: block;
  width: 38px;
  height: 22px;
  border-left: 8px solid #071024;
  border-bottom: 8px solid #071024;
  transform: rotate(-45deg) translate(2px, -2px);
}

.server-list {
  display: grid;
  gap: 0.7rem;
}

.server-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.server-list strong {
  color: var(--green);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.section-heading p,
.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-card,
.step-card,
.pricing-card,
.review-card,
.faq-item {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.feature-card,
.step-card,
.pricing-card,
.review-card {
  padding: 1.35rem;
}

.feature-card p,
.step-card p,
.pricing-card p,
.review-card cite {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  min-width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  padding-inline: 0.7rem;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
  color: #9beeff;
  font-weight: 900;
}

.advantages-section,
.tariffs-section,
.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.step-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-weight: 900;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.pricing-card p {
  flex: 1;
}

.pricing-card-featured {
  border-color: rgba(56, 189, 248, 0.42);
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.16), rgba(139, 92, 246, 0.08)),
    var(--panel);
  transform: translateY(-10px);
}

.price {
  margin: 0.8rem 0 1rem;
  color: #fff;
  font-size: 2.65rem;
  font-weight: 950;
  line-height: 1;
}

.badge-profit {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(66, 230, 164, 0.16);
  color: #8fffd2;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card {
  margin: 0;
}

.review-card p {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
}

.review-card cite {
  font-style: normal;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  height: auto;
  margin-bottom: 0.8rem;
  overflow: hidden;
  color: var(--text);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 850;
  text-align: left;
  box-shadow: none;
}

.faq-question:not(.collapsed),
.faq-question:focus {
  color: #fff;
  background: rgba(56, 189, 248, 0.08);
  box-shadow: none;
}

.faq-question::after {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(56, 189, 248, 0.14);
  background-position: center;
  background-size: 14px;
  filter: invert(88%) sepia(24%) saturate(691%) hue-rotate(161deg) brightness(104%) contrast(101%);
}

.faq-answer {
  color: var(--muted);
}

.faq-answer .accordion-body {
  padding: 0.85rem 1.25rem 1.25rem;
}

.faq-answer p {
  margin-bottom: 0;
}

.final-cta {
  padding: 72px 0 96px;
}

.final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.19), rgba(139, 92, 246, 0.14)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.final-cta-box p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 6, 17, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.35rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.policy-section {
  padding-top: 116px;
}

.policy-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(1.35rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(10, 16, 36, 0.78);
  box-shadow: var(--shadow);
}

.policy-shell .section-heading {
  margin-bottom: 2rem;
  text-align: left;
}

.policy-shell h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
}

.policy-content {
  color: var(--muted);
  font-size: 1.02rem;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.policy-content li + li {
  margin-top: 0.45rem;
}

.copyright {
  color: var(--muted);
  white-space: nowrap;
}

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

.copyright a:hover {
  color: #fff;
}

.account-page {
  min-height: 72vh;
}

.account-alert {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
}

.account-auth-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 1.25rem;
  align-items: stretch;
}

.account-auth-copy,
.account-auth-panel,
.account-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.account-auth-copy {
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.account-auth-copy h1,
.account-topbar h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.account-auth-copy p,
.account-topbar p,
.account-card p,
.account-note {
  color: var(--muted);
}

.account-auth-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.account-auth-points span {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 750;
}

.account-auth-panel {
  padding: 1.1rem;
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding: 0.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.account-tabs .nav-link {
  width: 100%;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
}

.account-tabs .nav-link.active {
  color: #061024;
  background: #fff;
}

.account-form {
  display: grid;
  gap: 0.8rem;
}

.account-form .form-control {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.account-form .form-control:focus {
  border-color: rgba(56, 189, 248, 0.7);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(56, 189, 248, 0.14);
}

.account-form .form-label {
  margin-bottom: -0.2rem;
  color: #dbe7ff;
  font-weight: 800;
}

.account-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.account-telegram-link {
  margin-top: 1.25rem;
}

.account-card {
  height: 100%;
  padding: 1.35rem;
}

.account-connect-card {
  display: grid;
  gap: 1.2rem;
  height: auto;
}

.account-card-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #8ee9ff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-status {
  display: block;
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
}

.account-status-active {
  color: #8fffd2;
}

.account-tariff-grid {
  display: grid;
  gap: 0.65rem;
}

.account-tariff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.account-tariff-selected {
  border-color: rgba(66, 230, 164, 0.55);
  background: rgba(66, 230, 164, 0.08);
}

.account-tariff em {
  display: block;
  margin-bottom: 0.15rem;
  color: #8fffd2;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
}

.account-tariff strong {
  display: block;
  color: #fff;
  line-height: 1.2;
}

.account-tariff span {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.account-tariff .btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding-inline: 1rem;
  font-size: 0.92rem;
}

.referral-card {
  height: auto;
}

.referral-label {
  margin-bottom: 0.55rem;
  color: #dbe7ff;
  font-weight: 800;
}

.referral-link-box {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.referral-link-box .form-control {
  min-width: 0;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(6, 10, 24, 0.8);
  color: #dff8ff;
  font-weight: 700;
}

.referral-link-box .form-control:focus {
  border-color: rgba(56, 189, 248, 0.55);
  background: rgba(6, 10, 24, 0.9);
  box-shadow: 0 0 0 0.2rem rgba(56, 189, 248, 0.12);
  color: #fff;
}

.referral-link-box .btn {
  flex: 0 0 auto;
}

.referral-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.referral-level {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.referral-level span,
.referral-level small {
  display: block;
  color: var(--muted);
  line-height: 1.3;
}

.referral-level strong {
  display: block;
  margin: 0.35rem 0 0.15rem;
  color: #fff;
  font-size: 1.05rem;
}

.referral-history {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.referral-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.referral-history-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.referral-history-row span {
  overflow-wrap: anywhere;
  color: var(--muted);
}

.referral-history-row strong {
  flex: 0 0 auto;
  color: #8fffd2;
}

.partner-link-card {
  height: auto;
  padding: 1.15rem;
}

.partner-link-card p {
  max-width: 620px;
  margin-bottom: 0;
}

.partner-metrics-list {
  display: grid;
  gap: 0.7rem;
}

.partner-metric-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.partner-metric-item:has(.partner-metric-button:not(.collapsed)) {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.07);
  box-shadow: 0 14px 38px rgba(37, 99, 235, 0.12);
}

.partner-metric-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 1rem 1.15rem;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.partner-metric-button:not(.collapsed),
.partner-metric-button:focus {
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.partner-metric-button span {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.partner-metric-button small {
  color: #8ee9ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.partner-metric-button strong {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.1;
}

.partner-metric-button::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 50%;
  background-color: rgba(56, 189, 248, 0.1);
  background-position: center;
  background-size: 13px;
  filter: invert(88%) sepia(24%) saturate(691%) hue-rotate(161deg) brightness(104%) contrast(101%);
}

.partner-metric-button:not(.collapsed)::after {
  background-color: rgba(56, 189, 248, 0.14);
  filter: invert(88%) sepia(24%) saturate(691%) hue-rotate(161deg) brightness(104%) contrast(101%);
}

.partner-metric-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0 1.15rem 1rem;
  background: transparent;
}

.partner-metric-level {
  padding: 0.8rem;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 8px;
  background: rgba(6, 10, 24, 0.36);
}

.partner-metric-level span,
.partner-metric-level small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.partner-metric-level strong {
  display: block;
  margin: 0.3rem 0 0.1rem;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.15;
}

.partner-payout-card {
  display: flex;
  height: auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
}

.partner-payout-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #8fffd2;
  font-size: 1.45rem;
  line-height: 1.15;
}

.partner-payout-card p {
  margin-bottom: 0;
}

.partner-min-payout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 0.65rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(66, 230, 164, 0.28);
  border-radius: 8px;
  background: rgba(66, 230, 164, 0.11);
  color: #dff8ff;
  font-weight: 850;
}

.partner-min-payout span {
  color: #dff8ff;
}

.partner-min-payout strong {
  margin: 0;
  color: #8fffd2;
  font-size: 1rem;
  line-height: 1.2;
}

.partner-payout-form {
  display: flex;
  flex: 0 1 640px;
  gap: 0.7rem;
}

.partner-payout-form .form-control {
  min-height: 46px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(6, 10, 24, 0.8);
  color: #dff8ff;
  font-weight: 700;
}

.partner-payout-form .form-control:focus {
  border-color: rgba(56, 189, 248, 0.55);
  background: rgba(6, 10, 24, 0.9);
  box-shadow: 0 0 0 0.2rem rgba(56, 189, 248, 0.12);
  color: #fff;
}

.partner-payout-form .btn {
  flex: 0 0 auto;
}

.partner-requests-card {
  height: auto;
}

.partner-requests-list {
  display: grid;
  gap: 0.7rem;
}

.partner-request-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.partner-request-main {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.partner-request-main strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.partner-request-main span,
.partner-request-main small {
  overflow-wrap: anywhere;
  color: var(--muted);
  line-height: 1.35;
}

.partner-request-side {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
}

.partner-request-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  color: #dff8ff;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.partner-request-status-processing {
  border-color: rgba(124, 92, 255, 0.28);
  background: rgba(124, 92, 255, 0.12);
  color: #d8ccff;
}

.partner-request-status-paid,
.partner-request-status-completed,
.partner-request-status-processed {
  border-color: rgba(66, 230, 164, 0.28);
  background: rgba(66, 230, 164, 0.1);
  color: #8fffd2;
}

.partner-request-status-canceled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
}

.admin-payout-card {
  border-color: rgba(56, 189, 248, 0.22);
}

.admin-payout-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-payout-actions form {
  margin: 0;
}

.qr-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 244px;
  min-height: 244px;
  padding: 0.75rem;
  border-radius: 8px;
  color: #06131f;
  background: #fff;
}

.qr-box img,
.qr-box canvas {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.vpn-profile-list {
  display: grid;
  gap: 1rem;
}

.vpn-profile-row {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.vpn-profile-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.vpn-profile-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.vpn-profile-title strong {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.vpn-link-actions {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.vpn-link-box {
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  margin-bottom: 0;
  padding: 1rem;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 8px;
  background: rgba(6, 10, 24, 0.8);
  color: #dff8ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
}

.vpn-link-actions .btn {
  flex: 0 0 auto;
}

.account-card .table-responsive {
  margin-top: 1rem;
  overflow-x: auto;
}

.account-card .table {
  min-width: 820px;
  color: var(--text);
}

.account-card .table th,
.account-card .table td {
  padding: 0.75rem;
  border-color: var(--line);
  vertical-align: middle;
}

.account-card .table small {
  color: var(--muted);
}

.account-hint {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.08);
}

.account-connect-card .account-hint {
  margin-top: 0;
  margin-bottom: 0;
}

.account-hint strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #dff8ff;
}

.account-hint p {
  margin-bottom: 0;
  color: var(--muted);
}

.instruction-item {
  height: auto;
  overflow: hidden;
  margin-bottom: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  color: var(--text);
}

.instruction-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 850;
  text-align: left;
  box-shadow: none;
}

.instruction-button:not(.collapsed),
.instruction-button:focus {
  color: #fff;
  background: rgba(56, 189, 248, 0.08);
  box-shadow: none;
}

.instruction-button::after {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(56, 189, 248, 0.14);
  background-position: center;
  background-size: 14px;
  filter: invert(88%) sepia(24%) saturate(691%) hue-rotate(161deg) brightness(104%) contrast(101%);
}

.instruction-button:not(.collapsed)::after {
  background-color: rgba(56, 189, 248, 0.14);
  filter: invert(88%) sepia(24%) saturate(691%) hue-rotate(161deg) brightness(104%) contrast(101%);
}

.instruction-item .accordion-body {
  padding: 0.85rem 1.25rem 1.25rem;
  color: var(--muted);
  background: transparent;
}

.instruction-item .accordion-body p {
  margin-bottom: 0.9rem;
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.app-links .btn {
  min-height: 38px;
  font-weight: 750;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0 0.8rem;
  }

  .header-cta,
  .header-telegram {
    width: 100%;
    margin-top: 0.65rem;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

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

  .hero-panel {
    max-width: 560px;
    margin: 0 auto;
  }

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

  .final-cta-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .account-auth-grid {
    grid-template-columns: 1fr;
  }

  .account-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .partner-metric-body {
    grid-template-columns: 1fr;
  }

  .partner-payout-card {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-payout-form {
    flex: 1 1 auto;
  }

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

  .partner-request-side {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero-actions .btn,
  .final-cta-box .btn,
  .final-cta-actions .btn {
    width: 100%;
  }

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

  .vpn-visual {
    height: 250px;
  }

  .orbit-one {
    width: 208px;
    height: 208px;
  }

  .orbit-two {
    width: 142px;
    height: 142px;
  }

  .shield-core {
    width: 94px;
    height: 112px;
  }

  .status-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    margin-bottom: 2rem;
    text-align: left;
  }

  .footer-inner {
    align-items: center;
    text-align: center;
  }

  .copyright {
    white-space: normal;
  }

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

  .account-tariff {
    align-items: stretch;
    flex-direction: column;
  }

  .account-tariff .btn {
    width: 100%;
  }

  .referral-link-box {
    flex-direction: column;
  }

  .referral-link-box .btn {
    width: 100%;
  }

  .vpn-profile-row {
    grid-template-columns: 1fr;
  }

  .vpn-link-actions {
    flex-direction: column;
  }

  .vpn-link-actions .btn {
    width: 100%;
  }

  .referral-levels {
    grid-template-columns: 1fr;
  }

  .referral-history-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .partner-metric-button {
    min-height: 72px;
    padding: 0.95rem;
  }

  .partner-metric-button::after {
    width: 28px;
    height: 28px;
    background-size: 13px;
  }

  .partner-metric-body {
    padding: 0 0.95rem 0.95rem;
  }

  .partner-payout-form {
    flex-direction: column;
  }

  .partner-payout-form .btn {
    width: 100%;
  }

  .partner-request-side {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-request-side .btn {
    width: 100%;
  }

  .partner-request-status {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.35rem;
  }

  .price {
    font-size: 2.25rem;
  }

  .feature-card,
  .step-card,
  .pricing-card,
  .review-card {
    padding: 1.1rem;
  }
}
