:root {
  --hero-glow: radial-gradient(ellipse 50% 50% at 50% 0%, var(--primary-glow), transparent 70%);
  --card-shape: 20px;
  --btn-shape: 10px;
  --nav-blur: rgba(255,255,255,.72);
  --nav-blur-scrolled: rgba(255,255,255,.92);
}

/* ═══ 1. NAVBAR ═══ */
.site-nav {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: var(--nav-blur);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .4s, box-shadow .4s, transform .3s;
  padding: 0 !important;
}
.site-nav.scrolled {
  background: var(--nav-blur-scrolled);
  box-shadow: 0 1px 30px rgba(0,0,0,.05);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 10px 28px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { width: 34px; height: 34px; object-fit: contain; border-radius: 8px; }
.logo-text { font-size: 16px; font-weight: 800; color: var(--text); letter-spacing: -.3px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .25s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
}
.nav-link i { font-size: 12px; opacity: .7; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }
.nav-link:hover { color: var(--primary); background: var(--primary-soft); }
.nav-link.active { color: var(--primary); background: var(--primary-soft); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}
.nav-actions .btn {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--btn-shape);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}
.nav-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  color: #fff;
  box-shadow: 0 3px 12px var(--primary-glow);
}
.nav-actions .btn-primary:hover {
  box-shadow: 0 6px 24px var(--primary-glow);
  transform: translateY(-2px) scale(1.02);
}
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  touch-action: manipulation;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 16px 16px;
  gap: 2px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}
.mobile-menu.open { display: flex; animation: slideDown .25s ease; }
.mobile-menu .nav-link { padding: 11px 14px; font-size: 14px; }
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.mobile-actions .btn {
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--btn-shape);
  text-decoration: none;
  text-align: center;
  transition: all .25s;
  border: none;
}
.mobile-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  color: #fff;
  box-shadow: 0 3px 12px var(--primary-glow);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ 2. HERO ═══ */
.landing-hero {
  position: relative;
  padding: 80px 28px 100px !important;
  scroll-margin-top: 80px;
  overflow: hidden;
}
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(37,99,235,.06), transparent 70%),
    radial-gradient(ellipse 50% 50% at 30% 80%, rgba(14,165,233,.04), transparent 60%),
    var(--bg);
  pointer-events: none;
}
.landing-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
  opacity: .5;
}
/* Floating orbs */
.landing-hero .hero-orb-1,
.landing-hero .hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.landing-hero .hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.04), transparent 70%);
  top: -150px; right: 10%;
  animation: floatOrb 8s ease-in-out infinite alternate;
}
.landing-hero .hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,165,233,.03), transparent 70%);
  bottom: -100px; left: 5%;
  animation: floatOrb 6s ease-in-out infinite alternate-reverse;
}
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.1); }
}
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.hero-text .hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-glow);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeUp .6s ease both;
}
.hero-text .hero-badge-new i { color: var(--primary); font-size: 9px; }
.hero-text h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text);
  animation: fadeUp .6s .1s ease both;
}
.hero-text h1 span {
  background: linear-gradient(135deg, var(--primary), #a78bfa, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text2);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 32px;
  animation: fadeUp .6s .2s ease both;
}
.hero-text .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}
/* Hero buttons */
.hero-btn {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--btn-shape);
  transition: all .35s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hero-btn-primary {
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  transform: translateX(-100%) rotate(25deg);
  transition: transform .6s;
}
.hero-btn-primary:hover::before { transform: translateX(100%) rotate(25deg); }
.hero-btn-primary:hover {
  box-shadow: 0 8px 32px var(--primary-glow);
  transform: translateY(-3px) scale(1.02);
  color: #fff;
}
.hero-btn-secondary {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text2);
}
.hero-btn-secondary:hover {
  background: var(--card2);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.hero-btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.hero-btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--primary-glow);
}
/* Hero stat cards */
.hero-text .hero-stats {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeUp .6s .4s ease both;
}
.hero-text .hero-stat {
  text-align: center;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-width: 120px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hero-text .hero-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.hero-text .hero-stat:hover::before { transform: scaleX(1); }
.hero-text .hero-stat:hover {
  border-color: var(--primary-glow);
  background: var(--primary-blur);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hero-text .hero-stat-icon {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
  display: block;
}
.hero-text .hero-stat-val {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
}
.hero-text .hero-stat-val span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text .hero-stat-lbl {
  font-size: 9px;
  color: var(--muted);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px;
}
/* Hero visual */
.hero-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.08), rgba(139,92,246,.04) 40%, transparent 70%);
  animation: heroPulse 4s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.1); opacity: 1; }
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,99,235,.06);
  animation: heroRing 8s linear infinite;
}
@keyframes heroRing {
  0% { transform: rotate(0deg) scale(1); opacity: .3; }
  50% { opacity: .08; }
  100% { transform: rotate(360deg) scale(1); opacity: .3; }
}
.hero-image-wrap img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  filter: drop-shadow(0 8px 30px rgba(37,99,235,.08));
}
.hero-image-wrap:hover img {
  transform: scale(1.08) rotate(-2deg);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ 3. SECTIONS ═══ */
.section {
  padding: 100px 28px;
  position: relative;
  scroll-margin-top: 80px;
}
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: .5;
}
.section-dark { background: var(--bg); }
.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: -1.8px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
}
.section-title span {
  background: linear-gradient(135deg, var(--primary), #a78bfa, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text2);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ═══ 4. SERVICE CARDS ═══ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-shape);
  padding: 34px 26px;
  text-align: left;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover::before { opacity: 1; }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(37,99,235,.02), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.04), 0 0 0 1px rgba(37,99,235,.08);
}
.service-card .sc-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 6px 24px var(--primary-glow);
  transition: transform .4s, box-shadow .4s;
}
.service-card:hover .sc-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 8px 32px var(--primary-glow);
}
.service-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.service-card p {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.7;
  margin: 0;
}

/* ═══ 5. STEP CARDS ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-glow), var(--primary), var(--primary-glow));
  z-index: 0;
}
@media(max-width:900px) {
  .steps-grid::before { display: none; }
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-shape);
  padding: 36px 22px;
  text-align: center;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative;
  z-index: 1;
}
.step-card:hover {
  border-color: var(--primary-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.04);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px var(--primary-glow);
  transition: transform .4s, box-shadow .4s;
  position: relative;
}
.step-card:hover .step-num {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 36px var(--primary-glow);
}
.step-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.step-card p {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.65;
  margin: 0;
}

/* ═══ 6. SERVER STATUS ═══ */
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.status-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-shape);
  padding: 30px 24px;
  text-align: center;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.status-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 1;
  transition: opacity .4s;
}
.status-card.online::before { background: linear-gradient(90deg, #34d399, #059669); }
.status-card.offline::before { background: linear-gradient(90deg, #f87171, #dc2626); }
.status-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.04), 0 0 0 1px rgba(37,99,235,.06);
}
.status-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 14px;
}
.status-dot.online { background: #34d399; box-shadow: 0 0 20px rgba(52,211,153,.5); animation: pulseDot 2s ease-in-out infinite; }
.status-dot.offline { background: #f87171; box-shadow: 0 0 20px rgba(248,113,113,.5); }
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: .7; }
}
.status-info h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: -.2px;
}
.status-cost {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--mono);
  margin-bottom: 10px;
}
.status-text {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 100px;
}
.status-text.online { background: rgba(52,211,153,.1); color: #059669; border: 1px solid rgba(52,211,153,.2); }
.status-text.offline { background: rgba(248,113,113,.1); color: #dc2626; border: 1px solid rgba(248,113,113,.2); }

/* ═══ 7. RESELLER CARDS ═══ */
.reseller-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.reseller-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px 30px;
  text-align: center;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  width: 300px;
  position: relative;
  overflow: hidden;
}
.reseller-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary));
  opacity: 0;
  transition: opacity .4s;
}
.reseller-card:hover::before { opacity: 1; }
.reseller-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.04), 0 0 0 1px rgba(37,99,235,.06);
}
.reseller-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--card2);
  border: 2px solid var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
}
.reseller-card:hover .reseller-img {
  transform: scale(1.04);
  border-color: var(--primary);
}
.reseller-img img { width: 100%; height: 100%; object-fit: contain; }
.reseller-info h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -.3px;
}
.reseller-owner {
  display: block;
  font-size: 11px;
  color: var(--text2);
  font-family: var(--mono);
  margin-bottom: 18px;
}
.reseller-owner i { color: #f59e0b; margin-right: 4px; }
.reseller-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--btn-shape);
  font-size: 12.5px;
  font-weight: 700;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
}
.contact-btn:hover { transform: translateY(-2px); }
.contact-btn.whatsapp {
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.15);
  color: #16a34a;
}
.contact-btn.whatsapp:hover {
  background: rgba(37,211,102,.15);
  border-color: rgba(37,211,102,.3);
  box-shadow: 0 4px 16px rgba(37,211,102,.12);
}
.contact-btn.telegram {
  background: rgba(0,136,204,.08);
  border: 1px solid rgba(0,136,204,.15);
  color: #0284c7;
}
.contact-btn.telegram:hover {
  background: rgba(0,136,204,.15);
  border-color: rgba(0,136,204,.3);
  box-shadow: 0 4px 16px rgba(0,136,204,.12);
}
.contact-btn.website {
  background: var(--primary-soft);
  border: 1px solid var(--primary-glow);
  color: var(--primary);
}
.contact-btn.website:hover {
  background: rgba(37,99,235,.12);
  border-color: rgba(37,99,235,.3);
  box-shadow: 0 4px 16px var(--primary-glow);
}

/* ═══ 8. CTA ═══ */
.cta-section {
  padding: 100px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(37,99,235,.04), transparent 70%),
    linear-gradient(160deg, var(--bg), var(--primary-blur), var(--bg));
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: -1.8px;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
}
.cta-section p {
  font-size: 15px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
  position: relative;
}
.cta-section .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  border: none;
  color: #fff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--btn-shape);
  box-shadow: 0 4px 24px var(--primary-glow);
  transition: all .35s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.cta-section .btn-primary::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  transform: translateX(-100%) rotate(25deg);
  transition: transform .6s;
}
.cta-section .btn-primary:hover::before { transform: translateX(100%) rotate(25deg); }
.cta-section .btn-primary:hover {
  box-shadow: 0 8px 36px var(--primary-glow);
  transform: translateY(-3px) scale(1.02);
}
.cta-section .btn-secondary {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text2);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--btn-shape);
  transition: all .35s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-section .btn-secondary:hover {
  background: var(--card2);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  font-weight: 700;
  transition: all .3s cubic-bezier(.16,1,.3,1) !important;
}
.btn-outline-primary:hover {
  background: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

/* ═══ 9. FOOTER ═══ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 28px 32px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
}
.site-footer .footer-brand .footer-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--primary-glow);
}
.site-footer .footer-desc {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 300px;
}
.site-footer .footer-social { display: flex; gap: 8px; }
.site-footer .footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--card3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: all .3s;
}
.site-footer .footer-social a:hover {
  border-color: var(--primary);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px var(--primary-glow);
}
.site-footer h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a {
  font-size: 12.5px;
  color: var(--text2);
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}
.site-footer ul li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 20px 28px;
  font-size: 10.5px;
  color: var(--muted);
  font-family: var(--mono);
}

/* ═══ 10. SCROLL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ 11. RESPONSIVE ═══ */
@media(max-width:768px){
  .nav-container { padding: 10px 16px; }
  .mobile-menu-btn { display: flex; }

  .landing-hero { padding: 40px 16px 60px !important; }
  .hero-split { flex-direction: column; gap: 40px; text-align: center; }
  .hero-text { text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; max-width: 100%; }
  .hero-text .hero-actions { justify-content: center; }
  .hero-text .hero-stats { justify-content: center; }
  .hero-image-wrap { width: 260px; height: 260px; }
  .hero-image-wrap::before { width: 240px; height: 240px; }
  .hero-image-wrap::after { width: 210px; height: 210px; }
  .hero-text .hero-stat { min-width: 90px; padding: 14px 16px; }
  .hero-text .hero-stat-val { font-size: 20px; }
  .hero-text .hero-stat-icon { font-size: 16px; }

  .section { padding: 64px 16px; }
  .service-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .reseller-grid { grid-template-columns: 1fr; }
  .reseller-card { width: 100%; max-width: 360px; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 16px 20px; }
  .cta-section { padding: 64px 16px; }
}
@media(max-width:480px){
  .nav-container { padding: 10px 12px; }
  .site-footer { grid-template-columns: 1fr; }
  .hero-image-wrap { width: 200px; height: 200px; }
  .hero-image-wrap::before { width: 180px; height: 180px; }
  .hero-image-wrap::after { width: 160px; height: 160px; }
  .landing-hero { padding: 24px 12px 40px !important; }
  .hero-text h1 { font-size: 28px !important; }
  .hero-text .hero-stat { min-width: 70px; padding: 10px 12px; }
  .hero-text .hero-stat-val { font-size: 18px; }
  .hero-text .hero-stat-lbl { font-size: 7px; }
  .hero-text .hero-stat-icon { font-size: 14px; }
  .section { padding: 40px 12px; }
  .service-card { padding: 24px 18px; }
  .step-card { padding: 28px 18px; }
  .reseller-card { padding: 28px 20px; }
  .status-card { padding: 20px 16px; }
  .cta-section { padding: 40px 12px; }
  .site-footer { padding: 32px 12px 16px; }
  .footer-bottom { padding: 14px 12px; font-size: 9px; }
}
