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

:root {
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #b8860b;
  --bg-deep: #0d0d1a;
  --bg-mid: #1a1040;
  --bg-light: #2a1240;
  --card-bg: rgba(26,16,64,.7);
  --card-border: rgba(245,158,11,.12);
  --text: #e0e0e0;
  --text-dim: rgba(255,255,255,.5);
  --glow-accent: 0 0 20px rgba(245,158,11,.3);
  --glow-soft: 0 0 30px rgba(245,158,11,.08);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #1e3a5a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 20px rgba(0,212,255,.25); } 50% { box-shadow: 0 0 40px rgba(0,212,255,.4); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes starTwinkle { 0%,100% { opacity: .2; } 50% { opacity: .8; } }
@keyframes borderGlow { 0%,100% { border-color: rgba(0,212,255,.15); } 50% { border-color: rgba(0,212,255,.4); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 25% { transform: translate(30px,-30px) scale(1.1); } 50% { transform: translate(-20px,-50px) scale(.9); } 75% { transform: translate(-40px,10px) scale(1.05); } }
@keyframes shine { 0% { left: -100%; } 100% { left: 200%; } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(0,212,255,.4); } 70% { box-shadow: 0 0 0 15px rgba(0,212,255,0); } 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== STARS BACKGROUND ===== */
.stars {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.star {
  position: absolute; width: 2px; height: 2px;
  background: #fff; border-radius: 50%;
  animation: starTwinkle var(--dur) ease-in-out infinite;
}

/* ===== NAV ===== */
nav {
  background: rgba(13,13,26,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
}
.logo i { color: var(--accent); font-size: 24px; filter: drop-shadow(0 0 8px rgba(0,212,255,.4)); }
.logo span { background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; opacity: .75; transition: .3s; position: relative; }
.nav-links a:hover { opacity: 1; color: var(--accent); text-shadow: 0 0 10px rgba(0,212,255,.25); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); transition: .3s; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:last-child {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0d0d1a !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  opacity: 1 !important;
  transition: .3s;
}
.nav-links a:last-child:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,212,255,.3); }
.nav-links a:last-child::after { display: none; }
.nav-toggle {
  display: none;
  background: none; border: none;
  color: #fff; font-size: 24px;
  cursor: pointer; padding: 4px;
  transition: .3s;
}
.nav-toggle:hover { color: var(--accent); }

@media (max-width: 767px) {
  .nav-toggle { display: block; z-index: 101; }
  .nav-links {
    position: fixed;
    top: 0; right: -280px;
    width: 260px; height: 100vh;
    background: rgba(13,13,26,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 16px;
    transition: right .3s ease;
    z-index: 100;
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; }
  .nav-links a:last-child { text-align: center; }
}
/* Hamburger also active on tablets & zoomed-out mobile */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-toggle { display: block; z-index: 101; }
  .nav-links {
    position: fixed;
    top: 0; right: -280px;
    width: 260px; height: 100vh;
    background: rgba(13,13,26,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 16px;
    transition: right .3s ease;
    z-index: 100;
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; }
  .nav-links a:last-child { text-align: center; }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.1), transparent);
}

/* ===== ANIMATED SECTIONS ===== */
section, .product-page { animation: fadeIn .6s ease-out; }
.section-title, .product-page h1, .product-page h2 { animation: fadeInUp .6s ease-out; }

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 110px 24px 80px;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1040 30%, #2a1240 60%, #0d0d1a 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.05) 0%, transparent 70%);
  top: -150px; left: -150px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,43,226,.06) 0%, transparent 70%);
  bottom: -120px; right: -100px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
.hero-glow-1, .hero-glow-2, .hero-glow-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,.04) 0%, transparent 70%);
  top: 20%; left: 15%;
  animation: orbFloat 10s ease-in-out infinite;
  animation-delay: -2s;
}
.hero-glow-2 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(138,43,226,.04) 0%, transparent 70%);
  bottom: 30%; right: 20%;
  animation: orbFloat 14s ease-in-out infinite;
  animation-delay: -5s;
}
.hero-glow-3 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(245,158,11,.03) 0%, transparent 70%);
  top: 60%; left: 60%;
  animation: orbFloat 8s ease-in-out infinite;
  animation-delay: -3s;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.hero p {
  font-size: 18px;
  opacity: .8;
  max-width: 640px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  min-width: 140px;
  transition: .3s;
}
.stat:hover { border-color: rgba(0,212,255,.25); transform: translateY(-2px); box-shadow: var(--glow-accent); }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; opacity: .7; margin-top: 4px; }

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  position: relative;
}
.section-title::after {
  content: ''; display: block; width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 12px auto 0; border-radius: 4px;
}

/* ===== OFFERS / CAROUSEL ===== */
.offers {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,26,46,.8);
  border: 1px solid rgba(0,212,255,.15);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: .3s;
  z-index: 10;
  display: none;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: rgba(0,212,255,.15); border-color: var(--accent); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
@media (min-width: 768px) {
  .carousel-btn { display: block; }
}

.offer-card {
  background: linear-gradient(145deg, rgba(15,26,46,.8), rgba(22,34,64,.6));
  border: 1px solid rgba(0,212,255,.08);
  border-radius: 16px;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  overflow: hidden;
  transition: .4s cubic-bezier(.175,.885,.32,1.275);
  position: relative;
  backdrop-filter: blur(4px);
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(0,212,255,.15), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: .4s;
  opacity: 0;
}
.offer-card:hover::before { opacity: 1; }
.offer-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(0,212,255,.3); box-shadow: 0 20px 50px rgba(0,0,0,.5), var(--glow-accent); }
.offer-card .popular-badge {
  position: absolute;
  top: 14px;
  right: -32px;
  background: linear-gradient(45deg, var(--accent), var(--accent-dark));
  color: #0d0d1a;
  padding: 4px 40px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,212,255,.3);
}
.offer-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.03);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.offer-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,212,255,.06) 100%);
}
.offer-img span { transition: .3s; }
.offer-card:hover .offer-img span { transform: scale(1.15) rotate(-5deg); }
.offer-body {
  padding: 24px;
  text-align: center;
}
.offer-body h3 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.offer-body p { font-size: 14px; opacity: .65; margin-bottom: 16px; }
.offer-body .price { font-size: 30px; font-weight: 800; background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 16px; }
.offer-body button, .offer-body .buy-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  color: #0d0d1a;
  transition: .3s;
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer-body button:hover, .offer-body .buy-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,212,255,.4); animation: pulseRing 1.5s infinite; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none;
  cursor: pointer;
  transition: .3s;
  padding: 0;
}
.carousel-dot.active { background: var(--accent); width: 24px; border-radius: 4px; box-shadow: 0 0 8px rgba(0,212,255,.3); }
.carousel-dot:hover { background: rgba(255,255,255,.3); }
.swipe-hint { text-align: center; font-size: 13px; opacity: .5; margin-top: 12px; animation: float 3s ease-in-out infinite; }
@media (min-width: 768px) { .swipe-hint { display: none; } }

/* ===== SERVICES ===== */
.services {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: linear-gradient(145deg, rgba(15,26,46,.7), rgba(22,34,64,.5));
  border: 1px solid rgba(0,212,255,.06);
  border-radius: 14px;
  padding: 32px 24px;
  transition: .4s cubic-bezier(.175,.885,.32,1.275);
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.04), transparent);
  transition: .6s;
  pointer-events: none;
}
.service-card:hover::after { left: 100%; }
.service-card.popular {
  border-color: rgba(0,212,255,.12);
  background: linear-gradient(145deg, rgba(15,26,46,.85), rgba(22,34,64,.7));
}
.service-card.popular .popular-badge {
  position: absolute;
  top: 12px;
  right: -30px;
  background: linear-gradient(45deg, var(--accent), var(--accent-dark));
  color: #0d0d1a;
  padding: 3px 36px;
  font-size: 10px;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,212,255,.2);
  letter-spacing: .5px;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: .4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(0,212,255,.25); box-shadow: 0 12px 40px rgba(0,0,0,.4), var(--glow-soft); }
.category-icon { font-size: 44px; margin-bottom: 16px; display: block; transition: .4s; }
.service-card:hover .category-icon { transform: scale(1.15) rotate(-5deg); }
.service-card h3 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.service-card p { font-size: 13px; opacity: .65; margin-bottom: 16px; line-height: 1.6; }
.explore-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0d0d1a;
  padding: 10px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.explore-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: .6s;
}
.service-card:hover .explore-btn { box-shadow: 0 4px 15px rgba(0,212,255,.3); transform: translateY(-2px); }
.service-card:hover .explore-btn::before { left: 100%; }

/* ===== FEATURES ===== */
.features {
  padding: 60px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: linear-gradient(145deg, rgba(15,26,46,.7), rgba(22,34,64,.5));
  border: 1px solid rgba(0,212,255,.06);
  border-radius: 14px;
  transition: .4s cubic-bezier(.175,.885,.32,1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: .4s;
}
.feature-card:hover::before { opacity: .6; }
.feature-card:hover { border-color: rgba(0,212,255,.25); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.feature-card .fi { font-size: 44px; margin-bottom: 14px; display: block; transition: .4s; }
.feature-card:hover .fi { transform: scale(1.15); }
.feature-card h3 { font-size: 17px; color: #fff; margin-bottom: 6px; }
.feature-card p { font-size: 13px; opacity: .65; line-height: 1.5; }

/* ===== CONTACT ===== */
.contact {
  padding: 60px 24px 80px;
  background: linear-gradient(180deg, #0d0d1a 0%, #1a1040 100%);
}
.contact-inner { max-width: 800px; margin: 0 auto; }
.contact-sub { text-align: center; font-size: 16px; opacity: .6; margin-bottom: 40px; margin-top: -16px; }
.contact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-card {
  background: linear-gradient(145deg, rgba(15,26,46,.7), rgba(22,34,64,.5));
  border: 1px solid rgba(0,212,255,.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  min-width: 220px;
  flex: 1;
  max-width: 300px;
  transition: .4s cubic-bezier(.175,.885,.32,1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-dark));
  opacity: 0; transition: .4s;
}
.contact-card:hover::before { opacity: 1; }
.contact-card:hover { border-color: rgba(0,212,255,.25); transform: translateY(-6px) scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0,.4), var(--glow-soft); }
.contact-card i { font-size: 40px; color: var(--accent); margin-bottom: 16px; filter: drop-shadow(0 0 6px rgba(0,212,255,.3)); }
.contact-card h3 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.contact-card p { font-size: 14px; opacity: .75; margin-bottom: 4px; }
.contact-card .contact-user { background: linear-gradient(135deg, var(--accent-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 1; font-weight: 700; margin-bottom: 16px; }
.contact-card a {
  font-size: 14px; font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0d0d1a; padding: 10px 24px; border-radius: 10px;
  display: inline-block; transition: .3s;
}
.contact-card a:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,212,255,.3); }

/* ===== PRODUCT PAGE ===== */
.product-page {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}
.product-page.active { display: block; }
.product-back { margin-bottom: 32px; }
.product-back a { font-size: 14px; color: var(--accent); opacity: .7; transition: .2s; }
.product-back a:hover { opacity: 1; }
.product-layout { display: flex; gap: 40px; align-items: flex-start; }

/* ===== SHARED PRODUCT STYLES ===== */
[class$="-hero"] {
  position: relative;
  overflow: hidden;
}
[class$="-hero"]::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,212,255,.03) 0%, transparent 60%);
  pointer-events: none;
}
[class$="-hero"] h1 {
  background: linear-gradient(135deg, #fff, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[class$="-stat"] span {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[class$="-plan"] {
  transition: .4s cubic-bezier(.175,.885,.32,1.275) !important;
}
[class$="-plan"]:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0,212,255,.25) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.4), var(--glow-accent) !important;
}
[class$="-plan-price"] {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[class$="-buy"], [class$="-cta-contact"], [class*="-cta-"] {
  transition: .3s !important;
}
[class$="-buy"]:hover, [class*="-cta-"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,212,255,.3) !important;
}
[class$="-section-title"] {
  position: relative;
  display: inline-block;
}
[class$="-section-title"]::after {
  content: ''; display: block; width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 8px auto 0; border-radius: 2px;
}
[class$="-cta"] {
  position: relative;
  overflow: hidden;
}
[class$="-cta"]::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,212,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
[class$="-cta"] h2 { font-size: 28px; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
[class$="-cta"] p { font-size: 15px; opacity: .7; margin-bottom: 24px; position: relative; z-index: 1; }
[class$="-cta"] a[class*="-cta-"], [class$="-cta-btn"] {
  position: relative; z-index: 1;
  padding: 14px 36px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  display: inline-block !important;
  transition: .3s !important;
  color: #0d0d1a !important;
}
[class$="-cta"] a[class*="-cta-"]:hover, [class$="-cta-btn"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(0,212,255,.4) !important;
}
.product-image {
  width: 380px;
  min-height: 320px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.3);
  flex-shrink: 0;
}
.product-info { flex: 1; }
.product-info h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.product-desc { font-size: 15px; opacity: .7; line-height: 1.7; margin-bottom: 24px; }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.pf { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.pf i { color: #10b981; font-size: 16px; }
.product-pricing {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.product-price { font-size: 30px; font-weight: 800; color: var(--accent); }
.product-price small { font-size: 15px; font-weight: 400; opacity: .7; }
.product-pricing button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  color: #fff;
  transition: .2s;
}
.product-pricing button:hover { transform: scale(1.04); }

/* ===== BOTS ===== */
.bots-hero {
  background: linear-gradient(135deg, rgba(15,26,46,.8), rgba(22,34,64,.6));
  border: 1px solid rgba(0,212,255,.08);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.bots-hero h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.bots-hero p { font-size: 15px; opacity: .7; max-width: 600px; margin: 0 auto 24px; }
.bots-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.bots-stat { display: flex; flex-direction: column; align-items: center; }
.bots-stat span { font-size: 24px; font-weight: 800; color: var(--accent); }
.bots-stat { font-size: 13px; opacity: .6; margin-top: 2px; }
.bots-section-title {
  font-size: 24px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 28px;
}
.bots-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.bots-plan {
  background: linear-gradient(145deg, rgba(15,26,46,.7), rgba(22,34,64,.5));
  border: 1px solid rgba(0,212,255,.06);
  border-radius: 14px;
  overflow: hidden;
  transition: .3s;
}
.bots-plan:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.2); }
.bots-plan-img { height: 120px; display: flex; align-items: center; justify-content: center; }
.bots-plan-body { padding: 20px; }
.bots-plan-body h3 { font-size: 20px; color: #fff; margin-bottom: 6px; }
.bots-plan-body > p { font-size: 13px; opacity: .6; margin-bottom: 14px; }
.bots-plan-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.bf { font-size: 13px; display: flex; align-items: center; gap: 6px; }
.bf i { color: #10b981; font-size: 14px; }
.bots-plan-price { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.bots-plan-btns { display: flex; gap: 10px; }
.bots-info {
  flex: 1; padding: 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03); color: #e0e0e0; font-weight: 600; font-size: 14px; cursor: pointer; transition: .3s;
}
.bots-info:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,212,255,.08); }
.bots-buy {
  flex: 1; padding: 10px; border-radius: 8px; border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; transition: .3s;
}
.bots-buy:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,212,255,.3); }

.bots-features {
  background: linear-gradient(145deg, rgba(15,26,46,.7), rgba(22,34,64,.5));
  border: 1px solid rgba(0,212,255,.06);
  border-radius: 14px;
  padding: 32px 24px;
}
.bots-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.bots-feature { text-align: center; padding: 20px; }
.bots-feature span { font-size: 36px; display: block; margin-bottom: 12px; }
.bots-feature h3 { font-size: 16px; color: #fff; margin-bottom: 6px; }
.bots-feature p { font-size: 13px; opacity: .6; }

/* ===== GEMS ===== */
.gems-hero {
  background: linear-gradient(135deg, rgba(15,26,46,.8), rgba(22,34,64,.6));
  border: 1px solid rgba(0,212,255,.08);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.gems-hero h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.gems-hero p { font-size: 15px; opacity: .7; max-width: 600px; margin: 0 auto 24px; }
.gems-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.gems-stat { display: flex; flex-direction: column; align-items: center; }
.gems-stat span { font-size: 24px; font-weight: 800; color: var(--accent); }
.gems-stat { font-size: 13px; opacity: .6; margin-top: 2px; }
.gems-section-title {
  font-size: 24px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 28px;
}
.gems-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.gems-plan {
  background: var(--bg-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
  transition: .3s;
}
.gems-plan { transition: .3s; }
.gems-plan:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.2); }
.gems-plan-img { height: 120px; display: flex; align-items: center; justify-content: center; }
.gems-plan-body { padding: 20px; }
.gems-plan-body h3 { font-size: 20px; color: #fff; margin-bottom: 6px; }
.gems-plan-body > p { font-size: 13px; opacity: .6; margin-bottom: 14px; }
.gems-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.gems-badges span {
  font-size: 11px; background: rgba(0,212,255,.08); color: var(--accent);
  padding: 3px 10px; border-radius: 4px;
}
.gems-plan-price { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.gems-plan-btns { display: flex; gap: 10px; }
.gems-info {
  flex: 1; padding: 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03); color: #e0e0e0; font-weight: 600; font-size: 14px; cursor: pointer; transition: .3s;
}
.gems-info:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,212,255,.08); }
.gems-buy {
  flex: 1; padding: 10px; border-radius: 8px; border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; transition: .3s;
}
.gems-buy:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,212,255,.3); }

.gems-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 40px;
  margin-top: 32px;
}
.gems-cta h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.gems-cta p { font-size: 15px; opacity: .7; margin-bottom: 24px; }
.gems-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gems-cta-contact {
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  color: #e0e0e0;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s;
}
.gems-cta-contact:hover { border-color: var(--accent); color: var(--accent); }
.gems-cta-calc {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0d0d1a;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: .2s;
}
.gems-cta-calc:hover { transform: scale(1.04); }
.calc-hero { background: linear-gradient(135deg,var(--bg-mid),var(--bg-deep)); padding: 60px 40px; border-radius: 20px; text-align: center; margin-bottom: 40px; }
.calc-hero h1 { font-size: 36px; background: linear-gradient(135deg,var(--accent-light),var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.calc-hero p { font-size: 15px; opacity: .7; max-width: 600px; margin: 0 auto 24px; }
.calc-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.calc-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(0,212,255,.1); border-radius: 12px; padding: 16px 28px; font-size: 14px; opacity: .8; }
.calc-stat span { display: block; font-size: 28px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.calc-how { margin-bottom: 40px; }
.calc-section-title { font-size: 24px; text-align: center; margin-bottom: 24px; color: #fff; }
.calc-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.calc-how-step { text-align: center; padding: 28px 20px; background: linear-gradient(145deg, var(--bg-mid), var(--bg-light)); border-radius: 12px; border: 1px solid rgba(255,255,255,.05); transition: .3s; }
.calc-how-step:hover { border-color: rgba(0,212,255,.15); transform: translateY(-2px); }
.calc-how-step span { font-size: 36px; display: block; margin-bottom: 10px; }
.calc-how-step h3 { font-size: 16px; color: #fff; margin-bottom: 6px; }
.calc-how-step p { font-size: 13px; opacity: .6; }
.calc-features { margin-bottom: 40px; }
.calc-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.calc-feature-card { text-align: center; padding: 24px 16px; background: linear-gradient(145deg, var(--bg-mid), var(--bg-light)); border-radius: 12px; border: 1px solid rgba(255,255,255,.05); transition: .3s; }
.calc-feature-card:hover { border-color: rgba(0,212,255,.15); transform: translateY(-3px); }
.calc-feature-card span { font-size: 32px; display: block; margin-bottom: 10px; }
.calc-feature-card h3 { font-size: 15px; color: #fff; margin-bottom: 4px; }
.calc-feature-card p { font-size: 13px; opacity: .6; }
.calc-cta { text-align: center; margin-bottom: 40px; }
.calc-cta-btn { display: inline-block; padding: 16px 48px; background: linear-gradient(135deg,var(--accent),var(--accent-dark)); color: #0d0d1a; font-weight: 700; font-size: 18px; border-radius: 12px; text-decoration: none; transition: .3s; }
.calc-cta-btn:hover { transform: scale(1.04); box-shadow: 0 8px 25px rgba(0,212,255,.3); }
.gems-how { margin-bottom: 40px; }
.gems-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gems-how-step { text-align: center; padding: 28px 24px; background: linear-gradient(145deg, var(--bg-mid), var(--bg-light)); border-radius: 12px; border: 1px solid rgba(255,255,255,.05); transition: .3s; }
.gems-how-step:hover { border-color: rgba(0,212,255,.15); transform: translateY(-2px); }
.gems-how-step span { font-size: 36px; display: block; margin-bottom: 10px; }
.gems-how-step h3 { font-size: 16px; color: #fff; margin-bottom: 6px; }
.gems-how-step p { font-size: 13px; opacity: .6; }
.gems-why { margin-bottom: 40px; }
.gems-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gems-why-card { text-align: center; padding: 24px 16px; background: linear-gradient(145deg, var(--bg-mid), var(--bg-light)); border-radius: 12px; border: 1px solid rgba(255,255,255,.05); transition: .3s; }
.gems-why-card:hover { border-color: rgba(0,212,255,.15); transform: translateY(-3px); }
.gems-why-card span { font-size: 32px; display: block; margin-bottom: 10px; }
.gems-why-card h3 { font-size: 15px; color: #fff; margin-bottom: 4px; }
.gems-why-card p { font-size: 13px; opacity: .6; }
.gems-faq { margin-bottom: 40px; }
.gems-faq-list { display: grid; gap: 12px; }
.gems-faq-item { background: linear-gradient(145deg, var(--bg-mid), var(--bg-light)); border: 1px solid rgba(255,255,255,.05); border-radius: 12px; padding: 20px 24px; transition: .3s; }
.gems-faq-item:hover { border-color: rgba(0,212,255,.1); }
.gems-faq-item h3 { font-size: 15px; color: #fff; margin-bottom: 6px; }
.gems-faq-item p { font-size: 13px; opacity: .6; }

/* ===== RESOURCES ===== */
.rss-hero {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.rss-hero h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.rss-hero p { font-size: 15px; opacity: .7; max-width: 600px; margin: 0 auto 24px; }
.rss-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.rss-stat { display: flex; flex-direction: column; align-items: center; }
.rss-stat span { font-size: 24px; font-weight: 800; color: var(--accent); }
.rss-stat { font-size: 13px; opacity: .6; margin-top: 2px; }
.rss-section-title {
  font-size: 24px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 28px;
}
.rss-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.rss-plan {
  background: var(--bg-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
  transition: .3s;
}
.rss-plan:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.2); }
.rss-plan-img { height: 120px; display: flex; align-items: center; justify-content: center; }
.rss-plan-body { padding: 20px; }
.rss-plan-body h3 { font-size: 20px; color: #fff; margin-bottom: 6px; }
.rss-plan-body > p { font-size: 13px; opacity: .6; margin-bottom: 14px; }
.rss-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.rss-badges span {
  font-size: 11px; background: rgba(0,212,255,.08); color: var(--accent);
  padding: 3px 10px; border-radius: 4px;
}
.rss-plan-price { font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 14px; }
.rss-plan-body button {
  width: 100%; padding: 10px; border-radius: 8px; border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff;
  font-weight: 700; font-size: 14px; cursor: pointer; transition: .2s;
}
.rss-plan-body button:hover { transform: scale(1.04); }
.rss-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 40px;
}
.rss-cta h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.rss-cta p { font-size: 15px; opacity: .7; margin-bottom: 24px; }
.rss-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.rss-cta-contact {
  background: transparent; border: 1px solid rgba(255,255,255,.1); color: #e0e0e0;
  padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: .2s;
}
.rss-cta-contact:hover { border-color: var(--accent); color: var(--accent); }
.rss-cta-calc {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff;
  padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: .2s;
}
.rss-cta-calc:hover { transform: scale(1.04); }

/* ===== HYPER ===== */
.hypers-hero {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.hypers-hero h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.hypers-hero p { font-size: 15px; opacity: .7; max-width: 600px; margin: 0 auto 24px; }
.hypers-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.hypers-stat { display: flex; flex-direction: column; align-items: center; }
.hypers-stat span { font-size: 24px; font-weight: 800; color: var(--accent); }
.hypers-stat { font-size: 13px; opacity: .6; margin-top: 2px; }
.hypers-section-title {
  font-size: 24px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 28px;
}
.hypers-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.hypers-plan {
  background: var(--bg-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
  transition: .3s;
  position: relative;
}
.hypers-plan:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.2); }
.hypers-plan.hypers-premium { border-color: rgba(0,212,255,.25); }
.hypers-plan-img { height: 120px; display: flex; align-items: center; justify-content: center; }
.hypers-plan-body { padding: 20px; position: relative; }
.hypers-badge {
  position: absolute; top: -32px; right: 20px;
  background: linear-gradient(45deg, var(--accent), var(--accent-dark)); color: #000;
  padding: 4px 16px; border-radius: 6px; font-size: 11px; font-weight: 700;
}
.hypers-plan-body h3 { font-size: 20px; color: #fff; margin-bottom: 6px; }
.hypers-plan-body > p { font-size: 13px; opacity: .6; margin-bottom: 14px; }
.hypers-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.hypers-badges span {
  font-size: 11px; background: rgba(0,212,255,.08); color: var(--accent);
  padding: 3px 10px; border-radius: 4px;
}
.hypers-plan-price { font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 14px; }
.hypers-plan-body button {
  width: 100%; padding: 10px; border-radius: 8px; border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff;
  font-weight: 700; font-size: 14px; cursor: pointer; transition: .2s;
}
.hypers-plan-body button:hover { transform: scale(1.04); }
.hypers-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 40px;
}
.hypers-cta h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hypers-cta p { font-size: 15px; opacity: .7; margin-bottom: 24px; }
.hypers-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hypers-cta-contact {
  background: transparent; border: 1px solid rgba(255,255,255,.1); color: #e0e0e0;
  padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: .2s;
}
.hypers-cta-contact:hover { border-color: var(--accent); color: var(--accent); }
.hypers-cta-calc {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff;
  padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: .2s;
}
.hypers-cta-calc:hover { transform: scale(1.04); }

/* ===== TRACKER ===== */
.tracker-hero {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.tracker-hero h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.tracker-hero p { font-size: 15px; opacity: .7; max-width: 600px; margin: 0 auto 24px; }
.tracker-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.tracker-stat { display: flex; flex-direction: column; align-items: center; }
.tracker-stat span { font-size: 24px; font-weight: 800; color: var(--accent); }
.tracker-stat { font-size: 13px; opacity: .6; margin-top: 2px; }
.tracker-section-title {
  font-size: 24px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 28px;
}
.tracker-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.tracker-plan {
  background: var(--bg-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
  transition: .3s;
  position: relative;
}
.tracker-plan:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.2); }
.tracker-plan.tracker-premium { border-color: rgba(0,212,255,.25); }
.tracker-plan-img { height: 120px; display: flex; align-items: center; justify-content: center; }
.tracker-plan-body { padding: 20px; position: relative; }
.tracker-badge {
  position: absolute; top: -32px; right: 20px;
  background: linear-gradient(45deg, var(--accent), var(--accent-dark)); color: #000;
  padding: 4px 16px; border-radius: 6px; font-size: 11px; font-weight: 700;
}
.tracker-plan-body h3 { font-size: 20px; color: #fff; margin-bottom: 6px; }
.tracker-plan-body > p { font-size: 13px; opacity: .6; margin-bottom: 14px; }
.tracker-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tracker-badges span {
  font-size: 11px; background: rgba(0,212,255,.08); color: var(--accent);
  padding: 3px 10px; border-radius: 4px;
}
.tracker-plan-price { font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 14px; }
.tracker-plan-body button {
  width: 100%; padding: 10px; border-radius: 8px; border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff;
  font-weight: 700; font-size: 14px; cursor: pointer; transition: .2s;
}
.tracker-plan-body button:hover { transform: scale(1.04); }
.tracker-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 40px;
}
.tracker-cta h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.tracker-cta p { font-size: 15px; opacity: .7; margin-bottom: 24px; }
.tracker-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.tracker-cta-contact {
  background: transparent; border: 1px solid rgba(255,255,255,.1); color: #e0e0e0;
  padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: .2s;
}
.tracker-cta-contact:hover { border-color: var(--accent); color: var(--accent); }
.tracker-cta-calc {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff;
  padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: .2s;
}
.tracker-cta-calc:hover { transform: scale(1.04); }

/* ===== VPS PLANS ===== */
.vps-hero {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.vps-hero h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.vps-hero p { font-size: 15px; opacity: .7; max-width: 600px; margin: 0 auto 24px; }
.vps-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.vps-stat { display: flex; flex-direction: column; align-items: center; }
.vps-stat span { font-size: 24px; font-weight: 800; color: var(--accent); }
.vps-stat { font-size: 13px; opacity: .6; margin-top: 2px; }
.vps-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
.vps-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.vps-plan {
  background: var(--bg-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
  transition: .3s;
}
.vps-plan:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.2); }
.vps-plan.vps-premium { border-color: rgba(0,212,255,.25); position: relative; }
.vps-plan-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
}
.vps-plan-body { padding: 20px; position: relative; }
.vps-badge {
  position: absolute;
  top: -32px;
  right: 20px;
  background: linear-gradient(45deg, var(--accent), var(--accent-dark));
  color: #000;
  padding: 4px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}
.vps-plan-location { font-size: 12px; opacity: .5; margin-bottom: 8px; }
.vps-plan h3 { font-size: 20px; color: #fff; margin-bottom: 6px; }
.vps-plan-body > p { font-size: 13px; opacity: .6; margin-bottom: 16px; }
.vps-plan-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.vps-spec { font-size: 13px; display: flex; flex-direction: column; }
.vps-spec span { font-size: 11px; opacity: .5; }
.vps-plan-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.vps-plan-badges span {
  font-size: 11px;
  background: rgba(0,212,255,.08);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
}
.vps-plan-price { font-size: 24px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.vps-plan-price small { font-size: 13px; font-weight: 400; opacity: .7; }
.vps-plan-body button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  transition: .2s;
  width: 100%;
}
.vps-plan-body button:hover { transform: scale(1.04); }

/* ===== CALCULATOR ===== */
.calculator-section {
  padding: 60px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.calc-subtitle { text-align: center; font-size: 15px; opacity: .6; margin-bottom: 32px; margin-top: -16px; }
.calc-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
.calc-tab {
  background: linear-gradient(145deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.06);
  color: #e0e0e0;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
  transition: .3s;
  flex-shrink: 0;
  font-weight: 600;
}
.calc-tab:hover { border-color: rgba(0,212,255,.3); transform: translateY(-1px); }
.calc-tab.active { background: linear-gradient(135deg, rgba(0,212,255,.12), rgba(0,212,255,.06)); border-color: var(--accent); color: var(--accent); box-shadow: 0 0 15px rgba(0,212,255,.12); }
.calc-items {
  background: linear-gradient(145deg, var(--bg-mid), var(--bg-light));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.calc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: .3s;
}
.calc-item:last-child { border-bottom: none; }
.calc-item:hover { background: rgba(0,212,255,.03); }
.calc-item-icon { font-size: 28px; width: 40px; text-align: center; flex-shrink: 0; }
.calc-item-name { flex: 1; font-size: 14px; }
.calc-item-gems { font-size: 14px; font-weight: 600; background: linear-gradient(135deg, var(--accent-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; min-width: 70px; text-align: right; }
.calc-item-qty {
  width: 60px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.4);
  color: #fff;
  font-size: 14px;
  text-align: center;
  flex-shrink: 0;
}
.calc-item-qty:focus { outline: none; border-color: var(--accent); }
.calc-total {
  margin-top: 24px;
  background: linear-gradient(145deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(0,212,255,.15);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}
.calc-total:hover { border-color: rgba(229,183,58,.4); box-shadow: var(--glow-accent); }
.calc-total-label { font-size: 18px; font-weight: 700; color: #fff; }
.calc-total-value { font-size: 36px; font-weight: 800; background: linear-gradient(135deg, var(--accent-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.wishlist {
  margin-top: 24px;
  background: linear-gradient(145deg, var(--bg-mid), var(--bg-light));
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 14px;
  overflow: hidden;
}
.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
  gap: 12px;
}
.wishlist-header h3 { font-size: 18px; color: #fff; }
.wishlist-save {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: #fff;
  transition: .3s;
}
.wishlist-save:hover { transform: scale(1.04); box-shadow: 0 4px 15px rgba(0,212,255,.25); }
.wishlist-items { padding: 12px 20px; min-height: 60px; }
.wishlist-empty { font-size: 13px; opacity: .4; text-align: center; padding: 20px 0; }
.wi {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 14px;
}
.wi:last-child { border-bottom: none; }
.wi-icon { font-size: 22px; width: 32px; text-align: center; flex-shrink: 0; }
.wi-name { flex: 1; }
.wi-qty { opacity: .6; min-width: 40px; }
.wi-sub { font-weight: 600; color: var(--accent); min-width: 70px; text-align: right; }
.wishlist-footer {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 16px;
  font-weight: 700;
}
.wishlist-total { color: var(--accent); font-size: 20px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: .4s;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: linear-gradient(145deg, var(--bg-mid), rgba(22,34,64,.9));
  border: 1px solid rgba(0,212,255,.08);
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 0 0 28px;
  position: relative;
  transform: scale(.8) translateY(20px);
  transition: .4s cubic-bezier(.175,.885,.32,1.275);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.4);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
  transition: .3s;
}
.modal-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
.modal-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}
.modal-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-mid), transparent);
}
.modal h2 { font-size: 22px; color: #fff; margin: 20px 24px 8px; }
.modal p { font-size: 14px; opacity: .65; margin: 0 24px 16px; line-height: 1.6; }
.modal-price { font-size: 30px; font-weight: 800; background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 0 24px 20px; }
.modal-note { font-size: 13px; opacity: .5; margin: 0 24px 12px !important; }
.modal-order {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  margin: 0 24px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.modal-order:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,.3); }
.modal-order i { font-size: 18px; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #0d0d1a, #06060e);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 50px 24px 20px;
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .3;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.footer-brand { font-size: 20px; font-weight: 700; }
.footer-brand i { color: var(--accent); margin-right: 8px; filter: drop-shadow(0 0 4px rgba(0,212,255,.25)); }
.footer-brand span { background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand p { font-size: 13px; opacity: .5; font-weight: 400; margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; opacity: .6; transition: .3s; position: relative; }
.footer-links a:hover { opacity: 1; color: var(--accent); }
/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 90px; right: 30px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  z-index: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: .4s;
  box-shadow: 0 8px 25px rgba(16,185,129,.3);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0d0d1a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  transition: .4s;
  box-shadow: 0 4px 15px rgba(0,0,0,.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,212,255,.25); }

.footer-bottom {
  text-align: center;
  font-size: 13px;
  opacity: .5;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.04);
}

/* ===== RESPONSIVE - MOBILE FIRST ===== */

/* Tablets & small screens */
@media (max-width: 768px) {
  body { font-size: 15px; }
  section, .product-page { padding-left: 16px !important; padding-right: 16px !important; }
  nav { padding: 0 16px; }
  .logo span { font-size: 16px; }
  .hero { padding: 60px 16px 40px !important; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; margin-bottom: 24px; }
  .hero-stats { gap: 12px; }
  .stat { min-width: auto; padding: 12px 16px; flex: 1; }
  .stat-num { font-size: 28px; }
  .section-title { font-size: 24px; margin-bottom: 24px; }
  .offers { padding: 40px 16px !important; }
  .offer-card { min-width: 260px; max-width: 260px; }
  .offer-img { height: 140px; }
  .offer-img span { font-size: 60px !important; }
  .offer-body { padding: 16px; }
  .offer-body h3 { font-size: 17px; }
  .offer-body .price { font-size: 24px; }
  .offer-body button, .offer-body .buy-btn { padding: 12px 24px; font-size: 14px; }
  .services { padding: 40px 16px !important; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }
  .category-icon { font-size: 36px; }
  .features { padding: 40px 16px !important; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 24px 16px; }
  .feature-card .fi { font-size: 32px; }
  .contact { padding: 40px 16px !important; }
  .contact-cards { flex-direction: column; align-items: stretch; }
  .contact-card { max-width: 100%; padding: 28px 20px; }
  .contact-sub { font-size: 14px; margin-bottom: 24px; }
  .product-page { padding: 30px 16px !important; }
  .product-back { margin-bottom: 20px; }
  .product-layout { flex-direction: column; align-items: center; gap: 20px; }
  .product-image { width: 100%; min-height: 180px; font-size: 60px; }
  .product-features { grid-template-columns: 1fr; }
  .product-info h1 { font-size: 24px; }
  .product-pricing { padding: 20px; }
  .product-pricing h2 { font-size: 28px; }
  .calc-hero { padding: 30px 16px !important; }
  .calc-hero h1 { font-size: 24px; }
  .calc-hero p { font-size: 14px; }
  .calc-stats { gap: 8px; }
  .calc-stat { padding: 12px 16px; font-size: 12px; flex: 1; }
  .calc-stat span { font-size: 22px; }
  .calc-how-grid { grid-template-columns: 1fr; gap: 12px; }
  .calc-how-step { padding: 20px 16px; }
  .calc-features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .calc-section-title { font-size: 22px; }
  .calc-cta-btn { padding: 14px 32px; font-size: 16px; }
  .gems-how-grid { grid-template-columns: 1fr; gap: 12px; }
  .gems-how-step { padding: 20px 16px; }
  .gems-why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gems-why-card { padding: 20px 12px; }
  .gems-faq-item { padding: 16px 20px; }
  .gems-hero { padding: 24px 16px !important; }
  .gems-hero h1 { font-size: 22px; }
  .gems-hero p { font-size: 14px; }
  .gems-stats { gap: 8px; }
  .gems-stat { padding: 10px 16px; font-size: 12px; }
  .gems-plans { grid-template-columns: 1fr; gap: 16px; }
  .gems-section-title { font-size: 22px; margin-bottom: 20px; }
  .gems-cta { padding: 24px 16px !important; }
  .gems-cta h2 { font-size: 22px; }
  .gems-cta-btns { flex-direction: column; gap: 10px; }
  .gems-cta-btns a { width: 100%; text-align: center; }
  .bots-hero { padding: 24px 16px !important; }
  .bots-hero h1 { font-size: 22px; }
  .bots-stats { gap: 8px; }
  .bots-stat span { font-size: 20px; }
  .bots-plans { grid-template-columns: 1fr; gap: 16px; }
  .bots-plan-features { grid-template-columns: 1fr; }
  .bots-plan-body { padding: 16px; }
  .bots-section-title { font-size: 22px; margin-bottom: 20px; }
  .rss-hero { padding: 24px 16px !important; }
  .rss-hero h1 { font-size: 22px; }
  .rss-stats { gap: 8px; }
  .rss-plans { grid-template-columns: 1fr; gap: 16px; }
  .rss-section-title { font-size: 22px; margin-bottom: 20px; }
  .rss-cta { padding: 24px 16px !important; }
  .rss-cta h2 { font-size: 22px; }
  .rss-cta-btns { flex-direction: column; gap: 10px; }
  .rss-cta-btns a { width: 100%; text-align: center; }
  .hypers-hero { padding: 24px 16px !important; }
  .hypers-hero h1 { font-size: 22px; }
  .hypers-stats { gap: 8px; }
  .hypers-plans { grid-template-columns: 1fr; gap: 16px; }
  .hypers-section-title { font-size: 22px; margin-bottom: 20px; }
  .hypers-cta { padding: 24px 16px !important; }
  .hypers-cta h2 { font-size: 22px; }
  .hypers-cta-btns { flex-direction: column; gap: 10px; }
  .hypers-cta-btns a { width: 100%; text-align: center; }
  .tracker-hero { padding: 24px 16px !important; }
  .tracker-hero h1 { font-size: 22px; }
  .tracker-stats { gap: 8px; }
  .tracker-plans { grid-template-columns: 1fr; gap: 16px; }
  .tracker-section-title { font-size: 22px; margin-bottom: 20px; }
  .tracker-cta { padding: 24px 16px !important; }
  .tracker-cta h2 { font-size: 22px; }
  .tracker-cta-btns { flex-direction: column; gap: 10px; }
  .tracker-cta-btns a { width: 100%; text-align: center; }
  .vps-hero { padding: 24px 16px !important; }
  .vps-hero h1 { font-size: 22px; }
  .vps-stats { gap: 8px; }
  .vps-plans { grid-template-columns: 1fr; gap: 16px; }
  .vps-plan-specs { grid-template-columns: 1fr; }
  .vps-section-title { font-size: 22px; margin-bottom: 20px; }
  .calc-items { border-radius: 10px; }
  .calc-item { flex-wrap: nowrap; gap: 6px; padding: 8px 10px; }
  .calc-item-icon { width: 28px; font-size: 22px; }
  .calc-item-name { min-width: 0; font-size: 12px; flex-shrink: 1; }
  .calc-item-gems { font-size: 11px; min-width: 50px; }
  .calc-item-qty { width: 44px; padding: 6px; font-size: 12px; flex-shrink: 0; }
  .calc-tabs { gap: 4px; padding-bottom: 6px; }
  .calc-tab { padding: 8px 14px; font-size: 12px; }
  .calc-total { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
  .calc-total-label { font-size: 16px; }
  .calc-total-value { font-size: 28px; }
  .calc-subtitle { font-size: 14px; margin-bottom: 20px; }
  .wishlist-header { flex-direction: column; gap: 10px; align-items: stretch; }
  .wishlist-save { width: 100%; text-align: center; }
  footer { padding: 30px 16px 16px !important; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-brand p { font-size: 12px; }
  .back-to-top { bottom: 60px; right: 12px; width: 36px; height: 36px; font-size: 16px; }
  .toast { bottom: 12px; right: 12px; left: 12px; text-align: center; }
  /* Show smaller carousel arrows on mobile */
  .carousel-btn { display: flex; width: 34px; height: 34px; font-size: 14px; background: rgba(13,13,26,.85); }
  /* Disable heavy animations for performance */
  .hero-glow-1, .hero-glow-2, .hero-glow-3 { display: none; }
  .hero::before, .hero::after { animation: none; }
  .star { animation: none; opacity: .15; }
}

/* Phones */
@media (max-width: 480px) {
  nav { padding: 0 12px; }
  .nav-inner { height: 56px; }
  .logo { font-size: 18px; }
  .logo i { font-size: 20px; }
  .logo span { font-size: 15px; }
  .hero { padding: 40px 12px 30px !important; }
  .hero h1 { font-size: 22px; }
  .hero p { font-size: 14px; margin-bottom: 20px; }
  .hero-stats { gap: 8px; }
  .stat { padding: 10px 12px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 11px; }
  .section-title { font-size: 20px; margin-bottom: 20px; }
  .section-title::after { width: 50px; }
  .offers { padding: 30px 12px !important; }
  .offer-card { min-width: 250px; max-width: 250px; }
  .offer-img { height: 120px; }
  .offer-img span { font-size: 48px !important; }
  .offer-body { padding: 14px; }
  .offer-body h3 { font-size: 16px; }
  .offer-body p { font-size: 13px; margin-bottom: 10px; }
  .offer-body .price { font-size: 22px; margin-bottom: 10px; }
  .offer-body button, .offer-body .buy-btn { padding: 12px 20px; font-size: 14px; }
  .services { padding: 30px 12px !important; }
  .services-grid { gap: 12px; }
  .service-card { padding: 24px 18px; }
  .category-icon { font-size: 34px; margin-bottom: 10px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 13px; margin-bottom: 12px; }
  .explore-btn { padding: 10px 24px; font-size: 13px; }
  .features { padding: 30px 12px !important; }
  .features-grid { grid-template-columns: 1fr; gap: 10px; }
  .feature-card { padding: 24px 18px; }
  .feature-card .fi { font-size: 32px; margin-bottom: 8px; }
  .feature-card h3 { font-size: 16px; }
  .contact { padding: 30px 12px !important; }
  .contact-card { padding: 28px 18px; }
  .contact-card i { font-size: 36px; }
  .contact-card h3 { font-size: 17px; }
  .contact-card p { font-size: 14px; }
  .calc-hero { padding: 20px 12px !important; }
  .calc-hero h1 { font-size: 20px; }
  .calc-stat { padding: 8px 12px; font-size: 11px; }
  .calc-stat span { font-size: 18px; }
  .calc-how-step { padding: 16px 12px; }
  .calc-how-step span { font-size: 28px; }
  .calc-how-step h3 { font-size: 14px; }
  .calc-features-grid { grid-template-columns: 1fr; }
  .calc-feature-card { padding: 16px 12px; }
  .calc-feature-card span { font-size: 26px; }
  .calc-cta-btn { padding: 12px 24px; font-size: 14px; }
  .gems-hero { padding: 20px 12px !important; }
  .gems-hero h1 { font-size: 20px; }
  .gems-plan { border-radius: 12px; }
  .gems-plan-img { height: 80px; }
  .gems-plan-img span { font-size: 36px !important; }
  .gems-plan-body { padding: 14px; }
  .gems-plan-body h3 { font-size: 17px; }
  .gems-plan-price { font-size: 24px; }
  .gems-section-title { font-size: 20px; }
  .gems-why-grid { grid-template-columns: 1fr; }
  .gems-cta h2 { font-size: 20px; }
  .bots-hero { padding: 20px 12px !important; }
  .bots-hero h1 { font-size: 20px; }
  .bots-plan-img { height: 80px; }
  .bots-plan-body { padding: 14px; }
  .bots-plan-body h3 { font-size: 17px; }
  .bots-plan-price { font-size: 24px; }
  .bots-plan-btns { flex-direction: column; gap: 8px; }
  .rss-hero { padding: 20px 12px !important; }
  .rss-hero h1 { font-size: 20px; }
  .rss-plan-img { height: 80px; }
  .rss-plan-body { padding: 14px; }
  .rss-plan-body h3 { font-size: 17px; }
  .rss-plan-price { font-size: 24px; }
  .hypers-hero { padding: 20px 12px !important; }
  .hypers-hero h1 { font-size: 20px; }
  .hypers-plan-img { height: 80px; }
  .hypers-plan-body { padding: 14px; }
  .hypers-plan-body h3 { font-size: 17px; }
  .hypers-plan-price { font-size: 24px; }
  .tracker-hero { padding: 20px 12px !important; }
  .tracker-hero h1 { font-size: 20px; }
  .tracker-plan-img { height: 80px; }
  .tracker-plan-body { padding: 14px; }
  .tracker-plan-body h3 { font-size: 17px; }
  .tracker-plan-price { font-size: 24px; }
  .vps-hero { padding: 20px 12px !important; }
  .vps-hero h1 { font-size: 20px; }
  .vps-plan-img { height: 70px; }
  .vps-plan-body { padding: 14px; }
  .vps-plan-body h3 { font-size: 17px; }
  .vps-plan-price { font-size: 24px; }
  .calc-tab { padding: 6px 10px; font-size: 11px; }
  .calc-item { padding: 8px 10px; }
  .calc-item-name { min-width: 80px; font-size: 12px; }
  .calc-item-gems { font-size: 11px; min-width: 50px; }
  .calc-item-qty { width: 44px; padding: 4px 6px; font-size: 12px; }
  .calc-total { padding: 12px 16px; }
  .calc-total-value { font-size: 24px; }
  .wishlist-header h3 { font-size: 16px; }
  .wishlist-save { font-size: 12px; padding: 8px 16px; }
  .product-page h1 { font-size: 22px; }
  footer { padding: 24px 12px 12px !important; }
  .footer-brand { font-size: 17px; }
  .footer-links a { font-size: 12px; }
  .footer-bottom { font-size: 11px; }
  .modal { margin: 12px; }
  .modal h2 { font-size: 18px; margin: 16px 16px 6px; }
  .modal p { font-size: 13px; margin: 0 16px 12px; }
  .modal-price { font-size: 24px; margin: 0 16px 16px; }
  .modal-order { margin: 0 16px; padding: 12px 16px; font-size: 14px; }
  .modal-img { height: 120px; font-size: 48px; }
  .back-to-top { bottom: 12px; right: 12px; width: 34px; height: 34px; font-size: 14px; }
  .toast { font-size: 12px; padding: 8px 14px; bottom: 56px; }
  .popular-badge { font-size: 9px !important; padding: 2px 30px !important; }

/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 360px) {
  .nav-inner { height: 50px; }
  .logo { font-size: 16px; }
  .logo i { font-size: 18px; }
  .logo span { font-size: 13px; }
  .hero { padding: 30px 8px 24px !important; }
  .hero h1 { font-size: 18px; }
  .hero p { font-size: 13px; margin-bottom: 16px; }
  .hero-stats { gap: 6px; }
  .stat { padding: 8px 10px; }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 10px; }
  .section-title { font-size: 17px; }
  .section-title::after { width: 40px; height: 2px; }
  .offers { padding: 20px 8px !important; }
  .offer-card { min-width: 200px; max-width: 200px; }
  .offer-img { height: 100px; }
  .offer-img span { font-size: 40px !important; }
  .offer-body { padding: 10px; }
  .offer-body h3 { font-size: 14px; }
  .offer-body p { font-size: 12px; margin-bottom: 8px; }
  .offer-body .price { font-size: 18px; margin-bottom: 8px; }
  .offer-body button, .offer-body .buy-btn { padding: 8px 14px; font-size: 12px; }
  .carousel-btn { width: 28px; height: 28px; font-size: 12px; }
  .services { padding: 20px 8px !important; }
  .service-card { padding: 18px 12px; }
  .category-icon { font-size: 28px; margin-bottom: 8px; }
  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 12px; margin-bottom: 10px; }
  .explore-btn { padding: 8px 18px; font-size: 12px; }
  .features { padding: 20px 8px !important; }
  .feature-card { padding: 18px 12px; }
  .feature-card .fi { font-size: 28px; }
  .feature-card h3 { font-size: 14px; }
  .contact { padding: 20px 8px !important; }
  .contact-card { padding: 20px 12px; }
  .contact-card i { font-size: 28px; }
  .contact-card a { font-size: 12px; padding: 8px 18px; }
  .calc-hero { padding: 16px 8px !important; }
  .calc-hero h1 { font-size: 17px; }
  .calc-tab { padding: 5px 8px; font-size: 10px; }
  .calc-tabs { gap: 3px; }
  .calc-item-icon { width: 24px; font-size: 18px; }
  .calc-item-name { font-size: 11px; }
  .calc-item-gems { font-size: 10px; min-width: 40px; }
  .calc-item-qty { width: 38px; padding: 4px; font-size: 11px; }
  .calc-total { padding: 10px 12px; }
  .calc-total-label { font-size: 13px; }
  .calc-total-value { font-size: 20px; }
  .wishlist-header { padding: 10px 12px; }
  .wishlist-header h3 { font-size: 14px; }
  .wishlist-save { font-size: 11px; padding: 6px 12px; }
  .wi { font-size: 12px; padding: 6px 0; }
  .wishlist-footer { font-size: 13px; padding: 10px 12px; }
  .wishlist-total { font-size: 16px; }
  .product-page { padding: 16px 8px !important; }
  .product-info h1 { font-size: 18px; }
  .product-price { font-size: 24px; }
  .modal { margin: 8px; }
  .modal h2 { font-size: 16px; margin: 12px 12px 4px; }
  .modal p { font-size: 12px; margin: 0 12px 10px; }
  .modal-price { font-size: 20px; margin: 0 12px 12px; }
  .modal-order { margin: 0 12px; padding: 10px 12px; font-size: 13px; }
  .modal-img { height: 100px; font-size: 40px; }
  .back-to-top { width: 30px; height: 30px; font-size: 12px; bottom: 8px; right: 8px; }
  .toast { font-size: 11px; padding: 6px 12px; bottom: 48px; right: 8px; left: 8px; }
}
