/* ================= GLOBAL ================= */
:root {
    --bg-dark: #09090b;
    --primary: #6366f1;
    --accent: #8b5cf6;
    --glass: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text-mute: #94a3b8;
    --font-bn: 'Hind Siliguri', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-bn);
    margin: 0; padding: 0;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* OPTIMIZED BACKGROUND (No Heavy JS) */
.bg-gradient {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1;
    background: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #09090b 70%);
}

/* ================= HERO ================= */
.hero-sec { padding: 140px 0 60px; }
.text-center { text-align: center; }

.badge-glow {
    display: inline-block; padding: 8px 20px; border-radius: 50px;
    background: rgba(99, 102, 241, 0.15); color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.3); margin-bottom: 20px;
    font-weight: 600; font-size: 0.9rem;
}

.hero-head { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 700; }
.text-gradient {
    background: linear-gradient(to right, #818cf8, #c084fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { color: var(--text-mute); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ================= CONTROLS ================= */
.pricing-controls {
    display: flex; justify-content: center; align-items: center; gap: 30px;
    max-width: 550px; margin: 0 auto 60px; padding: 15px; border-radius: 50px;
    background: var(--glass); border: 1px solid var(--border);
}
.toggle-wrap { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.divider { width: 1px; height: 25px; background: var(--border); }
.save-badge { background: #22c55e; color: black; font-size: 0.7rem; padding: 2px 6px; border-radius: 4px; margin-left: 5px; }

/* Optimized Switch */
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(255,255,255,0.1); transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(20px); }

/* ================= PRICING GRID (No Lag) ================= */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 100px; }

.price-card {
    background: rgba(30, 41, 59, 0.4); border: 1px solid var(--border);
    border-radius: 20px; padding: 40px 30px; position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease; /* Smooth CSS Hover */
}

/* Hover Effect (Performance Optimized) */
.price-card:hover { transform: translateY(-10px); border-color: var(--primary); background: rgba(30, 41, 59, 0.6); }

.popular { border: 1px solid var(--primary); background: rgba(30, 41, 59, 0.6); }
.pop-ribbon { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--primary); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }

.icon-circle { width: 60px; height: 60px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; color: #a78bfa; }

.price-block h2 { font-size: 2.5rem; margin: 0; font-weight: 700; color: white; display: inline-block; }
.price-block span { color: var(--text-mute); }

.feat-list { list-style: none; padding: 0; margin: 30px 0; text-align: left; }
.feat-list li { margin-bottom: 12px; color: var(--text-mute); font-size: 0.95rem; }
.feat-list i { color: #22c55e; margin-right: 8px; }

.btn-main { display: block; text-align: center; padding: 14px; background: white; color: black; border-radius: 10px; font-weight: 700; text-decoration: none; transition: 0.3s; }
.btn-main:hover { background: #e2e8f0; transform: scale(1.02); }

/* ================= NEW SECTIONS ================= */
.sec-head { text-align: center; margin-bottom: 50px; }
.sec-head h2 { font-size: 2.5rem; margin-bottom: 10px; }

/* 1. Domain */
.domain-sec { margin-bottom: 100px; }
.domain-box { background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.1)); border: 1px solid var(--border); padding: 50px; border-radius: 20px; text-align: center; }
.domain-form { max-width: 600px; margin: 30px auto; }
.input-group { display: flex; gap: 10px; }
.input-group input { flex: 1; padding: 15px; border-radius: 10px; border: none; outline: none; }
.input-group button { padding: 15px 30px; background: var(--primary); color: white; border: none; border-radius: 10px; cursor: pointer; font-weight: bold; }
.domain-exts { display: flex; justify-content: center; gap: 20px; color: var(--text-mute); flex-wrap: wrap; }
.domain-exts span { background: rgba(255,255,255,0.05); padding: 5px 15px; border-radius: 20px; }

/* 2. Specs */
.specs-sec { margin-bottom: 100px; }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.spec-card { background: var(--glass); padding: 30px; border-radius: 15px; text-align: center; border: 1px solid var(--border); transition: 0.3s; }
.spec-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.spec-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }

/* 3. Reviews */
.review-sec { margin-bottom: 100px; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: var(--glass); padding: 30px; border-radius: 15px; border: 1px solid var(--border); }
.stars { color: #fbbf24; margin-bottom: 15px; }
.review-card p { font-style: italic; color: var(--text-mute); margin-bottom: 20px; }
.user-info h5 { margin: 0; color: white; }
.user-info span { font-size: 0.8rem; color: var(--text-mute); }

/* 4. FAQ */
.faq-sec { margin-bottom: 100px; }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 20px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-item[open] summary { color: var(--primary); }
.faq-body { padding: 0 20px 20px; color: var(--text-mute); line-height: 1.6; }

/* Guarantee */
.guarantee { margin-bottom: 80px; }
.g-box { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 40px; border: 1px solid #22c55e; border-radius: 20px; background: rgba(34, 197, 94, 0.05); }
.g-box i { font-size: 3rem; color: #22c55e; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 768px) {
    .pricing-controls { flex-direction: column; gap: 15px; }
    .divider { display: none; }
    .hero-head { font-size: 2.5rem; }
    .input-group { flex-direction: column; }
    .g-box { flex-direction: column; text-align: center; }
}