/* ═══════════════════════════════════════ */
/* VPN Site — Public landing (light)      */
/* ═══════════════════════════════════════ */

:root {
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --card: #FFFFFF;
  --border: #E2E8F0;
  --accent: #e15096;
  --accent-hover: #c9407f;
  --accent-glow: rgba(225,80,150,0.08);
  --green: #10B981;
  --text: #1A1A2E;
  --text-sec: #64748B;
  --text-dim: #94A3B8;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: var(--bg);
  /* Градиент тянется под шапку, чтобы она не создавала видимую границу с Hero */
  background-image: radial-gradient(ellipse 1100px 520px at 50% 0, var(--accent-glow), transparent 100%);
  background-repeat: no-repeat;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: var(--radius); font-size: 14px;
  font-weight: 700; cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none !important;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 8px rgba(225,80,150,0.25); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(225,80,150,0.3); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-pay { background: linear-gradient(135deg, var(--green), #059669); color: #fff; }
.btn-pay:hover { opacity: 0.9; }

/* ── Liquid Glass header (floating pills) ── */
.header {
  position: sticky; top: 0; z-index: 9999;
  background: transparent !important;
  pointer-events: none;
  padding: 0;
  border-bottom: none;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  position: relative;
  pointer-events: none;
}
.header-inner > * { pointer-events: auto; }

/* Логотип как стеклянная таблетка */
.logo-group {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 18px 6px 6px;
  text-decoration: none !important; color: var(--text);
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 100px;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 1px rgba(17,24,39,0.04),
    0 6px 20px rgba(17,24,39,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.logo-group:hover {
  transform: translateY(-1px);
  border-color: rgba(225,80,150,.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 10px 28px rgba(225,80,150,0.18);
}
.logo-group .logo-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 0; background: transparent;
  filter: drop-shadow(0 0 8px rgba(225,80,150,0.25));
  animation: logoSpin 15s linear infinite;
}
@keyframes logoSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.logo-text {
  font-size: 18px; font-weight: 800; letter-spacing: -0.3px; color: var(--text);
}

.header-right { display: flex; align-items: center; gap: 8px; }

/* Навигация — стеклянные pill-кнопки */
.nav {
  display: flex; align-items: center; gap: 2px; margin-left: 0;
  padding: 5px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 100px;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 1px rgba(17,24,39,0.04),
    0 6px 20px rgba(17,24,39,0.06);
}
.nav a, .nav .nav-btn {
  position: relative;
  padding: 9px 18px; border: none; background: transparent;
  color: var(--text); font-size: 14px; font-weight: 500;
  cursor: pointer; border-radius: 100px;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .2s ease;
  white-space: nowrap; text-decoration: none;
}
.nav a:hover, .nav .nav-btn:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.85);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 1px rgba(17,24,39,0.04),
    0 2px 10px rgba(17,24,39,0.08);
}
.nav a.active, .nav .nav-btn.active {
  color: #fff !important; background: var(--accent) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 4px 14px rgba(225,80,150,0.35);
}
.nav-login-btn, .nav a.cta, .nav .cta {
  background: var(--accent) !important; color: #fff !important; font-weight: 600 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 4px 14px rgba(225,80,150,0.35);
}
.nav-login-btn:hover, .nav a.cta:hover {
  background: var(--accent-hover) !important; transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 8px 22px rgba(225,80,150,0.45);
}

/* Круглая glass-кнопка (например Telegram-бот) */
.header-call {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: 4px;
  border-radius: 50%; cursor: pointer; color: var(--accent);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 1px rgba(17,24,39,0.04),
    0 4px 14px rgba(17,24,39,0.07);
  transition: transform .2s, box-shadow .2s, border-color .2s, background-color .2s;
  text-decoration: none;
}
.header-call svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.header-call:hover {
  transform: translateY(-1px); border-color: rgba(225,80,150,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.98), 0 8px 22px rgba(225,80,150,0.22);
}
.header-call:active { transform: scale(0.96); }

/* Бургер */
.burger {
  display: none; padding: 10px; cursor: pointer; border-radius: 14px;
  background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 4px 14px rgba(17,24,39,0.06);
}
.burger span {
  display: block; width: 22px; height: 2px; margin: 5px 0; border-radius: 2px;
  background: var(--text); transition: all .2s;
}
.mobile-menu { display: none; }

@media (max-width: 900px) {
  /* На мобилке в шапке — только лого, название и кнопка «Войти» */
  .nav {
    display: inline-flex !important;
    flex-direction: row !important;
    position: static !important;
    padding: 0 !important;
    gap: 0 !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
  .nav > a:not(.cta),
  .nav > .nav-btn:not(.cta) { display: none !important; }
  .nav > .cta { display: inline-flex !important; }
  .burger { display: none !important; }
  .header-call { display: none !important; }
  .logo-text { font-size: 15px; }
  .logo-group .logo-icon { width: 34px; height: 34px; }
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  /* Фон теперь на body — чтобы градиент тёк под прозрачную шапку без швов */
}
.hero h1 { font-size: 42px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; color: var(--text); }
.hero-sub { font-size: 17px; color: var(--text-sec); max-width: 560px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; }
.hero-stat { text-align: center; }
.hero-stat-value { display: block; font-size: 28px; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 40px; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.features-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; gap: 16px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: all 0.2s; box-shadow: var(--shadow);
}
.feature-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-sec); line-height: 1.6; }

/* Feature cards v2 */
.feature-card-v2 {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.feature-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card-v2:hover {
  border-color: rgba(225,80,150,0.2);
  box-shadow: 0 8px 32px rgba(225,80,150,0.1), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}
.feature-card-v2:hover::before { opacity: 1; }
.feature-icon-v2 {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(225,80,150,0.08), rgba(225,80,150,0.04));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.feature-card-v2:hover .feature-icon-v2 {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  box-shadow: 0 4px 16px rgba(225,80,150,0.3);
}
.feature-card-v2 h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card-v2 p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* Steps */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 16px; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; text-align: center; flex: 1; max-width: 280px; box-shadow: var(--shadow);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; margin-bottom: 12px; color: #fff;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--text-sec); }
.step-arrow { font-size: 24px; color: var(--text-dim); padding-top: 40px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 640px; margin: 0 auto; }
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; text-align: center; box-shadow: var(--shadow);
}
.price-card-accent { border-color: var(--accent); box-shadow: 0 4px 30px rgba(225,80,150,0.12); }
.price-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 16px; }
.price-value { font-size: 36px; font-weight: 900; color: var(--text); }
.price-period { font-size: 13px; color: var(--text-sec); margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 24px; text-align: left; }
.price-features li { padding: 6px 0; font-size: 14px; color: var(--text-sec); border-bottom: 1px solid var(--border); }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 32px 0; background: var(--bg-alt); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-left p, .footer-right p { font-size: 12px; color: var(--text-dim); margin-top: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 13px; color: var(--text-sec); }

/* Forms */
.form-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; max-width: 460px; margin: 0 auto; box-shadow: var(--shadow-lg);
}
.form-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; text-align: center; }
.form-sub { font-size: 14px; color: var(--text-sec); text-align: center; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-sec); margin-bottom: 4px; }
.form-group input, .form-group select {
  width: 100%; padding: 10px 12px; border: 2px solid var(--border); border-radius: 10px;
  background: var(--bg); color: var(--text); font-size: 14px; transition: border-color 0.15s;
}
.form-group input:focus { border-color: var(--accent); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-error { color: #EF4444; font-size: 13px; text-align: center; margin-top: 12px; }
.form-success { color: var(--green); font-size: 13px; text-align: center; margin-top: 12px; }

/* Page content */
.page-section { padding: 48px 0; }
.page-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.page-sub { color: var(--text-sec); font-size: 14px; margin-bottom: 32px; }
.content-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow);
}
.content-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.content-card p { font-size: 14px; color: var(--text-sec); line-height: 1.7; }

/* Offer/legal text */
.legal-text { font-size: 14px; color: var(--text-sec); line-height: 1.8; }
.legal-text h3 { color: var(--text); font-size: 16px; margin: 24px 0 8px; }
.legal-text p { margin-bottom: 12px; }
.legal-text ol, .legal-text ul { padding-left: 20px; margin-bottom: 12px; }
.legal-text li { margin-bottom: 6px; }

/* Connect page (adapted) */
.connect-card { max-width: 440px; margin: 0 auto; }
.sub-url-box {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px; font-family: 'JetBrains Mono', monospace; font-size: 11px;
  word-break: break-all; cursor: pointer; transition: border-color 0.2s; user-select: all;
}
.sub-url-box:hover { border-color: var(--accent); }
.status-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.status-row:last-child { border-bottom: none; }
.status-label { color: var(--text-sec); font-size: 13px; }
.status-value { font-weight: 700; font-size: 14px; }
.status-active { color: var(--green); }
.status-inactive { color: #EF4444; }
.status-trial { color: #F59E0B; }

/* Toast notification */
.site-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--text); color: #fff; border-radius: 10px;
  padding: 12px 24px; font-size: 14px; font-weight: 600; z-index: 1000;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.site-toast.show { opacity: 1; }

/* Hero server flags */
.hero-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-flag {
  font-size: 42px;
  line-height: 1;
  transition: transform 0.2s;
  cursor: default;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.hero-flag:hover {
  transform: scale(1.2) translateY(-4px);
}

/* Single pricing card layout */
.pricing-single {
  max-width: 420px;
  margin: 0 auto;
}

.price-hint {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  text-align: center;
}

/* ═══════════════════════════════════════ */
/* Hero CTA Button                        */
/* ═══════════════════════════════════════ */
.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #c9407f 50%, #a83279 100%);
  border-radius: 60px;
  text-decoration: none !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow:
    0 4px 15px rgba(225,80,150,0.4),
    0 12px 40px rgba(225,80,150,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(225,80,150,0.5),
    0 20px 60px rgba(225,80,150,0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.hero-cta:active {
  transform: translateY(-1px) scale(0.99);
}
.hero-cta-glow {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 80%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  animation: hero-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-shimmer {
  0%   { left: -60%; }
  40%  { left: 120%; }
  100% { left: 120%; }
}
.hero-cta-text { position: relative; z-index: 1; }
.hero-cta-arrow {
  position: relative; z-index: 1;
  font-size: 22px;
  transition: transform 0.3s;
}
.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════ */
/* Registration Card (bottom)             */
/* ═══════════════════════════════════════ */
.reg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.06),
    0 1px 3px rgba(0,0,0,0.04);
}
.reg-card-header {
  padding: 36px 36px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--accent-glow) 0%, transparent 100%);
}
.reg-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(225,80,150,0.3);
}
.reg-card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.reg-card-sub {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
}
.reg-card-body {
  padding: 8px 36px 36px;
}
.reg-field {
  margin-bottom: 20px;
}
.reg-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sec);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reg-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.reg-input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  pointer-events: none;
  transition: color 0.2s;
}
.reg-input-wrap input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  transition: all 0.2s;
}
.reg-input-wrap input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(225,80,150,0.08);
  background: #fff;
}
.reg-input-wrap input:focus + .reg-input-icon,
.reg-input-wrap:focus-within .reg-input-icon { color: var(--accent); }

.reg-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(225,80,150,0.3);
  margin-top: 8px;
}
.reg-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(225,80,150,0.4);
}
.reg-submit:active {
  transform: translateY(0);
}

.reg-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  gap: 16px;
}
.reg-divider::before,
.reg-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.reg-divider span {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reg-tg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none !important;
  box-shadow: 0 2px 12px rgba(34,158,217,0.25);
}
.reg-tg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(34,158,217,0.35);
  color: #fff;
}

/* PIN cells in registration */
.rp-cell {
  width: 52px; height: 60px;
  border: 2px solid var(--border);
  border-radius: 14px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}
.rp-cell:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(225,80,150,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-4 { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav { display: flex; }
  .nav .nav-desktop-link { display: none; }
  .mobile-menu { display: none; }
  .footer-inner { flex-direction: column; }
  .hero-cta { padding: 18px 36px; font-size: 18px; }
  .reg-card-header { padding: 28px 24px 20px; }
  .reg-card-body { padding: 8px 24px 28px; }
  .reg-card-title { font-size: 20px; }
  .rp-cell { width: 48px; height: 54px; font-size: 22px; }
}
