:root {
  --bg-body: #060810;
  --bg1: #0a0e1a;
  --bg2: #141b2d;
  --card: #1a2235;
  --card-hover: #1f2a40;
  --border: #2a3550;
  --border-light: #3a4560;
  --cyan: #00d4ff;
  --purple: #7b61ff;
  --green: #1fd158;
  --red: #e8453a;
  --orange: #ff9f43;
  --muted: #8892a7;
  --text: #ffffff;
  --text-secondary: #c0c8d8;
  --gradient: linear-gradient(135deg, var(--cyan), var(--purple));
  --gradient-h: linear-gradient(90deg, var(--cyan), var(--purple));
  --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.3);
  --glow-purple: 0 0 20px rgba(123, 97, 255, 0.3);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Inter', sans-serif;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple); }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 8, 16, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(42, 53, 80, 0.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text);
}
.logo img { width: 36px; height: 36px; border-radius: 10px; }
.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--gradient-h);
  color: #fff;
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 4px 20px rgba(123, 97, 255, 0.3);
  transform: translateY(-1px);
  color: #fff;
}
.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--card-hover);
  border-color: var(--border-light);
  color: var(--text);
}
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn-outline:hover {
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
}
.btn-lg { padding: 16px 36px; font-size: 15px; border-radius: var(--radius); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: var(--radius-xs); }
.btn-block { width: 100%; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 50%; }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-light);
}
.card-glow:hover {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.2);
}

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg1);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.12);
}
.form-input::placeholder { color: rgba(136, 146, 167, 0.5); }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.badge-active { background: rgba(31, 209, 88, 0.12); color: var(--green); border: 1px solid rgba(31, 209, 88, 0.25); }
.badge-inactive { background: rgba(232, 69, 58, 0.12); color: var(--red); border: 1px solid rgba(232, 69, 58, 0.25); }
.badge-cyan { background: rgba(0, 212, 255, 0.08); color: var(--cyan); border: 1px solid rgba(0, 212, 255, 0.2); }
.badge-purple { background: rgba(123, 97, 255, 0.08); color: var(--purple); border: 1px solid rgba(123, 97, 255, 0.2); }

/* ── ALERTS ── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: rgba(31, 209, 88, 0.08); border: 1px solid rgba(31, 209, 88, 0.2); color: var(--green); }
.alert-error { background: rgba(232, 69, 58, 0.08); border: 1px solid rgba(232, 69, 58, 0.2); color: var(--red); }
.alert-info { background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.2); color: var(--cyan); }

/* ── SECTION TITLES ── */
.section-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 48px;
}

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.06), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(123, 97, 255, 0.06), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-badge span { color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}
.hero-feature svg { color: var(--cyan); }
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── STEPS ── */
.steps-section { padding: 100px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 14px; }

/* ── FEATURES GRID ── */
.features-section { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(123,97,255,0.1));
  border: 1px solid rgba(0,212,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 18px;
}
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ── PRICING SECTION ── */
.pricing-section { padding: 100px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.pricing-card.popular {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
}
.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-h);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.pricing-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-icon { font-size: 28px; margin-bottom: 12px; }
.pricing-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.pricing-devices { color: var(--muted); font-size: 13px; }
.pricing-body { padding: 20px 24px; }
.pricing-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(42, 53, 80, 0.3);
}
.pricing-option:last-child { border-bottom: none; }
.pricing-period { color: var(--text-secondary); font-size: 14px; }
.pricing-price { font-size: 18px; font-weight: 800; }
.pricing-features-list {
  list-style: none;
  padding: 16px 0 0;
}
.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 13px;
}
.pricing-features-list li svg { color: var(--green); flex-shrink: 0; }
.pricing-footer { padding: 0 24px 24px; }

/* ── FAQ ── */
.faq-section { padding: 100px 0; }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
}
.faq-question svg {
  color: var(--muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 100px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card { padding: 24px; }
.testimonial-stars { color: #FFD700; margin-bottom: 12px; font-size: 14px; }
.testimonial-text { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.testimonial-name { font-size: 13px; font-weight: 600; }
.testimonial-loc { font-size: 11px; color: var(--muted); }

/* ── TEAM ── */
.team-section { padding: 100px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.team-card { padding: 32px 24px; text-align: center; }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 16px;
  color: #fff;
}
.team-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--cyan); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── PRICING EXTRA ── */
.pricing-subtitle-small {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-save-badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  pointer-events: none;
}

/* ── INSTALLATION TABS ── */
.install-section { padding: 100px 0; }
.tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.tab-btn.active { background: var(--gradient-h); color: #fff; border-color: transparent; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.tab-pane ol { padding-left: 24px; margin-bottom: 20px; }
.tab-pane ol li { color: var(--text-secondary); padding: 6px 0; font-size: 14px; }

/* ── REFERRAL SECTION ── */
.referral-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.02), transparent);
}
.referral-content { text-align: center; max-width: 700px; margin: 0 auto; }

/* ── DASHBOARD ── */
.dashboard { padding: 100px 0 60px; }
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dash-full { grid-column: 1 / -1; }
.stat-card { padding: 20px; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.stat-value { font-size: 28px; font-weight: 800; }
.stat-value.cyan { color: var(--cyan); }
.stat-value.green { color: var(--green); }
.stat-value.purple { color: var(--purple); }

.code-display {
  background: var(--bg1);
  border: 1.5px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: 'SF Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  text-align: center;
  color: var(--text);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition);
}
.code-display:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.sub-url-display {
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 12px;
  font-size: 13px;
  color: var(--cyan);
  word-break: break-all;
  cursor: pointer;
}

/* ── CHECKOUT ── */
.checkout-card { max-width: 500px; margin: 0 auto; }
.checkout-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(42, 53, 80, 0.3);
  font-size: 14px;
}
.checkout-total { font-size: 20px; font-weight: 800; color: var(--cyan); }
.promo-row { display: flex; gap: 10px; }
.promo-row .form-input { flex: 1; }

/* ── AUTH PAGES ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.auth-card {
  width: 100%;
  max-width: 420px;
}
.auth-card .logo-box {
  text-align: center;
  margin-bottom: 32px;
}
.auth-card .logo-icon-lg {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(0,212,255,0.13), rgba(123,97,255,0.13));
  border-radius: 18px;
  border: 1px solid rgba(0,212,255,0.25);
  box-shadow: 0 0 24px rgba(0,212,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.auth-card h1 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 6px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.auth-card .auth-sub { color: var(--muted); font-size: 13px; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── FOOTER ── */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--muted); font-size: 13px; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}
.trust-badge svg { color: var(--cyan); }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left;
  padding: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
td {
  padding: 12px;
  font-size: 14px;
  border-bottom: 1px solid rgba(42, 53, 80, 0.3);
}
.status-completed { color: var(--green); }
.status-pending { color: var(--orange); }
.status-canceled { color: var(--red); }

/* ── ROCKET SVG ── */
.rocket-container {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.orbit-box {
  position: relative;
  width: 160px; height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-glow {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1), transparent 70%);
  animation: gpulse 2.5s ease-in-out infinite;
}
@keyframes gpulse { 0%,100%{opacity:.5;transform:scale(.95)} 50%{opacity:1;transform:scale(1.05)} }
.orb-track {
  position: absolute;
  width: 146px; height: 146px;
  border-radius: 50%;
  border: 1.5px solid rgba(42,53,80,0.5);
}
.orb-arc {
  position: absolute;
  width: 146px; height: 146px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--cyan);
  border-right-color: rgba(123,97,255,0.4);
  animation: spin 3s linear infinite;
}
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.btn-circle {
  width: 124px; height: 124px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,212,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,255,0.06);
}

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg1);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }
  .nav-menu.open { display: flex; }
  .burger { display: flex; }
  .dash-grid { grid-template-columns: 1fr; }
  .hero-features { flex-direction: column; align-items: center; gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .container { padding: 0 16px; }
}

/* ── COPY TOOLTIP ── */
.copy-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--card);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  z-index: 999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.copy-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg1); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 100px 0 40px;
  text-align: center;
}
.page-header h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}
.page-header p { color: var(--muted); font-size: 15px; }

/* ── EMAIL MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: linear-gradient(135deg, #0d1526, #111827);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 440px;
  position: relative;
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(0.94) translateY(12px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--text); background: var(--card); }
.modal-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.modal-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0,212,255,.15), rgba(123,97,255,.15));
  border: 1px solid rgba(0,212,255,.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.modal-title { font-size: 18px; font-weight: 700; margin: 0 0 4px; }
.modal-subtitle { font-size: 13px; color: var(--muted); margin: 0; }
.modal-tariff-info {
  background: rgba(0,212,255,.07);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  display: none;
}
.modal-tariff-info.visible { display: block; }
.modal-tariff-info strong { color: var(--cyan); }
.form-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
}
