/* =============================================
   OrbitHost — Main Stylesheet
   ============================================= */

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --dark: #0f0f23;
  --dark2: #1a1a3e;
  --dark3: #16213e;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --card-bg: rgba(255,255,255,0.05);
  --card-border: rgba(255,255,255,0.1);
  --gradient: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --gradient2: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient3: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(99,102,241,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(6,182,212,.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(245,158,11,.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
a { text-decoration: none; color: inherit; transition: all .3s; }
a:hover { color: var(--primary); }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
section { padding: 80px 0; }

/* ===== TOPBAR ===== */
.topbar {
  background: rgba(99,102,241,.12);
  border-bottom: 1px solid rgba(99,102,241,.25);
  padding: 8px 0;
  font-size: 13px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; align-items: center; gap: 20px; color: var(--text-muted); }
.topbar-left i { color: var(--secondary); margin-right: 5px; }
.topbar-right a { color: var(--text-muted); margin-left: 15px; }
.topbar-right a:hover { color: white; }
@media(max-width:600px){ .topbar-right { display: none; } }

/* ===== NAVBAR ===== */
nav {
  background: rgba(15,15,35,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(99,102,241,.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white; flex-shrink: 0;
}
.logo-text { font-size: 21px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-text span { -webkit-text-fill-color: var(--accent); color: var(--accent); }

/* Desktop nav */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--text-muted); padding: 8px 14px;
  border-radius: 8px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: white; background: rgba(99,102,241,.2); }
.nav-links > li > a.nav-cta { background: var(--gradient) !important; color: white !important; padding: 9px 18px !important; }
.nav-links > li > a.nav-cta:hover { opacity: .9; box-shadow: 0 4px 20px rgba(99,102,241,.4); }
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(99,102,241,.4);
  color: #a5b4fc;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s;
}
.lang-toggle-btn:hover {
  background: rgba(99,102,241,.15);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--dark2); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 8px; min-width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all .25s; z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  color: var(--text-muted); font-size: 14px;
}
.dropdown-menu a:hover { background: rgba(99,102,241,.15); color: white; }
.dropdown-menu a i { width: 20px; text-align: center; color: var(--primary); font-size: 14px; }
.dropdown-menu .sep { border-top: 1px solid var(--card-border); margin: 6px 0; }

.hamburger { display: none; background: none; border: none; color: white; font-size: 22px; cursor: pointer; padding: 5px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-top: 1px solid var(--card-border);
  padding: 12px 16px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-muted); padding: 10px 14px; border-radius: 8px; font-size: 14px; display: block; }
.mobile-menu a:hover { background: rgba(99,102,241,.2); color: white; }
.mobile-menu .m-section-label { font-size: 11px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 8px 14px 4px; }

@media(max-width:920px){ .nav-links { display: none; } .hamburger { display: block; } }

/* ===== BUTTONS ===== */
.btn {
  padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all .3s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; font-family: inherit; white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: white; box-shadow: 0 5px 20px rgba(99,102,241,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(99,102,241,.5); color: white; }
.btn-secondary { background: var(--gradient3); color: white; box-shadow: 0 5px 20px rgba(16,185,129,.3); }
.btn-secondary:hover { transform: translateY(-2px); color: white; }
.btn-outline { background: transparent; color: white; border: 1px solid var(--card-border); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--primary); background: rgba(99,102,241,.1); color: white; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-tag {
  display: inline-block;
  background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.3);
  color: #a5b4fc; padding: 4px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.section-tag.green { background: rgba(16,185,129,.15); border-color: rgba(16,185,129,.3); color: #6ee7b7; }
.section-tag.cyan  { background: rgba(6,182,212,.15); border-color: rgba(6,182,212,.3); color: #67e8f9; }
.section-tag.amber { background: rgba(245,158,11,.15); border-color: rgba(245,158,11,.3); color: #fcd34d; }
.section-title { font-size: clamp(26px,4vw,42px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 560px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 28px; transition: all .3s;
}
.card:hover { border-color: rgba(99,102,241,.4); transform: translateY(-4px); background: rgba(99,102,241,.07); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.card-icon.indigo { background: rgba(99,102,241,.15); color: var(--primary); }
.card-icon.cyan   { background: rgba(6,182,212,.15); color: var(--secondary); }
.card-icon.green  { background: rgba(16,185,129,.15); color: var(--success); }
.card-icon.amber  { background: rgba(245,158,11,.15); color: var(--accent); }
.card-icon.purple { background: rgba(168,85,247,.15); color: #a855f7; }
.card-icon.red    { background: rgba(239,68,68,.15); color: var(--danger); }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ===== PRICING CARDS ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 34px; transition: all .3s; position: relative;
}
.pricing-card:hover { border-color: rgba(99,102,241,.45); transform: translateY(-4px); }
.pricing-card.popular { border-color: var(--primary); background: rgba(99,102,241,.08); transform: scale(1.03); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gradient); color: white; padding: 4px 12px;
  border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.plan-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-price .currency { font-size: 20px; font-weight: 600; color: var(--text-muted); margin-top: 4px; }
.plan-price .amount { font-size: 46px; font-weight: 900; color: white; line-height: 1; }
.plan-price .period { font-size: 14px; color: var(--text-muted); }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.plan-features { margin-bottom: 26px; display: flex; flex-direction: column; gap: 0; }
.plan-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.05); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li i.fa-check { color: var(--success); }
.plan-features li i.fa-times { color: var(--text-muted); }
.plan-features li.disabled { color: var(--text-muted); }

/* ===== SPEC TABLE ===== */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th { background: rgba(99,102,241,.1); padding: 12px 16px; text-align: left; font-weight: 700; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.spec-table th:first-child { border-radius: 10px 0 0 0; }
.spec-table th:last-child  { border-radius: 0 10px 0 0; }
.spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--card-border); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: rgba(99,102,241,.05); }
.spec-table .check { color: var(--success); }
.spec-table .cross { color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(99,102,241,.4); }
.faq-question {
  width: 100%; background: none; border: none; color: white; text-align: left;
  padding: 17px 20px; font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: inherit; transition: color .3s;
}
.faq-question:hover { color: #a5b4fc; }
.faq-icon { font-size: 17px; transition: transform .3s; color: var(--text-muted); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 250px; padding: 0 20px 16px; }

/* ===== TRUST BAND ===== */
.trust-band { padding: 28px 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); background: rgba(255,255,255,.02); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 14px; font-weight: 500; }
.trust-item i { color: var(--secondary); font-size: 17px; }

/* ===== PAGE HERO — Two-Column Layout ===== */
.page-hero {
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

/* Two-column grid */
.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left column — text */
.hero-left { text-align: left; }
.page-hero .hero-left .section-tag { margin-bottom: 16px; }
.page-hero .hero-left h1 {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.page-hero .hero-left p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.page-hero .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust-line {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-trust-line span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Right column — visual card */
.page-hero .hero-right { position: relative; }
.hero-visual-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-vc-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.hero-vc-title .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* Stat row inside hero card */
.hero-stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px;
}
.hero-stat-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 14px; text-align: center;
}
.hero-stat-box .val {
  font-size: 22px; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.hero-stat-box .key { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* Feature list inside hero card */
.hero-vc-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.hero-vc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.04); font-size: 13px;
}
.hero-vc-item i { font-size: 14px; flex-shrink: 0; width: 18px; text-align: center; }
.hero-vc-item span { color: var(--text-muted); }
.hero-vc-item strong { color: white; }

/* Plan preview inside hero card */
.hero-plan-preview {
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.3);
  border-radius: 14px; padding: 18px; text-align: center; margin-top: 14px;
}
.hero-plan-preview .plan-from { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.hero-plan-preview .plan-price { font-size: 36px; font-weight: 900; color: white; line-height: 1; }
.hero-plan-preview .plan-period { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

/* Responsive */
@media(max-width:768px) {
  .page-hero .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-left { text-align: center; }
  .page-hero .hero-left p { max-width: 100%; }
  .page-hero .hero-btns { justify-content: center; }
  .page-hero .hero-right { display: none; }
}

/* ===== SERVER STATUS CARD (hero-right) ===== */
.server-status-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.server-status-card .card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.server-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 8px;
}
.badge-online {
  background: rgba(16,185,129,0.2);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.35);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.uptime-bar { margin-top: 14px; }
.uptime-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.uptime-label span:last-child { color: var(--success); font-weight: 700; }
.bar-track {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success), #34d399);
  border-radius: 50px;
}

/* Stats grid below server card */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.stat-number {
  font-size: 22px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 5px; }

/* ===== TRUST BAR (inside hero section) ===== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
  border-top: 1px solid var(--card-border);
  padding-top: 28px;
}
.trust-bar .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 36px;
  border-right: 1px solid var(--card-border);
}
.trust-bar .trust-item:last-child { border-right: none; }
.trust-bar .trust-item strong {
  font-size: 14px;
  color: white;
  font-weight: 700;
}
.trust-bar .trust-item span {
  font-size: 12px;
  color: var(--text-muted);
}
@media(max-width:640px) {
  .trust-bar .trust-item { border-right: none; padding: 10px 20px; }
}

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 22px; }
.feature-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 28px; transition: all .3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transition: transform .3s;
}
.feature-card:hover { border-color: rgba(99,102,241,.4); transform: translateY(-4px); background: rgba(99,102,241,.07); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient); border-radius: 22px;
  padding: 55px 40px; text-align: center;
  position: relative; overflow: hidden; margin: 0 0 40px;
}
.cta-banner::before {
  content: ''; position: absolute; inset: -50%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 60%);
}
.cta-banner h2 { font-size: clamp(24px,4vw,38px); font-weight: 900; color: white; margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.82); margin-bottom: 30px; }
.btn-white { background: white; color: var(--primary-dark); font-weight: 700; box-shadow: 0 5px 20px rgba(0,0,0,.2); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.25); color: var(--primary-dark); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 22px; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 26px; transition: all .3s; }
.testimonial-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-3px); }
.stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.t-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: white; flex-shrink: 0; }
.t-name { font-weight: 600; font-size: 14px; }
.t-role { font-size: 12px; color: var(--text-muted); }

/* ===== FOOTER ===== */
footer { background: var(--dark2); border-top: 1px solid var(--card-border); padding: 55px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 45px; }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.social-links { display: flex; gap: 9px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.06);
  border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px; transition: all .3s;
}
.social-btn:hover { background: var(--gradient); color: white; border-color: transparent; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; color: white; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { color: var(--text-muted); font-size: 14px; transition: color .3s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid var(--card-border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: var(--text-muted);
}
.payment-icons { display: flex; align-items: center; gap: 8px; }
.payment-icon { background: rgba(255,255,255,.08); border: 1px solid var(--card-border); border-radius: 6px; padding: 3px 9px; font-size: 11px; font-weight: 700; }

/* ===== LIVE CHAT ===== */
.live-chat-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 54px; height: 54px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; color: white; box-shadow: 0 5px 25px rgba(99,102,241,.5);
  z-index: 999; transition: transform .3s; animation: livepulse 2.5s infinite;
}
.live-chat-btn:hover { transform: scale(1.12); color: white; }
@keyframes livepulse {
  0%,100% { box-shadow: 0 5px 25px rgba(99,102,241,.5); }
  50%  { box-shadow: 0 5px 40px rgba(99,102,241,.8); }
}

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
.anim-1 { animation: fadeInUp .6s ease both; }
.anim-2 { animation: fadeInUp .6s ease .1s both; }
.anim-3 { animation: fadeInUp .6s ease .2s both; }
.anim-4 { animation: fadeInUp .6s ease .3s both; }

/* ===== DOMAIN CHECKER ===== */
.domain-checker {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 32px; max-width: 700px; margin: 0 auto 50px;
}
.domain-checker h3 { font-size: 20px; font-weight: 700; margin-bottom: 18px; text-align: center; }
.domain-input-group { display: flex; gap: 10px; flex-wrap: wrap; }
.domain-input-group input {
  flex: 1; min-width: 200px; background: rgba(255,255,255,.06);
  border: 1px solid var(--card-border); border-radius: 10px;
  padding: 13px 18px; color: white; font-size: 15px; font-family: inherit; outline: none; transition: border-color .3s;
}
.domain-input-group input:focus { border-color: var(--primary); }
.domain-input-group input::placeholder { color: var(--text-muted); }
.domain-result { margin-top: 18px; font-size: 14px; color: var(--text-muted); }

/* ===== TLD TABLE ===== */
.tld-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 14px; }
.tld-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 18px 14px; text-align: center; transition: all .3s;
}
.tld-card:hover { border-color: rgba(99,102,241,.4); transform: translateY(-3px); }
.tld-ext { font-size: 20px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tld-price { font-size: 13px; color: var(--text-muted); margin-top: 5px; }
.tld-reg   { font-size: 15px; font-weight: 700; color: white; }

/* ===== VPS SPECS ===== */
.vps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.vps-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 26px; transition: all .3s; position: relative;
}
.vps-card.recommended { border-color: var(--secondary); }
.vps-card:hover { border-color: rgba(6,182,212,.5); transform: translateY(-4px); }
.vps-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary); margin-bottom: 6px; }
.vps-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.vps-price { font-size: 30px; font-weight: 900; color: white; }
.vps-price span { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.vps-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.vps-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 18px; }
.spec-item { background: rgba(255,255,255,.05); border-radius: 8px; padding: 9px; text-align: center; }
.spec-value { font-size: 17px; font-weight: 700; color: var(--secondary); }
.spec-key { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  section { padding: 55px 0; }
  .page-hero { padding: 55px 0 45px; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .cta-banner { padding: 40px 22px; }
}
