/* ==================== RESET & VARIABLES ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #060914;
  --bg-darker: #03060f;
  --surface: #0f1629;
  --surface-2: #1a2338;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: rgba(37, 99, 235, 0.15);
  --secondary: #7c3aed;
  --accent: #06b6d4;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(148, 163, 184, 0.12);
  --border-hover: rgba(37, 99, 235, 0.4);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4 0%, #2563eb 50%, #7c3aed 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hind Siliguri', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Hind Siliguri', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; outline: none; border: none; background: none; color: inherit; }
.hidden { display: none !important; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

::selection { background: var(--primary); color: white; }

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

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px; transition: var(--transition);
  cursor: pointer; white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient); color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-glass {
  background: var(--glass); color: var(--text);
  border: 1px solid var(--border); backdrop-filter: blur(10px);
}
.btn-glass:hover { background: var(--glass-hover); border-color: var(--border-hover); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--primary); background: var(--primary-light); }
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-warning { background: var(--warning); color: white; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(6, 9, 20, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-container {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}
.logo-text { font-size: 20px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.logo-text span { color: var(--primary); }
.nav-menu { display: flex; gap: 6px; align-items: center; }
.nav-link {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--glass-hover); }
.nav-actions { display: flex; gap: 8px; }
.hamburger {
  display: none; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 10px; background: var(--glass); border: 1px solid var(--border);
}
.hamburger span {
  width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO ==================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.35;
}
.orb-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -30px); } }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.hero-container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 30px;
  background: var(--glass); border: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--warning); }
.hero-title { font-size: clamp(32px, 5vw, 56px); margin-bottom: 20px; line-height: 1.15; }
.gradient-text {
  background: var(--gradient-2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px; color: var(--text-muted);
  max-width: 550px; margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid var(--border);
}
.stat-item .stat-number {
  font-size: 28px; font-weight: 700; font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-2); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-item .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.hero-visual { position: relative; height: 450px; display: flex; align-items: center; justify-content: center; }
.server-stack { position: relative; z-index: 2; }
.server-unit {
  width: 280px; padding: 20px 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
  transition: var(--transition);
}
.server-unit:hover { transform: translateX(10px); border-color: var(--border-hover); }
.server-unit i { font-size: 24px; color: var(--primary); }
.leds { display: flex; gap: 6px; }
.leds span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 10px var(--success); animation: blink 1.5s infinite;
}
.leds span:nth-child(2) { animation-delay: 0.3s; }
.leds span:nth-child(3) { animation-delay: 0.6s; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.floating-card {
  position: absolute; padding: 10px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}
.floating-card i { color: var(--success); }
.fc-1 { top: 20px; left: 0; animation-delay: 0.5s; }
.fc-2 { top: 50%; right: -20px; animation-delay: 1s; }
.fc-2 i { color: var(--warning); }
.fc-3 { bottom: 30px; left: 20px; animation-delay: 1.5s; }
.fc-3 i { color: var(--primary); }

/* ==================== SECTIONS ==================== */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.section-title { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.section-desc { color: var(--text-muted); font-size: 16px; }

/* ==================== DOMAIN SEARCH ==================== */
.domain-search-box {
  max-width: 900px; margin: 0 auto 50px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(20px);
}
.search-input-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-darker); border-radius: var(--radius-sm); padding: 6px;
}
.search-input-wrap > i { color: var(--text-dim); font-size: 20px; padding-left: 14px; }
.search-input-wrap input {
  flex: 1; padding: 16px 8px; font-size: 16px; color: var(--text);
}
.search-input-wrap input::placeholder { color: var(--text-dim); }
.search-input-wrap select {
  padding: 16px 12px; font-size: 15px; font-weight: 600;
  color: var(--primary); cursor: pointer; border-radius: 8px;
  background: rgba(37, 99, 235, 0.1);
}
.search-input-wrap select option { background: var(--surface); color: var(--text); }
.search-input-wrap .btn { padding: 14px 28px; }
#domainResult { padding: 16px 8px 8px; }
.domain-result-card {
  padding: 16px 20px; border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), transparent);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  animation: slideIn 0.4s ease;
}
.domain-result-card.taken { background: linear-gradient(90deg, rgba(239, 68, 68, 0.1), transparent); border-color: rgba(239, 68, 68, 0.3); }
@keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.domain-result-card .dr-info h4 { font-size: 18px; margin-bottom: 4px; }
.domain-result-card .dr-info p { color: var(--text-muted); font-size: 13px; }
.domain-result-card .dr-price { font-size: 22px; font-weight: 700; color: var(--success); }

.popular-domains h4 { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 20px; font-weight: 500; }
.domain-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.domain-pill {
  padding: 12px 20px; border-radius: 30px;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center;
  transition: var(--transition); cursor: pointer;
}
.domain-pill:hover { border-color: var(--border-hover); background: var(--glass-hover); transform: translateY(-3px); }
.dp-ext { font-weight: 700; color: var(--text); }
.dp-price { font-size: 12px; color: var(--text-muted); }

/* ==================== PRICING PLANS ==================== */
.pricing-toggle {
  display: inline-flex; gap: 6px; padding: 6px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50px; margin-top: 24px;
}
.toggle-btn {
  padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: 14px; color: var(--text-muted);
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.toggle-btn.active { background: var(--gradient); color: white; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); }
.save-tag { background: rgba(245, 158, 11, 0.2); color: var(--warning); padding: 2px 8px; border-radius: 20px; font-size: 10px; font-weight: 700; }

.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.plan-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px;
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), var(--surface));
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.15);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: white;
  padding: 5px 16px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-name { font-size: 20px; margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.plan-price {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.plan-price .amount {
  font-size: 42px; font-weight: 700; font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-2); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.plan-price .period { color: var(--text-muted); font-size: 14px; }
.plan-price .savings { font-size: 12px; color: var(--success); font-weight: 600; margin-left: 4px; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex-grow: 1; }
.plan-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.plan-feature i { color: var(--success); font-size: 14px; }

/* ==================== FEATURES GRID ==================== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 24px; margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--gradient); color: white; transform: rotate(-8deg) scale(1.1); }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* ==================== CPANEL SECTION ==================== */
.cpanel-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
.cpanel-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 30px; }
.cpanel-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
.cpanel-list i {
  width: 24px; height: 24px; border-radius: 50%; background: var(--success);
  color: white; font-size: 11px; display: flex; align-items: center; justify-content: center;
}
.cpanel-visual { display: flex; justify-content: center; }
.cpanel-window {
  width: 100%; max-width: 500px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cpanel-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; background: var(--bg-darker);
  border-bottom: 1px solid var(--border);
}
.cpanel-topbar .dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.cpanel-title { margin-left: auto; font-size: 12px; color: var(--text-dim); }
.cpanel-body { display: flex; min-height: 280px; }
.cpanel-sidebar {
  width: 60px; background: var(--bg-darker);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 16px 0; gap: 8px;
}
.cpanel-item {
  width: 40px; height: 40px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; color: var(--text-dim); font-size: 16px;
  transition: var(--transition); cursor: pointer;
}
.cpanel-item:hover, .cpanel-item.active { background: var(--primary-light); color: var(--primary); }
.cpanel-main { flex: 1; padding: 20px; }
.cpanel-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.cp-card {
  padding: 18px 8px; background: var(--bg-darker);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-muted); transition: var(--transition);
  cursor: pointer; text-align: center;
}
.cp-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.cp-card i { font-size: 22px; color: var(--primary); }

/* ==================== EXTENSIONS TABLE ==================== */
.ext-table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
}
.ext-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.ext-table th, .ext-table td {
  padding: 18px 20px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
.ext-table th {
  background: var(--bg-darker); color: var(--text-muted);
  font-weight: 700; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ext-table tr:last-child td { border-bottom: none; }
.ext-table tr:hover td { background: rgba(37, 99, 235, 0.05); }
.ext-table .ext-name { font-weight: 700; color: var(--primary); font-size: 16px; }
.ext-table .ext-btn {
  padding: 6px 14px; border-radius: 6px;
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 600; transition: var(--transition);
}
.ext-table .ext-btn:hover { background: var(--primary); color: white; }

/* ==================== HOW IT WORKS ==================== */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; counter-reset: step;
}
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px;
  text-align: center; position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.step-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 48px; font-weight: 800; font-family: 'Space Grotesk', sans-serif;
  color: transparent; -webkit-text-stroke: 1px var(--border-hover);
  opacity: 0.5;
}
.step-icon {
  width: 70px; height: 70px; border-radius: 18px;
  background: var(--gradient); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 14px; }

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.stars { color: var(--warning); margin-bottom: 16px; font-size: 14px; display: flex; gap: 4px; }
.testimonial-card > p { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 16px;
}
.testimonial-author h4 { font-size: 15px; margin-bottom: 2px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ==================== FAQ ==================== */
.faq-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 0 30px rgba(37, 99, 235, 0.15); }
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 15px; transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s; color: var(--text-dim); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px; color: var(--text-muted); font-size: 14px;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ==================== PAYMENT ==================== */
.payment-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.payment-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: var(--transition); cursor: pointer;
}
.payment-card:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.pay-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: white; margin: 0 auto 16px;
}
.pay-icon.bkash { background: linear-gradient(135deg, #e2136e, #d91e63); }
.pay-icon.nagad { background: linear-gradient(135deg, #f7911e, #ec6607); }
.pay-icon.rocket { background: linear-gradient(135deg, #8c3494, #6f2a77); }
.pay-icon.bank { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.payment-card h4 { font-size: 16px; margin-bottom: 4px; }
.payment-card p { font-size: 12px; color: var(--text-muted); }

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 20px; text-align: center;
  transition: var(--transition); cursor: pointer;
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.contact-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: white; margin: 0 auto 16px;
}
.contact-icon.telegram { background: linear-gradient(135deg, #229ED9, #1c7eb0); }
.contact-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-icon.email { background: linear-gradient(135deg, #ea4335, #c5221f); }
.contact-icon.support { background: var(--gradient); }
.contact-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-card p { font-size: 13px; color: var(--text-muted); }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--bg-darker); border-top: 1px solid var(--border);
  padding: 60px 0 30px; margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; max-width: 350px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.footer-col h4 { font-size: 15px; margin-bottom: 18px; }
.footer-col a {
  display: block; color: var(--text-muted); font-size: 14px;
  padding: 6px 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); padding-left: 6px; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-muted);
}
.footer-bottom strong { color: var(--primary); }

/* ==================== MODALS ==================== */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.modal.active { display: flex; }
.modal-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); width: 100%; max-width: 480px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { font-size: 17px; display: flex; align-items: center; gap: 10px; }
.modal-header h3 i { color: var(--primary); }
.modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--glass); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.modal-close:hover { background: var(--danger); color: white; }
.modal-body { padding: 24px; }
.modal-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; gap: 12px;
}
.modal-footer .btn { flex: 1; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--bg-darker); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 14px;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.form-group select option { background: var(--surface); }
.form-note {
  font-size: 12px; color: var(--warning);
  background: rgba(245, 158, 11, 0.1); padding: 12px;
  border-radius: 8px; margin-top: 8px;
}
.form-switch { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }
.form-switch a { color: var(--primary); font-weight: 600; }

.order-summary {
  background: var(--bg-darker); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; margin-bottom: 20px;
}
.order-summary .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.order-summary .row.total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; font-weight: 700; font-size: 16px; color: var(--primary); }

/* ==================== PIN PAD ==================== */
.pin-display { display: flex; justify-content: center; gap: 16px; margin: 24px 0; }
.pin-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-darker); border: 2px solid var(--border);
  transition: var(--transition);
}
.pin-dot.filled { background: var(--primary); border-color: var(--primary); transform: scale(1.15); box-shadow: 0 0 20px var(--primary); }
.pin-pad {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; max-width: 280px; margin: 0 auto;
}
.pin-btn {
  aspect-ratio: 1; border-radius: 50%;
  background: var(--bg-darker); border: 1px solid var(--border);
  font-size: 20px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.pin-btn:hover { background: var(--surface-2); }
.pin-btn:active { transform: scale(0.9); }
.pin-btn.primary { background: var(--primary); border-color: var(--primary); color: white; }
.pin-btn.danger { background: rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.3); color: var(--danger); }

/* ==================== ADMIN PANEL ==================== */
.admin-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--bg-dark); overflow-y: auto;
  display: none;
}
.admin-overlay.active { display: block; }
.admin-header {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 10;
}
.admin-header h2 { font-size: 18px; display: flex; align-items: center; gap: 10px; color: var(--danger); }
.admin-body { max-width: 1200px; margin: 0 auto; padding: 24px; }
.admin-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 24px; }
.admin-tabs::-webkit-scrollbar { display: none; }
.admin-tab {
  padding: 10px 20px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  font-weight: 600; font-size: 13px; color: var(--text-muted);
  white-space: nowrap; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.admin-tab.active { background: var(--primary); color: white; border-color: var(--primary); }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.admin-stat {
  background: var(--surface); border: 1px solid var(--border);
  padding: 20px; border-radius: var(--radius);
}
.admin-stat .as-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 12px;
}
.as-icon.blue { background: var(--primary-light); color: var(--primary); }
.as-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.as-icon.gold { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.as-icon.red { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.admin-stat .as-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.admin-stat .as-value { font-size: 26px; font-weight: 700; margin-top: 4px; font-family: 'Space Grotesk', sans-serif; }
.admin-table-wrap { background: var(--surface); border-radius: var(--radius); overflow-x: auto; border: 1px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 700px; }
.admin-table th, .admin-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table th { background: var(--bg-darker); font-weight: 700; font-size: 11px; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.5px; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(37, 99, 235, 0.05); }
.admin-settings-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.admin-settings-card h3 { font-size: 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.admin-settings-card h3 i { color: var(--primary); }
.admin-input {
  width: 100%; padding: 12px 16px; background: var(--bg-darker);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); margin-bottom: 12px;
}
.status-badge {
  padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.status-badge.pending { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.status-badge.completed { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.status-badge.cancelled { background: rgba(239, 68, 68, 0.15); color: var(--danger); }

/* ==================== TOAST ==================== */
.toast {
  position: fixed; top: 24px; left: 50%;
  transform: translateX(-50%) translateY(-150%);
  background: var(--surface); color: var(--text);
  padding: 14px 24px; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); z-index: 9999;
  border-left: 4px solid var(--success);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-left-color: var(--success); }
.toast.success i { color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.error i { color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast.warning i { color: var(--warning); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 350px; margin-top: 40px; }
  .cpanel-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(6, 9, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 20px; border-bottom: 1px solid var(--border);
    transform: translateY(-120%); transition: transform 0.4s;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-link { padding: 14px 20px; font-size: 15px; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .section { padding: 70px 0; }
  .hero { padding: 100px 0 60px; }
  .search-input-wrap { flex-wrap: wrap; }
  .search-input-wrap input { width: 100%; padding: 14px; }
  .search-input-wrap select { flex: 1; }
  .search-input-wrap .btn { flex: 1; }
  .hero-stats { gap: 24px; }
  .stat-item .stat-number { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto 20px; }
  .social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-visual { display: none; }
  .cpanel-sidebar { display: none; }
  .cpanel-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-body { padding: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .modal { padding: 10px; align-items: flex-start; padding-top: 40px; }
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .plans-grid { grid-template-columns: 1fr; }
  .pricing-toggle { flex-direction: column; width: 100%; }
}