/* ──────────────────────────────────
   WIFIQUE — ISP Product Website
   ────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --surface: #1a1a2e;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --text: #f1f1f5;
    --text-muted: #8b8ba3;
    --text-dim: #5a5a72;
    --primary: #6c5ce7;
    --primary-light: #a29bfe;
    --accent: #00cec9;
    --gradient: linear-gradient(135deg, #6c5ce7, #00cec9);
    --gradient-card: linear-gradient(135deg, rgba(108,92,231,0.08), rgba(0,206,201,0.04));
    --radius: 16px;
    --radius-sm: 10px;
}

[data-theme="light"] {
    --bg: #f8f9fc;
    --bg-card: #ffffff;
    --surface: #f0f2f8;
    --border: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.15);
    --text: #1a1a2e;
    --text-muted: #555570;
    --text-dim: #8888a0;
    --gradient-card: linear-gradient(135deg, rgba(108,92,231,0.06), rgba(0,206,201,0.03));
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:120px; }
body { font-family:'Inter',-apple-system,sans-serif; background:var(--bg); color:var(--text); line-height:1.7; }
a { text-decoration:none; color:inherit; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.text-center { text-align:center; }

/* ── Buttons ── */
.btn { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; border-radius:var(--radius-sm); font-weight:700; font-size:14px; cursor:pointer; border:none; transition:.25s; letter-spacing:0.5px; text-transform:uppercase; font-family:inherit; text-decoration:none; }
.btn-primary { background:var(--gradient); color:#fff; box-shadow:0 4px 20px rgba(108,92,231,0.3); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(108,92,231,0.4); }

/* ── Top Bar ── */
.topbar { background:var(--gradient); color:#fff; font-size:13px; font-weight:600; position:fixed; top:0; width:100%; z-index:1001; }
.topbar-inner { display:flex; justify-content:space-between; align-items:center; height:40px; }
.topbar-left, .topbar-right { display:flex; align-items:center; gap:4px; }
.topbar-tab { color:rgba(255,255,255,0.75); padding:8px 16px; font-size:12px; letter-spacing:0.5px; transition:.2s; }
.topbar-tab:hover, .topbar-tab.active { color:#fff; }
.topbar-tab.active { border-bottom:2px solid #fff; }
.topbar-right a { color:rgba(255,255,255,0.85); padding:0 12px; font-size:12px; transition:.2s; display:flex; align-items:center; gap:5px; }
.topbar-right a:hover { color:#fff; }

/* ── Navbar ── */
.navbar { position:fixed; top:40px; left:0; right:0; height:68px; background:rgba(10,10,15,0.92); backdrop-filter:blur(20px); border-bottom:1px solid var(--border); z-index:1000; display:flex; align-items:center; }
.navbar-inner { display:flex; align-items:center; justify-content:space-between; width:100%; }
.nav-brand { display:flex; align-items:center; gap:10px; }
.nav-logo { width:36px; height:36px; background:var(--gradient); border-radius:10px; display:flex; align-items:center; justify-content:center; font-weight:900; font-size:15px; color:#fff; }
.nav-logo-img { height:100%; max-height:60px; max-width:200px; width:auto; object-fit:contain; display:block; padding:6px 0; }
.nav-name { font-weight:800; font-size:18px; background:var(--gradient); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.nav-links { display:flex; align-items:center; gap:28px; list-style:none; }
.nav-links a { font-size:14px; font-weight:500; color:var(--text-muted); transition:.2s; }
.nav-links a:hover { color:#fff; }
.nav-wa { text-align:right; display:flex; flex-direction:column; align-items:flex-end; }
.nav-wa-label { font-size:11px; color:var(--text-dim); font-weight:500; }
.nav-wa-number { font-size:16px; font-weight:700; color:var(--accent); display:flex; align-items:center; gap:6px; }
.mobile-toggle { display:none; background:none; border:none; color:#fff; font-size:24px; cursor:pointer; }

/* ──────────────────────────────────
   HERO SLIDER — PROPER LAYOUT
   The hero uses flex-column so content
   flows: [slide text] → [dots] → [stats]
   without overlap.
   ────────────────────────────────── */
.hero-slider {
    min-height:100vh;
    position:relative;
    display:flex;
    flex-direction:column;
    padding-top:108px; /* navbar+topbar height */
    overflow:hidden;
}

/* Slides occupy the middle zone */
.slider-track {
    flex:1;
    position:relative;
}
.slide {
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .8s ease, visibility .8s;
    z-index:0;
    display:flex;
    align-items:center;
}
.slide.active { opacity:1; visibility:visible; z-index:1; }
.slide-img {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    z-index:0;
    opacity:0.4;
}
.slide-bg {
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse at 30% 40%, var(--gf), transparent 60%),
               radial-gradient(ellipse at 70% 60%, var(--gt), transparent 50%);
    opacity:0.35;
    animation:pulseGlow 6s ease-in-out infinite alternate;
}
@keyframes pulseGlow { from{opacity:.25;transform:scale(1)} to{opacity:.4;transform:scale(1.05)} }

.slide-content { position:relative; z-index:2; width:100%; }
.slide-text { max-width:680px; padding:40px 0 40px; }
.slide-text h1 {
    font-size:clamp(28px,3.5vw,48px);
    font-weight:900;
    line-height:1.15;
    letter-spacing:-1px;
    text-transform:uppercase;
    margin-bottom:16px;
    color:#fff;
    text-shadow:0 2px 20px rgba(0,0,0,0.15), 0 4px 40px rgba(108,92,231,0.2);
}
.slide-text p {
    font-size:17px;
    color:var(--text-muted);
    max-width:520px;
    margin-bottom:28px;
    line-height:1.6;
}
.slide-text .btn { font-size:14px; padding:16px 36px; }

/* Slider Dots — positioned BETWEEN slides and stats */
.slider-dots {
    display:flex;
    justify-content:center;
    gap:10px;
    padding:16px 0;
    position:relative;
    z-index:10;
}
.dot {
    width:10px; height:10px;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    border:2px solid rgba(255,255,255,0.3);
    cursor:pointer;
    transition:.3s;
    padding:0;
}
.dot.active {
    background:var(--accent);
    border-color:var(--accent);
    transform:scale(1.3);
    box-shadow:0 0 12px rgba(0,206,201,0.5);
}

/* Slider Arrows — center of the slide area */
.slider-arrow {
    position:absolute;
    top:calc(108px + (100vh - 108px - 120px) / 2);
    z-index:10;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    width:44px; height:44px;
    border-radius:50%;
    cursor:pointer;
    font-size:16px;
    display:flex; align-items:center; justify-content:center;
    transition:.3s;
}
.slider-arrow:hover { background:rgba(108,92,231,0.4); border-color:rgba(108,92,231,0.5); }
.slider-prev { left:20px; }
.slider-next { right:20px; }

/* Hero Stats Bar — bottom of hero, in normal flow */
.hero-stats-bar {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    padding:20px 24px 40px;
    max-width:1200px;
    margin:0 auto;
    position:relative;
    z-index:5;
}
.hero-stat {
    display:flex;
    align-items:center;
    gap:14px;
    background:rgba(255,255,255,0.04);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    padding:18px 20px;
    backdrop-filter:blur(8px);
    transition:.3s;
}
.hero-stat:hover { border-color:var(--border-hover); background:rgba(255,255,255,0.06); }
.hero-stat > i { font-size:24px; color:var(--accent); flex-shrink:0; }
.hero-stat h3 { font-size:20px; font-weight:800; line-height:1.1; }
.hero-stat p { font-size:11px; color:var(--text-dim); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }
.gradient-text { background:var(--gradient); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* ── Plan Filter Tabs ── */
.plan-tabs { display:flex; justify-content:center; gap:8px; margin-top:24px; }
.plan-tab { padding:10px 24px; border-radius:100px; border:1px solid var(--border); background:transparent; color:var(--text-muted); font-family:inherit; font-size:13px; font-weight:600; cursor:pointer; transition:.25s; display:flex; align-items:center; gap:6px; }
.plan-tab:hover { border-color:var(--border-hover); color:var(--text); }
.plan-tab.active { background:var(--gradient); color:#fff; border-color:transparent; }

/* Plan Type Tag */
.plan-type-tag { position:absolute; top:12px; left:12px; padding:4px 12px; background:rgba(0,0,0,0.55); backdrop-filter:blur(6px); border-radius:100px; font-size:10px; font-weight:700; color:rgba(255,255,255,0.85); text-transform:uppercase; letter-spacing:1px; z-index:2; }

/* ── Sections ── */
section { padding:100px 0; }
.section-label { display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:var(--accent); text-transform:uppercase; letter-spacing:2px; margin-bottom:12px; }
.section-title { font-size:clamp(28px,4vw,42px); font-weight:800; letter-spacing:-1px; margin-bottom:12px; line-height:1.2; }
.section-desc { font-size:15px; color:var(--text-muted); max-width:520px; margin:0 auto; }
.section-header { margin-bottom:48px; }

/* ── Plans ── */
.section-plans { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.plans-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }

/* Plan Card — flexbox column for equal height */
.plan-card {
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    transition:.3s;
    position:relative;
    display:flex;
    flex-direction:column;
}
.plan-card:hover { border-color:var(--border-hover); transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,0.4); }
.plan-card.popular { border-color:rgba(108,92,231,0.4); }
.plan-badge { position:absolute; top:12px; right:12px; padding:4px 14px; background:var(--gradient); color:#fff; border-radius:100px; font-size:11px; font-weight:700; z-index:3; letter-spacing:0.5px; }
.plan-img { height:160px; background:linear-gradient(135deg, rgba(108,92,231,0.15), rgba(0,206,201,0.1)); display:flex; align-items:flex-end; justify-content:flex-start; padding:20px; position:relative; overflow:hidden; flex-shrink:0; }
.plan-img::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 20%, rgba(0,206,201,0.2), transparent 60%); }
.plan-speed-badge { position:relative; z-index:2; background:rgba(0,0,0,0.5); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:8px 16px; display:flex; flex-direction:column; line-height:1; }
.plan-speed-badge small { font-size:10px; color:var(--accent); font-weight:600; letter-spacing:1px; text-transform:uppercase; }
.plan-speed-badge strong { font-size:32px; font-weight:900; color:#fff; display:flex; align-items:baseline; gap:2px; }
.plan-speed-badge strong span { font-size:14px; font-weight:600; color:var(--text-muted); }

/* Plan Body — flex-grow pushes button to bottom */
.plan-body {
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}
.plan-name { font-size:18px; font-weight:700; margin-bottom:8px; }
.plan-price { margin-bottom:12px; }
.plan-price small { font-size:14px; color:var(--accent); font-weight:600; margin-right:2px; }
.plan-price strong { font-size:36px; font-weight:900; color:var(--accent); }
.plan-price span { font-size:13px; color:var(--text-dim); display:block; margin-top:2px; }
.plan-divider { height:1px; background:var(--border); margin-bottom:16px; }
.plan-features { list-style:none; margin-bottom:24px; flex:1; }
.plan-features li { padding:5px 0; font-size:13px; color:var(--text-muted); display:flex; align-items:center; gap:8px; }
.plan-features li i { color:var(--accent); font-size:13px; flex-shrink:0; }
.plan-btn { display:block; width:100%; text-align:center; padding:14px; background:var(--gradient); color:#fff; border-radius:var(--radius-sm); font-weight:700; font-size:13px; letter-spacing:1px; text-transform:uppercase; transition:.25s; border:none; cursor:pointer; margin-top:auto; }
.plan-btn:hover { opacity:.9; transform:translateY(-1px); }

/* ── Features ── */
.features-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:24px; }
.feature-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:32px; transition:.3s; }
.feature-card:hover { border-color:var(--border-hover); transform:translateY(-2px); }
.feature-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:18px; }
.feature-icon.purple { background:rgba(108,92,231,0.15); color:var(--primary-light); }
.feature-icon.teal { background:rgba(0,206,201,0.15); color:var(--accent); }
.feature-icon.blue { background:rgba(9,132,227,0.15); color:#74b9ff; }
.feature-icon.pink { background:rgba(232,67,147,0.15); color:#fd79a8; }
.feature-icon.orange { background:rgba(225,112,85,0.15); color:#fab1a0; }
.feature-icon.green { background:rgba(0,184,148,0.15); color:#55efc4; }
.feature-card h3 { font-size:17px; font-weight:700; margin-bottom:8px; }
.feature-card p { font-size:14px; color:var(--text-muted); line-height:1.6; }

/* ── Products ── */
.section-products { background:var(--bg); }
.products-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.product-card {
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    transition:.3s;
    display:flex;
    flex-direction:column;
}
.product-card:hover { border-color:var(--border-hover); transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,0.3); }
.product-img {
    height:180px;
    overflow:hidden;
    background:linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,206,201,0.05));
}
.product-img img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}
.product-card:hover .product-img img { transform:scale(1.05); }
.product-icon {
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:48px;
    background:linear-gradient(135deg, rgba(108,92,231,0.08), rgba(0,206,201,0.05));
}
.product-icon.purple { color:var(--primary-light); }
.product-icon.teal { color:var(--accent); }
.product-icon.blue { color:#74b9ff; }
.product-icon.pink { color:#fd79a8; }
.product-icon.orange { color:#fab1a0; }
.product-icon.green { color:#55efc4; }
.product-body { padding:24px; display:flex; flex-direction:column; flex:1; }
.product-body h3 { font-size:18px; font-weight:700; margin-bottom:8px; }
.product-price {
    display:inline-block;
    padding:4px 12px;
    background:linear-gradient(135deg, rgba(108,92,231,0.15), rgba(0,206,201,0.15));
    color:var(--accent);
    border-radius:100px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
    width:fit-content;
}
.product-body p { font-size:14px; color:var(--text-muted); line-height:1.6; margin-bottom:20px; flex:1; }
.product-btn {
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    font-weight:600;
    color:var(--accent);
    transition:.2s;
    margin-top:auto;
}
.product-btn:hover { color:var(--primary-light); gap:10px; }
.product-btn i { transition:.2s; }

/* ── Coverage CTA Banner ── */
.section-coverage-banner { position:relative; padding:80px 0; text-align:center; overflow:hidden; background:var(--surface); }
.section-coverage-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 50%, rgba(108,92,231,0.2), transparent 70%); }
.coverage-inner { position:relative; z-index:2; }
.coverage-inner p { font-size:15px; color:var(--text-muted); font-style:italic; margin-bottom:8px; }
.coverage-inner h2 { font-size:clamp(24px,3.5vw,36px); font-weight:800; margin-bottom:28px; max-width:600px; margin-left:auto; margin-right:auto; line-height:1.3; }

/* ── Testimonials ── */
.section-testimonials { background:var(--bg); }
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:24px; }
.testimonial-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:32px; transition:.3s; display:flex; flex-direction:column; }
.testimonial-card:hover { border-color:var(--border-hover); }
.testimonial-stars { color:#f9ca24; font-size:14px; margin-bottom:16px; letter-spacing:2px; }
.testimonial-card blockquote { font-size:15px; color:var(--text-muted); line-height:1.7; font-style:italic; margin-bottom:20px; flex:1; }
.testimonial-author { display:flex; align-items:center; gap:12px; margin-top:auto; }
.testimonial-avatar { width:42px; height:42px; border-radius:50%; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px; color:#fff; flex-shrink:0; }
.testimonial-info h4 { font-size:14px; font-weight:600; }
.testimonial-info p { font-size:12px; color:var(--text-dim); }

/* ── FAQ ── */
.section-faq { background:var(--surface); border-top:1px solid var(--border); }
.faq-list { max-width:720px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { width:100%; background:none; border:none; color:var(--text); font-family:inherit; font-size:16px; font-weight:600; text-align:left; padding:20px 40px 20px 0; cursor:pointer; position:relative; transition:.2s; }
.faq-q::after { content:'+'; position:absolute; right:0; top:50%; transform:translateY(-50%); font-size:22px; color:var(--text-dim); font-weight:400; transition:.3s; }
.faq-item.open .faq-q::after { content:'−'; color:var(--accent); }
.faq-q:hover { color:var(--primary-light); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height:200px; padding-bottom:20px; }
.faq-a p { font-size:14px; color:var(--text-muted); line-height:1.7; }

/* ── Footer ── */
.footer { background:linear-gradient(135deg, #1a1035 0%, #0d1b2a 100%); border-top:3px solid; border-image:var(--gradient) 1; padding:60px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand p { color:var(--text-muted); font-size:14px; max-width:280px; line-height:1.7; }
.footer-col h4 { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--accent); margin-bottom:16px; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:10px; }
.footer-col a { font-size:14px; color:var(--text-muted); transition:.2s; }
.footer-col a:hover { color:#fff; }
.footer-address { font-size:14px; color:var(--text-muted); line-height:1.7; }
.footer-bottom { border-top:1px solid var(--border); padding-top:24px; display:flex; justify-content:space-between; align-items:center; }
.footer-bottom p { font-size:13px; color:var(--text-dim); }
.footer-socials { display:flex; gap:12px; }
.footer-socials a { width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,0.05); border:1px solid var(--border); color:var(--text-muted); display:flex; align-items:center; justify-content:center; font-size:16px; transition:.2s; }
.footer-socials a:hover { border-color:var(--primary); color:var(--primary-light); background:rgba(108,92,231,0.1); }

/* ── WhatsApp Float ── */
.wa-float { position:fixed; bottom:24px; right:24px; width:56px; height:56px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:28px; color:#fff; z-index:999; box-shadow:0 4px 20px rgba(37,211,102,0.4); transition:.3s; }
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,0.5); }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.slide-text h1 { animation:fadeInUp .8s ease both; }
.slide-text p { animation:fadeInUp .8s ease .15s both; }
.slide-text .btn { animation:fadeInUp .8s ease .3s both; }
.hero-stats-bar { animation:fadeInUp .8s ease .4s both; }

/* ──────────────────────────────────
   LIGHT THEME
   ────────────────────────────────── */
body[data-theme="light"] {
    --bg: #f5f7fa;
    --bg-card: #ffffff;
    --surface: #eef1f5;
    --border: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.16);
    --text: #1a1a2e;
    --text-muted: #555566;
    --text-dim: #8888aa;
    --gradient-card: linear-gradient(135deg, rgba(108,92,231,0.05), rgba(0,206,201,0.03));
}
body[data-theme="light"] .navbar { background:rgba(255,255,255,0.95); border-bottom-color:rgba(0,0,0,0.08); }
body[data-theme="light"] .nav-links a { color:#555; }
body[data-theme="light"] .nav-links a:hover { color:#1a1a2e; }
body[data-theme="light"] .mobile-toggle { color:#1a1a2e; }
body[data-theme="light"] .slide-bg { opacity:0.3; }
body[data-theme="light"] .slide-text h1 { color:#1a1a2e; text-shadow:0 2px 12px rgba(255,255,255,0.6); }
body[data-theme="light"] .hero-stat { background:rgba(255,255,255,0.75); border-color:rgba(0,0,0,0.06); box-shadow:0 2px 8px rgba(0,0,0,0.05); }
body[data-theme="light"] .hero-stat h3 { color:#1a1a2e; }
body[data-theme="light"] .dot { background:rgba(0,0,0,0.15); border-color:rgba(0,0,0,0.2); }
body[data-theme="light"] .slider-arrow { background:rgba(255,255,255,0.75); border-color:rgba(0,0,0,0.08); color:#333; box-shadow:0 2px 8px rgba(0,0,0,0.08); }
body[data-theme="light"] .slider-arrow:hover { background:rgba(108,92,231,0.12); color:#6c5ce7; }
body[data-theme="light"] .plan-card { background:#fff; border-color:rgba(0,0,0,0.06); box-shadow:0 2px 12px rgba(0,0,0,0.04); }
body[data-theme="light"] .plan-card:hover { box-shadow:0 8px 30px rgba(0,0,0,0.08); border-color:rgba(108,92,231,0.3); }
body[data-theme="light"] .plan-img { background:linear-gradient(135deg, rgba(108,92,231,0.08), rgba(0,206,201,0.06)); }
body[data-theme="light"] .plan-speed-badge { background:rgba(255,255,255,0.9); border-color:rgba(0,0,0,0.08); }
body[data-theme="light"] .plan-speed-badge strong { color:#1a1a2e; }
body[data-theme="light"] .plan-name { color:#1a1a2e; }
body[data-theme="light"] .plan-type-tag { background:rgba(108,92,231,0.12); color:#6c5ce7; }
body[data-theme="light"] .plan-tab:hover { color:#1a1a2e; }
body[data-theme="light"] .feature-card { background:#fff; box-shadow:0 2px 12px rgba(0,0,0,0.04); }
body[data-theme="light"] .feature-card h3 { color:#1a1a2e; }
body[data-theme="light"] .section-title { color:#1a1a2e; }
body[data-theme="light"] .section-coverage-banner::before { background:radial-gradient(ellipse at 50% 50%, rgba(108,92,231,0.08), transparent 70%); }
body[data-theme="light"] .coverage-inner h2 { color:#1a1a2e; }
body[data-theme="light"] .testimonial-card { background:#fff; box-shadow:0 2px 12px rgba(0,0,0,0.04); }
body[data-theme="light"] .faq-q { color:#1a1a2e; }
body[data-theme="light"] .faq-q:hover { color:#6c5ce7; }
body[data-theme="light"] .footer { background:linear-gradient(135deg, #1a1035 0%, #0d1b2a 100%); color:#f1f1f5; }
body[data-theme="light"] .footer .section-title,
body[data-theme="light"] .footer h4 { color:var(--accent); }
body[data-theme="light"] .footer-brand p,
body[data-theme="light"] .footer-col a,
body[data-theme="light"] .footer-address { color:#8b8ba3; }
body[data-theme="light"] .footer-bottom p { color:#5a5a72; }
body[data-theme="light"] .footer-socials a { border-color:rgba(255,255,255,0.1); color:#8b8ba3; background:rgba(255,255,255,0.05); }

/* ── Gallery ── */
.section-gallery { background:var(--surface); }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:16px; }
.gallery-item {
    position:relative;
    border-radius:var(--radius);
    overflow:hidden;
    cursor:pointer;
    aspect-ratio:4/3;
}
.gallery-item img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}
.gallery-item:hover img { transform:scale(1.08); }
.gallery-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:20px;
    opacity:0;
    transition:.3s;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay h4 { font-size:15px; font-weight:700; color:#fff; }
.gallery-overlay p { font-size:12px; color:rgba(255,255,255,0.7); margin-top:4px; }

/* ── Partners ── */
.section-partners { background:var(--bg); overflow:hidden; }
.partners-center { display:flex; flex-wrap:wrap; justify-content:center; gap:24px; padding:0 24px; }
.partners-marquee {
    position:relative;
    overflow:hidden;
    width:100%;
    mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.partners-track {
    display:flex;
    gap:24px;
    width:max-content;
    animation:marqueeRight 25s linear infinite;
}
.partners-track:hover { animation-play-state:paused; }
.partners-row-right { animation-name:marqueeRight; animation-duration:25s; }
.partners-row-left  { animation-name:marqueeLeft;  animation-duration:22s; }
@keyframes marqueeRight {
    0% { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}
@keyframes marqueeLeft {
    0% { transform:translateX(-50%); }
    100% { transform:translateX(0); }
}
.partner-card {
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:160px;
    height:80px;
    padding:16px 24px;
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    transition:.3s;
    flex-shrink:0;
}
.partner-card:hover { border-color:var(--border-hover); transform:translateY(-4px); box-shadow:0 8px 24px rgba(0,0,0,0.15); }
.partner-card img { max-width:120px; max-height:48px; object-fit:contain; filter:grayscale(0.5); opacity:0.7; transition:.3s; }
.partner-card:hover img { filter:grayscale(0); opacity:1; }

/* ── Blog ── */
.section-blog { background:var(--surface); }
.blog-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.blog-card {
    display:flex;
    flex-direction:column;
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    transition:.3s;
    text-decoration:none;
    color:inherit;
}
.blog-card:hover { border-color:var(--border-hover); transform:translateY(-4px); box-shadow:0 8px 24px rgba(0,0,0,0.15); }
.blog-card-img { height:180px; overflow:hidden; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:.3s; }
.blog-card:hover .blog-card-img img { transform:scale(1.05); }
.blog-card-placeholder { display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#1e293b,#0f172a); }
.blog-card-placeholder i { font-size:36px; color:#334155; }
.blog-card-body { padding:20px; flex:1; display:flex; flex-direction:column; }
.blog-date { font-size:12px; color:var(--text-dim); margin-bottom:8px; }
.blog-card-body h3 { font-size:16px; font-weight:700; margin-bottom:8px; line-height:1.4; }
.blog-card-body p { font-size:13px; color:var(--text-dim); line-height:1.5; flex:1; }
.blog-read { font-size:13px; color:var(--accent); font-weight:600; margin-top:12px; }
.blog-read i { transition:.2s; }
.blog-card:hover .blog-read i { transform:translateX(4px); }
.blog-content h2,.blog-content h3 { margin:24px 0 12px; }
.blog-content p { margin-bottom:16px; }
.blog-content img { max-width:100%; border-radius:8px; margin:16px 0; }
.blog-content ul,.blog-content ol { padding-left:24px; margin-bottom:16px; }
@media(max-width:768px) { .blog-grid { grid-template-columns:1fr; } }

/* ── Contact ── */
.section-contact { background:var(--bg); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:900px; margin:0 auto; }
.contact-info { display:flex; flex-direction:column; gap:20px; }
.contact-item {
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:16px;
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    transition:.2s;
}
.contact-item:hover { border-color:var(--border-hover); }
.contact-item i { font-size:20px; color:var(--accent); margin-top:2px; }
.contact-item h4 { font-size:14px; font-weight:600; margin-bottom:2px; }
.contact-item p { font-size:13px; color:var(--text-muted); }
.contact-form {
    display:flex;
    flex-direction:column;
    gap:12px;
}
.contact-form .form-control {
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:8px;
    padding:12px 16px;
    color:var(--text);
    font-size:14px;
    font-family:inherit;
    transition:.2s;
}
.contact-form .form-control:focus { outline:none; border-color:var(--accent); }
.contact-form textarea { resize:vertical; min-height:100px; }

/* ── Responsive ── */
@media(max-width:768px) {
    .topbar-right { display:none; }
    .nav-links { display:none; position:fixed; top:108px; left:0; right:0; background:rgba(10,10,15,0.97); flex-direction:column; padding:24px; gap:16px; border-bottom:1px solid var(--border); z-index:999; backdrop-filter:blur(20px); }
    .nav-links.show { display:flex; }
    .nav-wa { display:none; }
    .mobile-toggle { display:block; }
    .nav-logo-img { height:100%; max-height:44px; }
    .hero-stats-bar { grid-template-columns:1fr 1fr; }
    .slide-text h1 { font-size:clamp(22px,6vw,32px); }
    .plans-grid { grid-template-columns:1fr; }
    .features-grid { grid-template-columns:1fr; }
    .products-grid { grid-template-columns:1fr; }
    .testimonials-grid { grid-template-columns:1fr; }
    .gallery-grid { grid-template-columns:1fr 1fr; }
    .contact-grid { grid-template-columns:1fr; gap:24px; }
    .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
}
@media(max-width:480px) {
    .hero-stats-bar { grid-template-columns:1fr; }
    .gallery-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; }
    .footer-bottom { flex-direction:column; gap:16px; text-align:center; }
}

