/* --- Modern Theme Variables --- */
:root {
    --bg: #020617;
    --bg-alt: #0f172a;
    --surface: rgba(30, 41, 59, 0.7);
    --text: #f1f5f9;
    --text-dim: #94a3b8;
    --accent: #38bdf8;
    --gradient: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    --border: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] {
    --bg: #f8fafc;
    --bg-alt: #ffffff;
    --surface: rgba(255, 255, 255, 0.8);
    --text: #0f172a;
    --text-dim: #475569;
    --accent: #0284c7;
    --border: rgba(0, 0, 0, 0.1);
}

/* --- Base --- */
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    transition: background 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5 { color: var(--text); margin-top: 0; }
.outfit-bold { font-family: 'Outfit', sans-serif; font-weight: 800; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.accent-text { color: var(--accent); letter-spacing: 2px; font-size: 0.8rem; }

/* --- Navbar --- */
.glass-nav {
    background: var(--surface) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    box-shadow: none !important;
}
.nav-cta {
    background: var(--accent);
    color: white !important;
    border-radius: 10px;
    height: 44px !important;
    line-height: 44px !important;
    margin-top: 10px;
    padding: 0 20px !important;
    font-weight: 600;
}

/* --- Hero --- */
.hero-modern {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}
.glow-sphere {
    position: absolute;
    top: -150px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
}
.hero-modern h1 { font-size: 5rem; line-height: 1; }
.hero-subtext { font-size: 1.2rem; color: var(--text-dim); max-width: 650px; margin: 30px auto; }

/* --- Cards --- */
.glass-card, .marketing-card, .blog-card {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    transition: 0.3s ease !important;
    overflow: hidden;
}
.glass-card:hover, .blog-card:hover { transform: translateY(-10px); }

.blog-card .card-image img { height: 200px; object-fit: cover; }
.blog-card .date { color: var(--accent); font-size: 0.8rem; font-weight: 600; }

/* --- UI Components --- */
.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
}
.btn-premium {
    background: var(--gradient);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    padding: 15px 35px;
    border-radius: 12px;
    margin-left: 10px;
}

/* --- SMM Lists --- */
.check-list { list-style: none; padding: 0; }
.check-list li { margin: 10px 0; display: flex; align-items: center; color: var(--text-dim); }
.check-list i { color: var(--accent); margin-right: 10px; }

/* --- Footer --- */
.custom-footer { background: var(--bg-alt) !important; padding-top: 80px; border-top: 1px solid var(--border); }
.footer-text { color: var(--text-dim); font-size: 1.1rem; }
.footer-links a { color: var(--text-dim); transition: 0.3s; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.social-links a i { font-size: 2rem; color: var(--text); margin-right: 15px; opacity: 0.7; transition: 0.3s; }
.social-links a i:hover { opacity: 1; color: var(--accent); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-modern h1 { font-size: 3rem; }
}
/* --- Tech Grid --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.tech-icon-box {
    background: var(--surface);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.tech-icon-box img { height: 40px; margin-bottom: 10px; display: block; margin-inline: auto; }
.tech-icon-box span { font-weight: 600; font-size: 0.9rem; }
.tech-icon-box:hover { transform: translateY(-5px); border-color: var(--accent); }

/* --- Forms --- */
.form-wrap { padding: 40px; }
.contact-details { padding-right: 30px; }
.contact-list { list-style: none; padding: 0; margin-top: 30px; }
.contact-list li { display: flex; align-items: center; margin-bottom: 15px; color: var(--accent); }
.contact-list i { margin-right: 15px; }

/* Standard Inputs Override */
.input-field input, .input-field textarea { color: var(--text) !important; border-bottom: 1px solid var(--accent) !important; }
.input-field label { color: var(--text) !important; opacity: 0.6; }

/* Marketing Cards */
.marketing-card-new {
    background: var(--surface) !important;
    border-radius: 20px !important;
    padding: 20px;
    border: 1px solid transparent;
}
.marketing-card-new:hover { border-color: var(--accent); }

/* Reusable Components from previous response... */
.glass-nav { background: var(--surface) !important; backdrop-filter: blur(10px); }
.btn-premium { background: var(--gradient); border: none; padding: 15px 30px; border-radius: 12px; color: white; cursor: pointer; font-weight: bold; }