:root {
    --primary: #2563eb;
    --accent: #38bdf8;
    --dark: #020617;
    --surface: #0f172a;
    --text: #f8fafc;
    --muted: #94a3b8;
    --grad: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.6; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.navbar { position: fixed; top:0; width:100%; z-index:1000; padding:15px 0; background:rgba(2,6,23,0.85); backdrop-filter:blur(12px); border-bottom:1px solid rgba(255,255,255,0.05); }
.nav-flex { display:flex; justify-content:space-between; align-items:center; }
.brand { display:flex; align-items:center; }
.brand-logo { background:var(--grad); padding:8px 12px; border-radius:10px; font-weight:900; color:white; margin-right:10px; font-size: 1.2rem; }
.nav-cta { background:var(--primary); color:white; text-decoration:none; padding:8px 18px; border-radius:8px; font-weight:700; font-size:0.85rem; transition: 0.3s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4); }

/* Hero */
.hero { padding: 180px 0 80px; text-align: center; }
.hero-badge { color: var(--accent); font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-family: 'Outfit', sans-serif; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--muted); margin: 0 auto 35px; max-width: 600px; font-size: 1.15rem; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }
.btn-primary { background: var(--grad); color: white; padding: 18px 35px; border-radius: 12px; text-decoration: none; font-weight: 700; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4); }
.btn-secondary { border: 1px solid #334155; color: white; padding: 18px 35px; border-radius: 12px; text-decoration: none; font-weight: 600; }

/* Pricing Grid */
.pricing { padding: 60px 0; background: radial-gradient(circle at center, #0f172a 0%, #020617 100%); }
.pricing-intro { text-align: center; margin-bottom: 50px; }
.pricing-intro h2 { font-size: 2.8rem; font-family: 'Outfit', sans-serif; margin-bottom: 10px; }
.pricing-intro p { color: var(--muted); font-size: 1.1rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 25px; }
.p-card { background: var(--surface); padding: 35px; border-radius: 30px; border: 1px solid #1e293b; display: flex; flex-direction: column; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; }
.p-card:hover { transform: translateY(-12px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.p-head { color: var(--accent); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.p-head span { display: block; color: white; font-size: 1.5rem; margin-top: 5px; font-weight: 800; }
.p-price { font-size: 2.8rem; font-weight: 900; margin: 20px 0; font-family: 'Outfit', sans-serif; color: white; }
.old-price { font-size: 1.2rem; text-decoration: line-through; opacity: 0.4; margin-right: 5px; }
.p-list { list-style: none; color: var(--muted); margin-bottom: 30px; font-size: 0.9rem; flex-grow: 1; }
.p-list li { margin-bottom: 12px; display: flex; align-items: center; }
.p-list i { color: var(--accent); margin-right: 12px; font-size: 1rem; }

.p-btn { display: block; text-align: center; background: #1e293b; color: white; padding: 16px; border-radius: 14px; text-decoration: none; font-weight: 700; transition: 0.2s; }
.p-btn:hover { background: var(--primary); }
.featured { border: 2px solid var(--primary); transform: scale(1.05); z-index: 5; }
.p-badge { position: absolute; top: -16px; right: 25px; background: var(--primary); color: white; padding: 5px 18px; border-radius: 20px; font-size: 0.75rem; font-weight: 900; }
.featured .p-btn { background: var(--grad); }

/* Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(15px); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.modal-box { background: var(--surface); padding: 45px; border-radius: 35px; text-align: center; max-width: 400px; width: 92%; border: 1px solid rgba(255,255,255,0.1); }
.modal-icon-wrapper { 
    background: var(--grad); width: 60px; height: 60px; border-radius: 15px; 
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    font-size: 1.8rem; color: white; box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
.countdown-circle { width: 90px; height: 90px; border: 4px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 25px auto; font-size: 2.5rem; font-weight: 900; color: var(--accent); }
.modal-close-btn { background: transparent; border: 1px solid #1e293b; color: var(--muted); padding: 12px 25px; border-radius: 12px; cursor: pointer; transition: 0.3s; }
.modal-close-btn:hover { color: white; border-color: white; }

/* Footer */
.footer { padding: 60px 0; border-top: 1px solid #1e293b; color: var(--muted); font-size: 0.85rem; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; }
.legal a { color: var(--muted); text-decoration: none; margin-left: 25px; transition: 0.3s; }
.legal a:hover { color: var(--accent); }

@media (max-width: 1024px) {
    .featured { transform: scale(1); }
    .hero-btns { flex-direction: column; padding: 0 40px; }
    .footer-wrap { flex-direction: column; gap: 20px; text-align: center; }
}