:root {
    --primary: #4c1d95;
    --primary-light: #6d28d9;
    --accent: #22c55e;
    --accent-hover: #16a34a;
    --warning: #f59e0b;
    --dark: #0f172a;
    --bg: #f8fafc;
    --white: #ffffff;
    --text: #1e293b;
    --border: #e2e8f0;
    --shadow: 0 4px 14px rgba(15,23,42,.08);
    --shadow-lg: 0 20px 40px rgba(15,23,42,.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

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

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 999px; font-weight: 700; text-decoration: none; transition: all .25s; border: none; cursor: pointer; font-size: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #16a34a); color: #fff; box-shadow: 0 4px 20px rgba(34,197,94,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(34,197,94,.45); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-call { background: var(--accent); color: #022c22; font-size: 18px; padding: 18px 32px; }
.btn-call:hover { background: var(--accent-hover); transform: scale(1.02); }

/* Disclaimer */
.disclaimer-bar { background: linear-gradient(90deg, var(--dark), #1e293b); color: #cbd5e1; text-align: center; padding: 10px 20px; font-size: 12px; border-bottom: 2px solid var(--accent); }

/* Header */
header { background: var(--white); padding: 14px 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--primary); font-weight: 800; font-size: 20px; }
.logo-icon { font-size: 28px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: linear-gradient(135deg, var(--accent), #16a34a); color: #022c22; padding: 12px 24px; border-radius: 999px; font-weight: 800; text-decoration: none; box-shadow: 0 4px 16px rgba(34,197,94,.3); transition: all .25s; white-space: nowrap; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(34,197,94,.4); }
.hamburger { display: none; font-size: 26px; cursor: pointer; color: var(--primary); }

/* Hero - Google Ads call focus */
.hero { background: linear-gradient(135deg, #1e1b4b 0%, var(--primary) 50%, #5b21b6 100%); color: #fff; padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 80% 20%, rgba(34,197,94,.2) 0%, transparent 50%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .9fr; gap: 50px; align-items: center; }
.hero h1 { font-size: 42px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-sub { font-size: 18px; color: #c4b5fd; margin-bottom: 28px; }
.hero-cta-box { background: rgba(255,255,255,.12); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.2); border-radius: 24px; padding: 36px; text-align: center; }
.hero-cta-box h2 { font-size: 22px; margin-bottom: 8px; }
.hero-cta-box p { color: #e0e7ff; margin-bottom: 20px; font-size: 14px; }
.hero-cta-box .btn { width: 100%; text-align: center; font-size: 22px; padding: 22px; display: block; }

/* Section titles */
.section-title { text-align: center; font-size: 32px; color: var(--dark); margin-bottom: 40px; font-weight: 800; }
.section-subtitle { text-align: center; color: #64748b; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Category cards - homepage */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.category-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; text-decoration: none; color: inherit; display: block; border: 1px solid var(--border); }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card .thumb { height: 140px; background: linear-gradient(135deg, #f1f5f9, #e2e8f0); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.category-card .body { padding: 24px; }
.category-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.category-card p { font-size: 14px; color: #64748b; margin-bottom: 16px; }
.category-card .link-text { color: var(--accent); font-weight: 700; font-size: 14px; }

/* Product cards */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; border: 1px solid var(--border); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 200px; object-fit: contain; padding: 24px; background: #fefefe; border-bottom: 1px solid var(--border); }
.card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; }
.card .card-desc { font-size: 14px; color: #64748b; margin-bottom: 16px; }
.card-specs { list-style: none; margin-bottom: 20px; }
.card-specs li { font-size: 13px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.card-price { margin-top: auto; background: #f8fafc; padding: 16px; border-radius: 14px; text-align: center; }
.card-price strong { display: block; font-size: 20px; color: var(--primary); }
.card .btn { width: 100%; text-align: center; margin-top: 16px; }

/* Internet packages strip */
.packages-strip { background: var(--white); padding: 60px 0; border-top: 1px solid var(--border); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; }
.package-card { background: linear-gradient(135deg, #fef3c7, #fde68a); border-radius: 16px; padding: 24px; text-align: center; border: 1px solid #fcd34d; }
.package-card.featured { background: linear-gradient(135deg, #d1fae5, #a7f3d0); border-color: var(--accent); }
.package-card h3 { font-size: 28px; color: var(--dark); margin-bottom: 4px; }
.package-card .speed { font-size: 14px; color: #64748b; margin-bottom: 12px; }
.package-card .note { font-size: 12px; color: #64748b; }

/* CTA section */
.cta-section { background: linear-gradient(135deg, var(--primary), #6d28d9); color: #fff; padding: 70px 0; text-align: center; }
.cta-section h2 { font-size: 32px; margin-bottom: 12px; }
.cta-section p { color: #c4b5fd; margin-bottom: 28px; font-size: 18px; }
.cta-section .btn { background: var(--accent); color: #022c22; padding: 20px 48px; font-size: 22px; }

/* Footer */
footer { background: var(--dark); color: #94a3b8; padding: 60px 0 30px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer-grid p { font-size: 14px; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-phone { display: inline-block; font-size: 22px; font-weight: 800; color: var(--accent); text-decoration: none; margin-bottom: 8px; }
.footer-phone:hover { color: #4ade80; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; text-align: center; font-size: 13px; }
.footer-legal { font-size: 11px; color: #64748b; margin: 12px 0; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Fixed call widget - Google Ads conversion */
.fixed-call-widget { position: fixed; bottom: 24px; right: 24px; z-index: 99999; }
.call-widget-btn { display: flex; align-items: center; gap: 12px; background: linear-gradient(135deg, var(--accent), #16a34a); color: #022c22; padding: 18px 28px; border-radius: 999px; text-decoration: none; font-weight: 800; box-shadow: 0 10px 40px rgba(34,197,94,.45); transition: transform .2s, box-shadow .2s; }
.call-widget-btn:hover { transform: scale(1.05); box-shadow: 0 14px 48px rgba(34,197,94,.5); }
.call-widget-icon { font-size: 24px; }
.call-widget-text { font-size: 14px; }
.call-widget-number { font-size: 18px; }

/* Cookie banner */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #1e293b; color: #fff; padding: 14px 20px; z-index: 100000; box-shadow: 0 -4px 20px rgba(0,0,0,.2); }
.cookie-banner .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.cookie-banner a { color: #7dd3fc; text-decoration: underline; }
#accept-cookies { background: var(--accent); color: #022c22; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 700; cursor: pointer; }

/* Page hero (inner pages) */
.page-hero { background: linear-gradient(135deg, var(--dark), var(--primary)); color: #fff; padding: 100px 0 60px; text-align: center; }
.page-hero h1 { font-size: 36px; margin-bottom: 8px; }
.page-hero p { color: #c4b5fd; }

/* Product category anchor */
.anchor-section { scroll-margin-top: 100px; }

/* Mobile */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 28px; }
    .hero-cta-box { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.1); flex-direction: column; gap: 16px; }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .nav-cta { padding: 10px 18px; font-size: 14px; }
    .section-title { font-size: 26px; }
    .products-grid { grid-template-columns: 1fr; }
    .call-widget-btn { flex-direction: column; gap: 4px; padding: 16px 24px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
