@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* =====================================================
   DESIGN TOKENS — liquid glass / dark
===================================================== */
:root {
  --bg:           #040404;
  --bg2:          #0b0b0b;
  --card:         rgba(255, 255, 255, 0.065);
  --card-hover:   rgba(255, 255, 255, 0.115);
  --stroke:       rgba(255, 255, 255, 0.14);
  --stroke-hover: rgba(255, 255, 255, 0.32);
  --highlight:    rgba(255, 255, 255, 0.22);
  --text:         #f5f5f4;
  --muted:        #98979c;
  --accent:       #ffffff;
  --accent-fill:  rgba(255, 255, 255, 0.85);
  --accent-soft:  rgba(255, 255, 255, 0.12);
  --accent-line:  rgba(255, 255, 255, 0.42);
  --on-accent:    #050506;
  --ghost:        #c7c6cc;
  --ghost-soft:   rgba(255, 255, 255, 0.07);
  --ghost-line:   rgba(255, 255, 255, 0.2);
  --shadow:       0 22px 64px rgba(0, 0, 0, 0.55);
  --shadow-hover: 0 30px 84px rgba(0, 0, 0, 0.62);
  --radius:       20px;
  --radius-lg:    30px;
}

html.light-theme {
  --bg:           #f4f4f2;
  --bg2:          #e8e8e5;
  --card:         rgba(20, 20, 18, 0.055);
  --card-hover:   rgba(20, 20, 18, 0.1);
  --stroke:       rgba(20, 20, 18, 0.13);
  --stroke-hover: rgba(20, 20, 18, 0.3);
  --highlight:    rgba(255, 255, 255, 0.75);
  --text:         #151514;
  --muted:        #6b6a68;
  --accent:       #151514;
  --accent-fill:  rgba(15, 15, 14, 0.88);
  --accent-soft:  rgba(20, 20, 18, 0.08);
  --accent-line:  rgba(20, 20, 18, 0.3);
  --on-accent:    #f4f4f2;
  --ghost:        #4b4a48;
  --ghost-soft:   rgba(20, 20, 18, 0.05);
  --ghost-line:   rgba(20, 20, 18, 0.18);
  --shadow:       0 22px 64px rgba(40, 40, 35, 0.1);
  --shadow-hover: 0 30px 84px rgba(40, 40, 35, 0.16);
}

/* =====================================================
   BASE RESET
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: clip;
  transition: background 0.4s ease, color 0.4s ease;
}

button, a { touch-action: manipulation; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.text-center { text-align: center; align-items: center; display: flex; flex-direction: column; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* =====================================================
   LIQUID BACKGROUND — organic glass blobs
===================================================== */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  pointer-events: none;
}

/* Blobs are static by default — they only drift via pointer-driven parallax (see JS).
   Autonomous infinite looping was removed: it read as restless rather than calm. */
.blob-1 {
  width: 1100px; height: 960px;
  top: -340px; left: -280px;
  border-radius: 42% 58% 61% 39% / 46% 40% 60% 54%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.075) 0%, rgba(255,255,255,0.02) 42%, transparent 68%);
  filter: blur(110px);
}
.blob-2 {
  width: 700px; height: 840px;
  top: 16%; right: -260px;
  border-radius: 60% 40% 35% 65% / 55% 60% 40% 45%;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 45%, transparent 68%);
  filter: blur(100px);
}
.blob-3 {
  width: 560px; height: 500px;
  bottom: -60px; left: 16%;
  border-radius: 48% 52% 38% 62% / 60% 45% 55% 40%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.035) 0%, transparent 65%);
  filter: blur(90px);
}
.blob-4 {
  width: 75%; height: 380px;
  top: 54%; left: -10%;
  border-radius: 50%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.028) 50%, transparent 100%);
  filter: blur(80px);
}
.blob-5 {
  width: 420px; height: 380px;
  top: 4%; left: 48%;
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 65%);
  filter: blur(85px);
}

html.light-theme .blob-1 { background: radial-gradient(circle at 35% 30%, rgba(20,20,18,0.07) 0%, rgba(20,20,18,0.02) 42%, transparent 68%); }
html.light-theme .blob-2 { background: radial-gradient(circle at 60% 40%, rgba(20,20,18,0.05) 0%, transparent 65%); }
html.light-theme .blob-3 { background: radial-gradient(circle at 50% 50%, rgba(20,20,18,0.04) 0%, transparent 65%); }
html.light-theme .blob-4 { background: linear-gradient(100deg, transparent 0%, rgba(20,20,18,0.04) 50%, transparent 100%); }
html.light-theme .blob-5 { background: radial-gradient(circle at 50% 50%, rgba(20,20,18,0.05) 0%, transparent 65%); }


/* =====================================================
   SPLASH / INTRO
===================================================== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}
.splash img {
  width: 124px; height: 124px;
  opacity: 0;
  animation: splashLogoIn 0.7s ease 0.1s forwards;
}
.splash.is-hiding { opacity: 0; pointer-events: none; }
.splash.is-done { display: none; }
@keyframes splashLogoIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .splash img { animation: none; opacity: 1; }
}

/* =====================================================
   SCROLL PROGRESS
===================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =====================================================
   SCROLL ANIMATIONS
===================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.js .reveal.fade-left  { transform: translateX(32px); }
.js .reveal.fade-right { transform: translateX(-32px); }
.js .reveal.fade-up    { transform: translateY(22px); }
.js .reveal.is-visible { opacity: 1; transform: translate(0,0); }

/* =====================================================
   HEADER
===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,5,6,0.62);
  backdrop-filter: saturate(160%) blur(28px);
  -webkit-backdrop-filter: saturate(160%) blur(28px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: background 0.4s ease, border-color 0.4s ease;
}
html.light-theme .site-header {
  background: rgba(243,241,236,0.65);
  border-bottom: 1px solid rgba(20,18,12,0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  flex-wrap: wrap;
}

/* ── Logo ── */
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; transition: opacity 0.2s; }
.brand:hover { opacity: 0.9; }

.brand-logo {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  top: -3px;
  transition: transform 0.25s ease;
}
.brand:hover .brand-logo { transform: translateY(-1px); }

.brand-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
html.light-theme .brand-logo img { filter: invert(1); }

.brand-copy { display: flex; flex-direction: column; min-width: 0; }
.brand-copy strong {
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
}
.brand-copy span { font-size: 12px; color: var(--muted); white-space: nowrap; margin-top: 4px; font-weight: 500; letter-spacing: 0.01em; }

/* ── Desktop nav ── */
.desktop-nav { display: flex; gap: 20px; align-items: center; flex: 1; justify-content: center; }
.desktop-nav a {
  color: var(--text);
  opacity: 0.6;
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--ghost);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { opacity: 1; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }

/* ── Header actions ── */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.dropdown-container { position: relative; }
.dropdown-toggle {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}
.dropdown-toggle:hover { border-color: var(--stroke-hover); background: rgba(255,255,255,0.07); }
html.light-theme .dropdown-toggle:hover { background: rgba(20,18,12,0.05); }

.arrow-icon { opacity: 0.5; transition: transform 0.25s ease; }
.dropdown-toggle.open .arrow-icon { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  background: rgba(20,20,23,0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  width: 196px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 100;
}
html.light-theme .dropdown-menu { background: rgba(255,255,255,0.9); }
.dropdown-menu.show { display: flex; animation: dropIn 0.18s ease; }
.dropdown-menu button {
  background: none; border: none;
  padding: 10px 12px;
  width: 100%; text-align: left;
  color: var(--text); font-weight: 600;
  cursor: pointer; border-radius: 8px;
  transition: background 0.18s;
  display: flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 14px;
}
.dropdown-menu button:hover { background: rgba(255,255,255,0.08); }
html.light-theme .dropdown-menu button:hover { background: rgba(20,18,12,0.05); }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.theme-switch {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.theme-switch:hover { background: rgba(255,255,255,0.07); border-color: var(--stroke-hover); }
.icon-sun, .icon-moon { width: 18px; height: 18px; }
.icon-moon { display: none; }
html.light-theme .icon-sun  { display: none; }
html.light-theme .icon-moon { display: block; }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px;
  padding: 13px 28px;
  font-weight: 700; font-size: 15px; font-family: inherit;
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  position: relative;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent-fill);
  color: var(--on-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
.btn-primary:hover { background: var(--accent); box-shadow: 0 4px 18px rgba(0,0,0,0.26); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  color: var(--text);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--stroke-hover); }
html.light-theme .btn-secondary { background: rgba(255,255,255,0.45); }
html.light-theme .btn-secondary:hover { background: rgba(255,255,255,0.7); }

.btn-ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--text);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--stroke-hover); }

/* =====================================================
   HERO
===================================================== */
.hero { padding: 112px 0 88px; position: relative; overflow: hidden; }
.hero-inner { text-align: center; }

.hero-watermark {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -260px;
  width: 640px;
  height: 640px;
  transform: translateY(-48%);
  object-fit: contain;
  opacity: 0.06;
  pointer-events: none;
}
html.light-theme .hero-watermark { filter: invert(1); opacity: 0.05; }
@media (max-width: 980px) {
  .hero-watermark { width: 440px; height: 440px; right: -190px; }
}
@media (max-width: 640px) {
  .hero-watermark { display: none; }
}

.hero-copy {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-copy::before {
  content: '';
  position: absolute;
  top: -120px; left: 56%;
  transform: translateX(-50%);
  width: 760px; height: 760px;
  border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-copy > * { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--ghost-line);
  background: var(--ghost-soft);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  box-shadow: inset 1px 1px 1px rgba(255,255,255,0.18), inset -1px -1px 1px rgba(255,255,255,0.06);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ghost);
  text-transform: uppercase;
}

h1 {
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 22px auto 18px;
  max-width: 100%;
  color: var(--text);
}

.hero-copy h1 { text-align: center; }
.vpn-wordmark {
  display: inline;
  height: 1.19em;
  width: auto;
  vertical-align: baseline;
}
html.light-theme .vpn-wordmark { filter: invert(1); }
.hero-text { color: var(--muted); font-size: clamp(16px,1.8vw,17px); line-height: 1.68; font-weight: 500; text-align: center; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; justify-content: center; }

.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; justify-content: center; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  box-shadow: inset 1px 1px 1px rgba(255,255,255,0.14), inset -1px -1px 1px rgba(255,255,255,0.05);
  font-size: 13px; font-weight: 600;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow), inset 0 1px 0 var(--highlight);
  position: relative; overflow: hidden;
}
.hero-card img { border-radius: 20px; }
.hero-card ul { list-style: none; padding: 14px 0 0; display: grid; gap: 10px; }
.hero-card li {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 13px 16px;
  font-weight: 600; font-size: 15px;
}
.hero-card li::before { content: '✓'; color: var(--accent); font-weight: 800; font-size: 14px; }

/* =====================================================
   SECTIONS
===================================================== */
.section { padding: 92px 0; }
.section.alt {
  background: rgba(255,255,255,0.012);
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
html.light-theme .section.alt {
  background: rgba(20,18,12,0.018);
  border-color: rgba(20,18,12,0.04);
}

.section-head { margin-bottom: 54px; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: clamp(16px,1.8vw,17px); line-height: 1.68; font-weight: 500; }
.section-head h2 {
  font-size: clamp(30px,4vw,46px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 14px 0 0;
  max-width: 720px;
  color: var(--text);
}

/* =====================================================
   CARD BASE — glass surface
===================================================== */
.cards { display: grid; gap: 22px; }
.cards.three, .pricing-grid, .contacts-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%,340px),1fr));
}
.cards.five { grid-template-columns: repeat(auto-fill, minmax(min(100%,200px),1fr)); }

.info-card, .flag-card, .price-card, .contact-card, .step-card, .review-card {
  background: var(--card);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow), inset 0 1px 0 var(--highlight);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative; overflow: hidden;
}

/* a faint glass glow that breathes on its own — alive at a glance, never synced card-to-card */
.info-card::before, .flag-card::before, .price-card::before, .contact-card::before, .step-card::before, .review-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 28% 22%, rgba(255,255,255,0.16), transparent 60%);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  animation: cardBreathe 8s ease-in-out infinite;
}
.info-card > *, .flag-card > *, .price-card > *, .contact-card > *, .step-card > *, .review-card > * {
  position: relative; z-index: 1;
}
@keyframes cardBreathe {
  0%, 100% { opacity: 0.22; transform: scale(1); }
  50%      { opacity: 0.5;  transform: scale(1.03); }
}
.cards > *:nth-child(1)::before, .pricing-grid > *:nth-child(1)::before, .contacts-grid > *:nth-child(1)::before { animation-duration: 7.5s; animation-delay: -1.2s; }
.cards > *:nth-child(2)::before, .pricing-grid > *:nth-child(2)::before, .contacts-grid > *:nth-child(2)::before { animation-duration: 9s;   animation-delay: -4.6s; }
.cards > *:nth-child(3)::before, .pricing-grid > *:nth-child(3)::before, .contacts-grid > *:nth-child(3)::before { animation-duration: 6.8s; animation-delay: -2.7s; }
.cards > *:nth-child(4)::before { animation-duration: 8.4s; animation-delay: -0.6s; }
.cards > *:nth-child(5)::before { animation-duration: 7s;   animation-delay: -3.4s; }
.cards > *:nth-child(6)::before { animation-duration: 9.6s; animation-delay: -5.1s; }
.cards > *:nth-child(7)::before { animation-duration: 7.8s; animation-delay: -1.8s; }
.cards > *:nth-child(8)::before { animation-duration: 8.8s; animation-delay: -3.9s; }

.info-card:hover, .flag-card:hover, .step-card:hover {
  transform: translateY(-6px);
  background: var(--card-hover);
  border-color: var(--stroke-hover);
  box-shadow: var(--shadow-hover);
}
.review-card:hover {
  transform: translateY(-4px);
  background: var(--card-hover);
  border-color: var(--stroke-hover);
  box-shadow: var(--shadow-hover);
}

.info-card h3, .flag-card h3, .contact-card h3, .step-card h3, .review-card h3 {
  margin: 0 0 11px;
  font-size: 19px; font-weight: 700; letter-spacing: -0.01em;
}
.info-card p, .flag-card p, .contact-card p, .step-card p, .review-card p {
  color: var(--muted); font-size: 15px; line-height: 1.62; font-weight: 500;
}

.card-icon {
  margin-bottom: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--ghost-soft);
  border: 1px solid var(--ghost-line);
  border-radius: 16px;
  color: var(--ghost);
}
.card-icon svg { width: 26px; height: 26px; }

/* =====================================================
   LOCATIONS
===================================================== */
.flag-card, .price-card { text-align: center; }
.flag-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
html.light-theme .flag-card { background: rgba(20, 20, 18, 0.045); }
.flag-card:hover { transform: translateY(-4px); }
.flag-img {
  height: 30px; width: auto;
  margin: 0 auto 14px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.14);
}

.server-status {
  position: absolute; top: 15px; right: 15px;
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--muted);
  background: rgba(0,0,0,0.25);
  padding: 4px 9px; border-radius: 20px;
}
html.light-theme .server-status { background: rgba(20,18,12,0.06); }
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6fcf97;
  box-shadow: 0 0 0 2px rgba(111,207,151,0.2);
  animation: statusPulse 2.5s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 2px rgba(111,207,151,0.2); }
  50%     { transform: scale(1.3); box-shadow: 0 0 0 4px rgba(111,207,151,0.08); }
}

/* =====================================================
   HOW-TO
===================================================== */
.how-to-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.steps-column { display: flex; flex-direction: column; gap: 18px; }
.video-column { display: flex; justify-content: center; }

.phone-mockup {
  width: 280px; height: 570px;
  background: #000;
  border-radius: 46px;
  padding: 14px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 32px 80px rgba(0,0,0,0.5),
    inset 0 0 0 4px #0d0d0e;
  position: relative; overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.phone-mockup:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 0 0 2px var(--accent-line), 0 40px 100px rgba(0,0,0,0.55), inset 0 0 0 4px #0d0d0e;
}
html.light-theme .phone-mockup {
  box-shadow: 0 0 0 2px rgba(20,18,12,0.1), 0 32px 80px rgba(20,18,12,0.16), inset 0 0 0 4px #e8e5dc;
}
.phone-notch {
  position: absolute; top: 24px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000; border-radius: 20px; z-index: 2;
}
.phone-mockup video { width: 100%; height: 100%; object-fit: cover; border-radius: 34px; background: #111; }

.step-card { padding: 30px 26px; }
.step-number {
  position: absolute; top: -10px; right: 14px;
  font-size: 100px; font-weight: 900; line-height: 1; z-index: 0;
  color: rgba(255,255,255,0.045);
}
html.light-theme .step-number { color: rgba(20,18,12,0.05); }
.step-card h3, .step-card p { position: relative; z-index: 1; }

/* =====================================================
   PRICING
===================================================== */
.price-card { padding: 34px 22px 26px; }
.price-card:hover {
  transform: translateY(-6px);
  background: var(--card-hover);
  border-color: var(--stroke-hover);
  box-shadow: var(--shadow-hover);
}
.price-card.popular {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent-line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-8px);
  isolation: isolate;
}
.price-card.popular::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  z-index: -1;
  pointer-events: none;
}
.price-card.popular:hover {
  transform: translateY(-10px);
  border-color: var(--accent-line);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,0.35);
}
.popular-badge {
  position: absolute; top: 20px; right: -36px;
  background: var(--accent-fill);
  color: var(--on-accent); font-size: 10px; font-weight: 800;
  text-transform: uppercase;
  padding: 5px 42px;
  transform: rotate(45deg);
  letter-spacing: 0.1em; z-index: 2;
}

#pricing .section-head, #pricing .cards, .price-card, .popular-badge { position: relative; z-index: 10; }

.price-card > span {
  display: block;
  color: var(--muted); font-weight: 600; font-size: 13px;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.07em;
  position: relative; z-index: 2;
}
.price-card.popular > span { color: var(--accent); font-weight: 700; }
.price-card strong {
  font-size: 42px; font-weight: 800; color: var(--text);
  letter-spacing: -0.03em; display: block;
  position: relative; z-index: 2; line-height: 1;
}
.price-num { font-weight: inherit; color: inherit; font-size: inherit; display: inline !important; }

.payment-methods { margin-top: 52px; text-align: center; }
.payment-methods p { font-size: 12px; color: var(--muted); margin-bottom: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.payment-icons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pay-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--card);
  backdrop-filter: blur(14px) saturate(1.25);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  font-size: 13px; font-weight: 700; color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pay-badge:hover { transform: translateY(-3px); border-color: var(--stroke-hover); }

/* =====================================================
   REFERRAL
===================================================== */
.referral-banner {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 52px 50px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; overflow: hidden;
  box-shadow: var(--shadow), inset 0 1px 0 var(--highlight);
}
.referral-banner::before {
  content: '';
  position: absolute; top: -110px; right: -90px;
  width: 380px; height: 380px;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 65%);
  pointer-events: none;
}

.ref-content { position: relative; z-index: 1; max-width: 600px; }
.ref-content h2 { margin-top: 14px; margin-bottom: 14px; }
.ref-content p { font-size: 17px; color: var(--muted); margin-bottom: 30px; line-height: 1.68; font-weight: 500; }

.ref-stats { display: flex; gap: 28px; margin-bottom: 34px; flex-wrap: wrap; }
.ref-stat { display: flex; flex-direction: column; gap: 5px; }
.ref-stat strong { font-size: 32px; font-weight: 800; line-height: 1; color: var(--accent); }
.ref-stat span { font-size: 13px; color: var(--muted); font-weight: 500; max-width: 138px; line-height: 1.4; }

.ref-image {
  width: 120px; height: 120px;
  display: grid; place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 28px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.3));
  flex-shrink: 0;
  transform: rotate(-4deg);
  transition: transform 0.3s ease;
}
.referral-banner:hover .ref-image { transform: rotate(0deg); }
.ref-image svg { width: 56px; height: 56px; }

/* =====================================================
   REVIEWS
===================================================== */
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 19px; font-weight: 700; color: #161616;
  overflow: hidden; flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta strong { font-size: 16px; font-weight: 700; display: block; }
.review-meta span { font-size: 12px; color: var(--muted); }
.stars { color: var(--text); letter-spacing: 3px; font-size: 16px; margin-top: 14px; }

.featured-review {
  grid-column: 1/-1;
  display: flex; gap: 30px; align-items: center;
  padding: 30px;
  background: rgba(255,255,255,0.06);
}
.review-video-wrapper {
  flex-shrink: 0; width: 190px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4); background: #000;
  aspect-ratio: 9/16;
}
.review-video-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.featured-review .review-content { flex: 1; }
.featured-text { font-size: 20px !important; font-weight: 500; color: var(--text) !important; margin: 14px 0; line-height: 1.55; }

/* =====================================================
   CONTACTS
===================================================== */
.contact-card { display: flex; align-items: center; gap: 18px; padding: 22px; }

a.contact-card:hover {
  transform: translateY(-4px);
  background: var(--card-hover);
  box-shadow: var(--shadow);
}

.contact-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s;
}

/* Brand colors kept true-to-brand (Telegram/YouTube/TikTok), not part of the site accent system */
.contact-card[data-brand="tg"] .contact-icon-wrap { background: rgba(42,171,238,0.1); border-color: rgba(42,171,238,0.22); }
.contact-card[data-brand="yt"] .contact-icon-wrap { background: rgba(255,0,0,0.09); border-color: rgba(255,0,0,0.2); }
.contact-card[data-brand="tt"] .contact-icon-wrap { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }

a.contact-card[data-brand="tg"]:hover { border-color: rgba(42,171,238,0.4); }
a.contact-card[data-brand="tg"]:hover .contact-icon-wrap { background: rgba(42,171,238,0.2); border-color: rgba(42,171,238,0.55); transform: scale(1.08) rotate(4deg); }

a.contact-card[data-brand="yt"]:hover { border-color: rgba(255,0,0,0.32); }
a.contact-card[data-brand="yt"]:hover .contact-icon-wrap { background: rgba(255,0,0,0.17); border-color: rgba(255,0,0,0.45); transform: scale(1.08) rotate(4deg); }

a.contact-card[data-brand="tt"]:hover { border-color: rgba(255,255,255,0.2); }
a.contact-card[data-brand="tt"]:hover .contact-icon-wrap { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); transform: scale(1.08) rotate(4deg); }

.contact-icon-wrap svg { width: 26px; height: 26px; display: block; }
.contact-card h3 { font-size: 16px; color: var(--text); margin-bottom: 3px; }
.contact-card p { font-size: 14px; margin: 0; }

/* =====================================================
   FAQ
===================================================== */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--stroke);
  border-radius: 18px; overflow: hidden;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.faq-item:hover { background: var(--card-hover); border-color: var(--stroke-hover); }
.faq-item.active { border-color: var(--ghost-line); }

.faq-question {
  width: 100%; padding: 20px 22px;
  background: none; border: none;
  color: var(--text); font-size: 16px; font-weight: 600;
  text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  cursor: pointer; font-family: inherit;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--ghost-soft);
  border: 1px solid var(--ghost-line);
  color: var(--ghost);
  font-size: 18px; font-weight: 300; line-height: 1;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-answer p { color: var(--muted); line-height: 1.68; padding: 0 22px 20px; font-weight: 500; font-size: 15px; }

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 44px 0; margin-top: 40px;
}
html.light-theme .site-footer { border-color: rgba(20,18,12,0.07); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--muted); font-size: 14px; }
.footer-brand img { width: 28px; height: 28px; object-fit: contain; }
html.light-theme .footer-brand img { filter: invert(1); }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.mobile-cta { display: none; }

/* =====================================================
   HERO: FREE TRIAL BADGE
===================================================== */
.hero-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 100px;
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  box-shadow: inset 1px 1px 1px rgba(255,255,255,0.22), inset -1px -1px 1px rgba(255,255,255,0.07);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* =====================================================
   STEP BOT LINK
===================================================== */
.step-bot-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 16px;
  background: rgba(42,171,238,0.1);
  border: 1px solid rgba(42,171,238,0.22);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #7dd3fc;
  text-decoration: none;
  transition: all 0.22s ease;
  position: relative;
  z-index: 1;
}
.step-bot-link:hover {
  background: rgba(42,171,238,0.18);
  border-color: rgba(42,171,238,0.45);
  color: #fff;
  transform: translateY(-1px);
}

/* =====================================================
   PRICING CTA
===================================================== */
.btn-price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
}
.btn-price-cta:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--stroke-hover);
  transform: translateY(-2px);
}
.price-card.popular .btn-price-cta {
  background: var(--accent-fill);
  border-color: transparent;
  color: var(--on-accent);
}
.price-card.popular .btn-price-cta:hover {
  filter: brightness(1.08);
}

/* =====================================================
   MODALS
===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; animation: modalFadeIn 0.2s ease; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: rgba(20,20,23,0.85);
  backdrop-filter: blur(28px);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 44px 48px;
  max-width: 700px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  position: relative;
  isolation: isolate;
  box-shadow: var(--shadow-hover), inset 0 1px 0 var(--highlight);
  animation: modalSlideIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-box::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  z-index: -1;
  pointer-events: none;
}
@keyframes modalSlideIn { from { transform: translateY(20px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
html.light-theme .modal-box { background: rgba(255,255,255,0.85); }
.modal-box::-webkit-scrollbar { width: 5px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: var(--stroke-hover); border-radius: 4px; }
.modal-box h2 { font-size: 26px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.modal-box p { color: var(--muted); font-size: 15px; line-height: 1.72; margin-bottom: 14px; font-weight: 500; }
.modal-box h3 { margin: 26px 0 10px; font-size: 16px; font-weight: 700; color: var(--text); }
.modal-box ul { padding-left: 20px; margin-bottom: 14px; }
.modal-box li { color: var(--muted); font-size: 15px; line-height: 1.72; font-weight: 500; margin-bottom: 6px; }
.modal-box a { color: var(--accent); text-decoration: underline; }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 20px; line-height: 1;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text); }

/* =====================================================
   FOOTER LEGAL
===================================================== */
.footer-legal { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-legal-notice { color: var(--muted); font-size: 13px; font-weight: 500; opacity: 0.45; }
.footer-legal-link {
  color: var(--muted); font-size: 13px; font-weight: 500;
  opacity: 0.65; transition: opacity 0.2s; text-decoration: underline; text-underline-offset: 2px;
}
.footer-legal-link:hover { opacity: 1; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1080px) {
  .brand-copy strong { font-size: 21px; }
  .desktop-nav {
    order: 3; width: 100%; justify-content: flex-start;
    overflow-x: auto; padding: 10px 0 4px;
    -webkit-overflow-scrolling: touch; gap: 22px;
  }
  .desktop-nav::-webkit-scrollbar { display: none; }
}

@media (max-width: 900px) {
  .how-to-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-mockup { width: 260px; height: 530px; transform: rotate(0deg); }
  .referral-banner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .ref-stats { justify-content: center; }
  .ref-stat { align-items: center; }
  .ref-image { font-size: 90px; }
  .cards.three .info-card:nth-child(2) { transform: none; }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 32px); }
  .nav { padding: 12px 0; }
  .site-header { background: rgba(5,5,6,0.82); }
  html.light-theme .site-header { background: rgba(243,241,236,0.88); }

  .brand-logo { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy span { font-size: 11px; }

  .header-btn, .desktop-nav { display: none; }
  .header-actions { gap: 8px; }

  .hero { padding: 56px 0 40px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .modal-box { padding: 28px 22px; border-radius: 18px; }
  .footer-legal { justify-content: center; }

  .section { padding: 58px 0; }
  .section-head { margin-bottom: 36px; }
  .cards { gap: 14px; }
  .info-card, .flag-card, .price-card, .contact-card, .step-card, .review-card { padding: 20px; border-radius: 16px; }

  .pay-badge { width: 100%; justify-content: center; }

  .featured-review { flex-direction: column; padding: 20px; gap: 16px; text-align: center; }
  .review-video-wrapper { width: 100%; max-height: 360px; }
  .featured-review .review-header { justify-content: center; }
  .featured-text { font-size: 16px !important; }

  .faq-question { padding: 16px; font-size: 15px; }
  .faq-answer p { padding: 0 16px 18px; }

  .footer-inner { flex-direction: column; text-align: center; }

  .mobile-cta {
    position: fixed;
    left: 14px; right: 14px; bottom: 18px;
    display: flex; justify-content: center;
    padding: 17px 20px; border-radius: 100px;
    background: var(--accent-fill);
    font-weight: 800; font-size: 15px; color: var(--on-accent);
    z-index: 100;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 14px 36px rgba(0,0,0,0.4);
    text-transform: uppercase; letter-spacing: 0.07em;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
  }
  .mobile-cta:active { transform: scale(0.97); }
  body { padding-bottom: 108px; }
}

/* =====================================================
   REDUCED MOTION
===================================================== */
@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none !important; }
  .js .reveal { transition: opacity 0.3s ease !important; transform: none !important; }
  html { scroll-behavior: auto !important; }
  .info-card::before, .flag-card::before, .price-card::before, .contact-card::before, .step-card::before, .review-card::before {
    animation: none !important;
  }
}
