﻿/* =========================================  
 NORTON ANTIVIRUS — style.css  
 nortonantivirus.online  
 ========================================= */

/* ---------- RESET & VARIABLES ---------- */  
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {  
 --yellow: #FFC300;  
 --yellow-light: #FFE04B;  
 --yellow-dark: #cc9900;  
 --dark: #0d1117;  
 --dark2: #161b22;  
 --dark3: #1c2128;  
 --dark4: #21262d;  
 --dark5: #2d333b;  
 --text: #c9d1d9;  
 --text-light: #8b949e;  
 --white: #ffffff;  
 --green: #00d084;  
 --red: #ff4444;  
 --blue: #4facfe;  
 --radius: 14px;  
 --radius-sm: 8px;  
 --shadow: 0 16px 48px rgba(0,0,0,0.5);  
 --shadow-y: 0 8px 24px rgba(255,195,0,0.2);  
 --tr: all 0.3s cubic-bezier(0.25,0.8,0.25,1);  
 --font: 'Inter', sans-serif;  
 --font2: 'Space Grotesk', sans-serif;  
}

html { scroll-behavior: smooth; font-size: 16px; }  
body { font-family: var(--font); background: var(--dark); color: var(--text); overflow-x: hidden; line-height: 1.7; }  
img { max-width: 100%; display: block; }  
a { text-decoration: none; color: inherit; }  
ul { list-style: none; }  
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }  
.section { padding: 96px 0; }  
.yellow { color: var(--yellow); }  
.yellow-icon { color: var(--yellow); }

/* ---------- PRELOADER ---------- */  
#preloader {  
 position: fixed; inset: 0;  
 background: var(--dark);  
 display: flex; align-items: center; justify-content: center;  
 z-index: 9999;  
 transition: opacity 0.6s ease, visibility 0.6s ease;  
}  
#preloader.gone { opacity: 0; visibility: hidden; }  
.pre-wrap { text-align: center; }  
.pre-shield {  
 font-size: 64px; color: var(--yellow);  
 animation: shieldPulse 1.4s ease infinite;  
 margin-bottom: 20px;  
}  
@keyframes shieldPulse {  
 0%,100%{ transform: scale(1); filter: drop-shadow(0 0 10px rgba(255,195,0,0.3)); }  
 50%{ transform: scale(1.1); filter: drop-shadow(0 0 24px rgba(255,195,0,0.6)); }  
}  
.pre-brand { display: flex; align-items: center; gap: 6px; justify-content: center; margin-bottom: 24px; }  
.pre-n { font-size: 28px; font-weight: 900; color: var(--white); font-family: var(--font2); }  
.pre-tag { font-size: 16px; font-weight: 600; color: var(--yellow); }  
.pre-bar-wrap { width: 240px; height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; margin: 0 auto 12px; }  
.pre-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--yellow), var(--yellow-light)); border-radius: 2px; animation: preLoad 2.2s ease forwards; }  
@keyframes preLoad { to { width: 100%; } }  
.pre-text { font-size: 12px; color: var(--text-light); letter-spacing: 1px; }

/* ---------- TOP ALERT ---------- */  
.top-alert {  
 background: linear-gradient(90deg, #1a1200, #2a1e00, #1a1200);  
 border-bottom: 1px solid rgba(255,195,0,0.25);  
 padding: 10px 24px;  
 display: flex; align-items: center; justify-content: center;  
 gap: 12px; font-size: 13px; font-weight: 500;  
 position: relative; z-index: 900;  
}  
.top-alert i { color: var(--yellow); }  
.top-alert-cta {  
 background: var(--yellow); color: #000;  
 padding: 4px 14px; border-radius: 20px;  
 font-size: 12px; font-weight: 700;  
 margin-left: 8px; transition: var(--tr);  
}  
.top-alert-cta:hover { background: var(--yellow-light); }  
.top-alert-close {  
 position: absolute; right: 16px; top: 50%; transform: translateY(-50%);  
 background: none; border: none; color: var(--text-light);  
 cursor: pointer; font-size: 16px; transition: var(--tr);  
}  
.top-alert-close:hover { color: var(--yellow); }

/* ---------- HEADER ---------- */  
#header {  
 position: sticky; top: 0; left: 0; right: 0; z-index: 800;  
 background: rgba(13,17,23,0.6);  
 backdrop-filter: blur(20px);  
 border-bottom: 1px solid rgba(255,255,255,0.04);  
 transition: var(--tr);  
}  
#header.scrolled {  
 background: rgba(13,17,23,0.97);  
 border-bottom-color: rgba(255,195,0,0.15);  
 box-shadow: 0 4px 24px rgba(0,0,0,0.4);  
}  
.navbar { display: flex; align-items: center; padding: 14px 24px; gap: 20px; }  
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }  
.logo-shield { font-size: 28px; color: var(--yellow); line-height: 1; }  
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }  
.logo-norton { font-size: 17px; font-weight: 900; color: var(--white); font-family: var(--font2); letter-spacing: -0.5px; }  
.logo-av { font-size: 9px; font-weight: 600; color: var(--yellow); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }  
.nav-link {  
 padding: 8px 12px; border-radius: 7px;  
 font-size: 14px; font-weight: 500; color: var(--text);  
 transition: var(--tr); display: flex; align-items: center; gap: 5px;  
}  
.nav-link:hover, .nav-link.active { color: var(--yellow); background: rgba(255,195,0,0.07); }

/* Dropdown */  
.has-drop { position: relative; }  
.dropdown {  
 display: none;  
 position: absolute; top: calc(100% + 8px); left: 0;  
 background: var(--dark3);  
 border: 1px solid rgba(255,255,255,0.08);  
 border-radius: var(--radius-sm);  
 padding: 8px; min-width: 220px;  
 box-shadow: var(--shadow);  
}  
.dropdown li a {  
 display: flex; align-items: center; gap: 10px;  
 padding: 10px 14px; border-radius: 6px;  
 font-size: 14px; color: var(--text);  
 transition: var(--tr);  
}  
.dropdown li a:hover { background: rgba(255,195,0,0.08); color: var(--yellow); }  
.has-drop:hover .dropdown { display: block; animation: dropIn 0.2s ease; }  
@keyframes dropIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }

.nav-cta { margin-left: 16px; flex-shrink: 0; }  
.btn-yellow {  
 display: inline-flex; align-items: center; gap: 8px;  
 background: linear-gradient(135deg, var(--yellow), var(--yellow-light));  
 color: #000; padding: 10px 22px;  
 border-radius: 50px; font-size: 14px; font-weight: 700;  
 border: none; cursor: pointer; transition: var(--tr);  
 font-family: var(--font);  
}  
.btn-yellow:hover { transform: translateY(-2px); box-shadow: var(--shadow-y); }  
.btn-outline-w {  
 display: inline-flex; align-items: center; gap: 8px;  
 background: transparent; color: var(--white);  
 border: 2px solid rgba(255,255,255,0.35);  
 padding: 10px 22px; border-radius: 50px;  
 font-size: 14px; font-weight: 600; transition: var(--tr); cursor: pointer;  
}  
.btn-outline-w:hover { border-color: var(--yellow); color: var(--yellow); }

.hamburger {  
 display: none; flex-direction: column; gap: 5px;  
 cursor: pointer; background: none; border: none; margin-left: auto;  
}  
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }

/* ---------- HERO SLIDER ---------- */  
.hero-section { position: relative; height: 90vh; min-height: 620px; }  
.hero-slider { width: 100%; height: 100%; overflow: hidden; position: relative; }  
.hero-slides { display: flex; height: 100%; transition: transform 0.9s cubic-bezier(0.77,0,0.18,1); }  
.hero-slide {  
 min-width: 100%; height: 100%;  
 background-size: cover; background-position: center;  
 position: relative; display: flex; align-items: center;  
}  
.slide-overlay {  
 position: absolute; inset: 0;  
 background: linear-gradient(to right, rgba(13,17,23,0.95) 45%, rgba(13,17,23,0.4) 100%);  
}  
.slide-inner {  
 position: relative; z-index: 2;  
 display: grid; grid-template-columns: 1fr 1fr;  
 gap: 40px; align-items: center;  
}  
.slide-badge {  
 display: inline-flex; align-items: center; gap: 8px;  
 background: rgba(255,195,0,0.12); border: 1px solid rgba(255,195,0,0.35);  
 color: var(--yellow); padding: 6px 16px;  
 border-radius: 50px; font-size: 12px; font-weight: 600;  
 margin-bottom: 20px; letter-spacing: 0.5px;  
}  
.slide-content h1 {  
 font-size: clamp(32px,4.5vw,62px);  
 font-weight: 900; color: var(--white);  
 line-height: 1.15; margin-bottom: 18px;  
 font-family: var(--font2);  
}  
.slide-content p { color: var(--text); font-size: 17px; max-width: 520px; margin-bottom: 28px; }  
.slide-stats { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }  
.s-stat strong { display: block; font-size: 22px; font-weight: 900; color: var(--yellow); }  
.s-stat span { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }  
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }  
.slide-device img {  
 border-radius: 16px;  
 box-shadow: 0 24px 60px rgba(0,0,0,0.5);  
 width: 100%;  
 border: 1px solid rgba(255,195,0,0.15);  
}  
.hero-prev, .hero-next {  
 position: absolute; top: 50%; transform: translateY(-50%);  
 background: rgba(255,195,0,0.1); border: 1px solid rgba(255,195,0,0.3);  
 color: var(--yellow); width: 48px; height: 48px;  
 border-radius: 50%; font-size: 16px; cursor: pointer;  
 display: flex; align-items: center; justify-content: center;  
 transition: var(--tr); z-index: 10;  
}  
.hero-prev:hover, .hero-next:hover { background: var(--yellow); color: #000; }  
.hero-prev { left: 20px; }  
.hero-next { right: 20px; }  
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }  
.h-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--tr); }  
.h-dot.active { background: var(--yellow); width: 24px; border-radius: 4px; }  
.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.06); }  
.hero-progress-fill { height: 100%; background: var(--yellow); transition: width 0.1s linear; }

/* ---------- THREAT TICKER ---------- */  
.threat-ticker {  
 background: var(--dark2); border-top: 1px solid rgba(255,195,0,0.15);  
 border-bottom: 1px solid rgba(255,195,0,0.15);  
 padding: 12px 0; display: flex; align-items: center; gap: 0; overflow: hidden;  
}  
.ticker-label {  
 display: flex; align-items: center; gap: 8px;  
 background: rgba(255,0,0,0.12); border-right: 1px solid rgba(255,0,0,0.2);  
 padding: 6px 20px; font-size: 11px; font-weight: 700;  
 color: #ff6b6b; white-space: nowrap; flex-shrink: 0;  
 text-transform: uppercase; letter-spacing: 1px;  
}  
.ticker-label .fa-circle-dot { color: #ff4444; font-size: 10px; }  
.blink { animation: blink 1s ease infinite; }  
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }  
.ticker-scroll { flex: 1; overflow: hidden; padding: 0 16px; }  
.ticker-inner { display: flex; gap: 48px; white-space: nowrap; animation: tickerFlow 30s linear infinite; }  
.ticker-inner span { font-size: 13px; color: var(--text); font-weight: 500; }  
@keyframes tickerFlow { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }  
.ticker-count {  
 flex-shrink: 0; padding: 6px 20px;  
 border-left: 1px solid rgba(255,195,0,0.2);  
 font-size: 13px; font-weight: 700; color: var(--yellow);  
 white-space: nowrap;  
}

/* ---------- SECTION HEADER ---------- */  
.section-badge {  
 display: inline-block;  
 background: rgba(255,195,0,0.1); border: 1px solid rgba(255,195,0,0.25);  
 color: var(--yellow); padding: 5px 16px; border-radius: 50px;  
 font-size: 11px; font-weight: 700; letter-spacing: 2px;  
 text-transform: uppercase; margin-bottom: 14px;  
}  
.section-header { text-align: center; margin-bottom: 56px; }  
.section-header h2 { font-size: clamp(26px,4vw,44px); font-weight: 900; color: var(--white); margin-bottom: 14px; font-family: var(--font2); }  
.section-header p { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 16px; }

/* ---------- PRODUCTS ---------- */  
.products-section { background: var(--dark); }  
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }  
.product-card {  
 background: var(--dark3); border: 1px solid rgba(255,255,255,0.06);  
 border-radius: var(--radius); padding: 28px;  
 transition: var(--tr); position: relative; overflow: hidden;  
 animation-delay: var(--d);  
}  
.product-card::before {  
 content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;  
 background: linear-gradient(90deg, transparent, var(--yellow), transparent);  
 opacity: 0; transition: var(--tr);  
}  
.product-card:hover { border-color: rgba(255,195,0,0.25); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }  
.product-card:hover::before { opacity: 1; }  
.product-icon {  
 width: 56px; height: 56px; border-radius: 14px;  
 display: flex; align-items: center; justify-content: center;  
 font-size: 22px; margin-bottom: 16px;  
}  
.product-badge {  
 display: inline-block; background: linear-gradient(135deg,var(--yellow),var(--yellow-light));  
 color: #000; font-size: 10px; font-weight: 800; padding: 3px 10px;  
 border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;  
 margin-bottom: 10px;  
}  
.product-card h3 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; font-family: var(--font2); }  
.product-card > p { color: var(--text-light); font-size: 13px; margin-bottom: 18px; line-height: 1.6; }  
.product-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }  
.product-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }  
.product-features li .fa-times { color: var(--text-light); }  
.btn-yellow-full {  
 display: flex; align-items: center; justify-content: center; gap: 8px;  
 width: 100%; padding: 11px;  
 background: linear-gradient(135deg, var(--yellow), var(--yellow-light));  
 color: #000; border-radius: 8px;  
 font-size: 13px; font-weight: 700; border: none;  
 cursor: pointer; transition: var(--tr); font-family: var(--font);  
}  
.btn-yellow-full:hover { transform: translateY(-2px); box-shadow: var(--shadow-y); }

/* ---------- FEATURES ---------- */  
.features-section { background: var(--dark2); }  
.feat-tabs {  
 display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;  
 margin-bottom: 40px;  
}  
.feat-tab {  
 display: flex; align-items: center; gap: 8px;  
 padding: 10px 20px; background: var(--dark4);  
 border: 1px solid rgba(255,255,255,0.07);  
 border-radius: 50px; color: var(--text-light);  
 font-size: 14px; font-weight: 600; cursor: pointer;  
 transition: var(--tr); font-family: var(--font);  
}  
.feat-tab:hover { border-color: rgba(255,195,0,0.3); color: var(--yellow); }  
.feat-tab.active {  
 background: rgba(255,195,0,0.1); border-color: rgba(255,195,0,0.4);  
 color: var(--yellow);  
}  
.feat-panels { position: relative; }  
.feat-panel { display: none; }  
.feat-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }  
.fp-icon {  
 width: 60px; height: 60px; border-radius: 16px;  
 background: rgba(255,195,0,0.12); border: 1px solid rgba(255,195,0,0.25);  
 display: flex; align-items: center; justify-content: center;  
 font-size: 24px; color: var(--yellow); margin-bottom: 20px;  
}  
.fp-content h3 { font-size: 26px; font-weight: 900; color: var(--white); margin-bottom: 14px; font-family: var(--font2); }  
.fp-content p { color: var(--text-light); font-size: 15px; margin-bottom: 22px; }  
.fp-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }  
.fp-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }  
.fp-list .fa-check-circle { color: var(--green); font-size: 16px; }  
.fp-image { position: relative; }  
.fp-image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; border: 1px solid rgba(255,195,0,0.1); }  
.fp-float-card {  
 position: absolute; bottom: -16px; left: -16px;  
 background: rgba(28,33,40,0.96); backdrop-filter: blur(10px);  
 border: 1px solid rgba(255,195,0,0.2);  
 border-radius: 10px; padding: 12px 16px;  
 display: flex; align-items: center; gap: 12px;  
 font-size: 13px; font-weight: 600; color: var(--white);  
 box-shadow: 0 8px 24px rgba(0,0,0,0.3);  
}  
.fp-float-card div strong { display: block; }  
.fp-float-card div span { color: var(--text-light); font-size: 11px; }

/* ---------- STATS ---------- */  
.stats-section {  
 background: linear-gradient(135deg, #0d1117, #161b22, #0d1117);  
 border-top: 1px solid rgba(255,195,0,0.12);  
 border-bottom: 1px solid rgba(255,195,0,0.12);  
 padding: 60px 0;  
}  
.stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; text-align: center; }  
.stat-box { padding: 28px 16px; border-right: 1px solid rgba(255,255,255,0.05); }  
.stat-box:last-child { border-right: none; }  
.stat-icon { font-size: 26px; color: var(--yellow); margin-bottom: 12px; }  
.stat-num { font-size: 38px; font-weight: 900; color: var(--white); font-family: var(--font2); margin-bottom: 6px; }  
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* ---------- HOW IT WORKS ---------- */  
.hiw-section { background: var(--dark); }  
.hiw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-bottom: 56px; }  
.hiw-step {  
 text-align: center; padding: 36px 24px;  
 background: var(--dark3); border: 1px solid rgba(255,255,255,0.05);  
 border-radius: var(--radius); position: relative;  
 transition: var(--tr); animation-delay: var(--d);  
}  
.hiw-step:hover { border-color: rgba(255,195,0,0.2); transform: translateY(-4px); }  
.hiw-num {  
 position: absolute; top: -16px; left: 50%; transform: translateX(-50%);  
 background: var(--yellow); color: #000;  
 font-size: 13px; font-weight: 900; padding: 4px 14px;  
 border-radius: 20px;  
}  
.hiw-icon {  
 font-size: 40px; color: var(--yellow); margin: 12px 0 18px;  
 display: block;  
}  
.hiw-step h3 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; font-family: var(--font2); }  
.hiw-step p { color: var(--text-light); font-size: 14px; }  
.hiw-arrow {  
 position: absolute; top: 50%; right: -18px; transform: translateY(-50%);  
 color: var(--yellow); font-size: 20px; z-index: 2;  
}  
.hiw-compat { text-align: center; }  
.compat-label { color: var(--text-light); font-size: 14px; margin-bottom: 20px; }  
.compat-icons { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }  
.compat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }  
.compat-item i { font-size: 32px; color: var(--text-light); transition: var(--tr); }  
.compat-item:hover i { color: var(--yellow); }  
.compat-item span { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ---------- PRICING ---------- */  
.pricing-section { background: var(--dark2); }  
.price-toggle {  
 display: flex; align-items: center; justify-content: center; gap: 16px;  
 margin-bottom: 48px;  
}  
.tgl-label { font-size: 15px; font-weight: 600; color: var(--text-light); transition: var(--tr); }  
.tgl-label.active { color: var(--white); }  
.toggle-switch { position: relative; width: 52px; height: 28px; }  
.toggle-switch input { opacity: 0; width: 0; height: 0; }  
.toggle-slider {  
 position: absolute; inset: 0;  
 background: var(--dark5); border-radius: 28px; cursor: pointer;  
 border: 1px solid rgba(255,255,255,0.1); transition: var(--tr);  
}  
.toggle-slider::before {  
 content: ''; position: absolute;  
 width: 20px; height: 20px; border-radius: 50%;  
 background: var(--text-light); left: 3px; top: 3px;  
 transition: var(--tr);  
}  
.toggle-switch input:checked + .toggle-slider { background: rgba(255,195,0,0.2); border-color: var(--yellow); }  
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); background: var(--yellow); }  
.save-badge {  
 background: linear-gradient(135deg,var(--yellow),var(--yellow-light));  
 color: #000; font-size: 10px; font-weight: 700;  
 padding: 2px 8px; border-radius: 10px; margin-left: 6px;  
}  
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }  
.price-card {  
 background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);  
 border-radius: var(--radius); padding: 34px 28px;  
 position: relative; overflow: hidden; transition: var(--tr);  
 animation-delay: var(--d);  
}  
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }  
.price-card.featured {  
 border-color: rgba(255,195,0,0.4);  
 background: linear-gradient(160deg, rgba(255,195,0,0.07), var(--dark3));  
 box-shadow: 0 0 0 1px rgba(255,195,0,0.2), var(--shadow);  
}  
.featured-ribbon {  
 position: absolute; top: 18px; right: -10px;  
 background: linear-gradient(135deg,var(--yellow),var(--yellow-light));  
 color: #000; font-size: 11px; font-weight: 800;  
 padding: 5px 24px; transform: rotate(0deg);  
 border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px;  
}  
.price-header { margin-bottom: 24px; }  
.price-icon {  
 width: 52px; height: 52px; border-radius: 12px;  
 display: flex; align-items: center; justify-content: center;  
 font-size: 20px; margin-bottom: 14px;  
}  
.price-header h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; font-family: var(--font2); }  
.price-header p { font-size: 13px; color: var(--text-light); }  
.price-amount { margin-bottom: 26px; }  
.price-amount sup { font-size: 22px; font-weight: 700; color: var(--yellow); vertical-align: top; margin-top: 10px; display: inline-block; }  
.price-num { font-size: 58px; font-weight: 900; color: var(--white); font-family: var(--font2); line-height: 1; }  
.price-amount sub { font-size: 14px; color: var(--text-light); }  
.price-billed { font-size: 12px; color: var(--text-light); margin-top: 4px; }  
.price-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }  
.price-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }  
.price-list li.yes { color: var(--text); }  
.price-list li.no { color: var(--text-light); text-decoration: line-through; opacity: 0.5; }  
.price-list li.yes .fa-check { color: var(--green); }  
.price-list li.no .fa-xmark { color: var(--red); }  
.btn-price-outline {  
 display: flex; align-items: center; justify-content: center;  
 width: 100%; padding: 12px;  
 background: transparent; border: 2px solid rgba(255,195,0,0.35);  
 color: var(--yellow); border-radius: 8px;  
 font-size: 14px; font-weight: 700; cursor: pointer;  
 transition: var(--tr); font-family: var(--font);  
}  
.btn-price-outline:hover { background: rgba(255,195,0,0.08); border-color: var(--yellow); }

/* Guarantee bar */  
.guarantee-bar {  
 background: rgba(0,208,132,0.06); border: 1px solid rgba(0,208,132,0.2);  
 border-radius: var(--radius); padding: 22px 28px;  
 display: flex; align-items: center; gap: 20px; flex-wrap: wrap;  
}  
.guarantee-bar > i { font-size: 32px; color: var(--green); flex-shrink: 0; }  
.guarantee-bar > div { flex: 1; }  
.guarantee-bar strong { color: var(--white); font-size: 15px; display: block; margin-bottom: 2px; }  
.guarantee-bar span { color: var(--text-light); font-size: 13px; }  
.guarantee-badges { display: flex; gap: 16px; flex-wrap: wrap; }  
.guarantee-badges span {  
 display: flex; align-items: center; gap: 6px;  
 background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);  
 border-radius: 20px; padding: 6px 14px;  
 font-size: 12px; color: var(--text); font-weight: 600;  
}  
.guarantee-badges span i { color: var(--yellow); }

/* ---------- TRUST ---------- */  
.trust-section { background: var(--dark); padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }  
.trust-label { text-align: center; color: var(--text-light); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 28px; }  
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }  
.trust-logo { display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.4; transition: var(--tr); cursor: default; }  
.trust-logo:hover { opacity: 0.9; }  
.trust-logo i { font-size: 30px; color: var(--white); }  
.trust-logo span { font-size: 11px; color: var(--text-light); font-weight: 600; letter-spacing: 0.5px; }

/* ---------- TESTIMONIALS ---------- */  
.testi-section { background: var(--dark2); }  
.testi-slider-wrap { overflow: hidden; }  
.testi-track { display: flex; gap: 24px; transition: transform 0.5s ease; }  
.testi-card {  
 min-width: calc(33.333% - 16px); background: var(--dark3);  
 border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius);  
 padding: 28px; flex-shrink: 0; transition: var(--tr);  
}  
.testi-card:hover { border-color: rgba(255,195,0,0.2); }  
.testi-stars { color: var(--yellow); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }  
.testi-card > p { color: var(--text-light); font-size: 14px; line-height: 1.8; margin-bottom: 22px; font-style: italic; }  
.testi-user { display: flex; align-items: center; gap: 12px; }  
.testi-user img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--yellow); }  
.testi-user strong { display: block; color: var(--white); font-size: 14px; }  
.testi-user span { color: var(--text-light); font-size: 12px; }  
.testi-controls { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }  
.testi-controls button {  
 width: 44px; height: 44px; border-radius: 50%;  
 background: var(--dark4); border: 1px solid rgba(255,255,255,0.08);  
 color: var(--text); font-size: 16px; cursor: pointer; transition: var(--tr);  
}  
.testi-controls button:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }

/* ---------- FAQ ---------- */  
.faq-section { background: var(--dark); }  
.faq-wrap { max-width: 860px; }  
.faq-grid { display: flex; flex-direction: column; gap: 12px; }  
.faq-item {  
 background: var(--dark3); border: 1px solid rgba(255,255,255,0.06);  
 border-radius: var(--radius-sm); overflow: hidden; transition: var(--tr);  
}  
.faq-item:hover { border-color: rgba(255,195,0,0.2); }  
.faq-q {  
 display: flex; align-items: center; justify-content: space-between;  
 padding: 18px 22px; cursor: pointer; gap: 16px;  
 font-size: 15px; font-weight: 600; color: var(--white);  
}  
.faq-icon { color: var(--yellow); flex-shrink: 0; transition: var(--tr); font-size: 14px; }  
.faq-item.open .faq-icon { transform: rotate(45deg); }  
.faq-a { display: none; padding: 0 22px 18px; }  
.faq-a p { color: var(--text-light); font-size: 14px; line-height: 1.8; }  
.faq-item.open .faq-a { display: block; animation: fadeDown 0.25s ease; }  
@keyframes fadeDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }

/* ---------- CONTACT ---------- */  
.contact-section { background: var(--dark2); }  
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }  
.contact-info h2 { font-size: 32px; font-weight: 900; color: var(--white); margin-bottom: 14px; font-family: var(--font2); }  
.contact-info > p { color: var(--text-light); font-size: 15px; margin-bottom: 32px; }  
.support-channels { display: flex; flex-direction: column; gap: 16px; }  
.support-card {  
 display: flex; align-items: center; gap: 16px;  
 background: var(--dark4); border: 1px solid rgba(255,255,255,0.06);  
 border-radius: var(--radius-sm); padding: 16px 18px;  
 transition: var(--tr);  
}  
.support-card:hover { border-color: rgba(255,195,0,0.2); transform: translateX(4px); }  
.sc-icon {  
 width: 44px; height: 44px; border-radius: 10px;  
 background: rgba(255,195,0,0.1); border: 1px solid rgba(255,195,0,0.2);  
 display: flex; align-items: center; justify-content: center;  
 font-size: 18px; color: var(--yellow); flex-shrink: 0;  
}  
.sc-info strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 2px; }  
.sc-info span { color: var(--text); font-size: 13px; display: block; }  
.sc-info small { color: var(--text-light); font-size: 11px; }  
.contact-form-wrap { background: var(--dark3); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 34px; }  
.contact-form h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 22px; font-family: var(--font2); }  
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }  
.cf-group { margin-bottom: 14px; }  
.cf-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }  
.cf-input-wrap { position: relative; }  
.cf-input-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 14px; pointer-events: none; }  
.cf-input-wrap input,  
.cf-input-wrap select,  
.cf-input-wrap textarea {  
 width: 100%; background: rgba(255,255,255,0.04);  
 border: 1px solid rgba(255,255,255,0.09);  
 border-radius: 8px; padding: 12px 14px 12px 40px;  
 color: var(--white); font-size: 14px; font-family: var(--font);  
 transition: var(--tr); outline: none; resize: none;  
 -webkit-appearance: none;  
}  
.cf-input-wrap textarea { padding-top: 12px; padding-left: 40px; }  
.cf-input-wrap select option { background: var(--dark2); }  
.cf-input-wrap input:focus,  
.cf-input-wrap select:focus,  
.cf-input-wrap textarea:focus {  
 border-color: var(--yellow); background: rgba(255,195,0,0.04);  
 box-shadow: 0 0 0 3px rgba(255,195,0,0.12);  
}  
.cf-input-wrap input::placeholder,  
.cf-input-wrap textarea::placeholder { color: var(--text-light); }  
.cf-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(0,0,0,0.2); border-top-color: #000; border-radius: 50%; animation: spin 0.7s linear infinite; }  
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- FOOTER ---------- */  
.footer { background: #080c12; border-top: 1px solid rgba(255,195,0,0.12); padding: 72px 0 0; }  
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }  
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }  
.footer-brand p { color: var(--text-light); font-size: 13px; line-height: 1.8; margin-bottom: 22px; }  
.footer-social { display: flex; gap: 10px; }  
.footer-social a {  
 width: 38px; height: 38px; border-radius: 50%;  
 background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);  
 display: flex; align-items: center; justify-content: center;  
 color: var(--text-light); font-size: 14px; transition: var(--tr);  
}  
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); color: #000; }  
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 18px; }  
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }  
.footer-col a { color: var(--text-light); font-size: 13px; transition: var(--tr); }  
.footer-col a:hover { color: var(--yellow); padding-left: 4px; }  
.footer-bottom {  
 border-top: 1px solid rgba(255,255,255,0.05);  
 padding: 24px; display: flex; align-items: flex-start;  
 justify-content: space-between; gap: 24px; flex-wrap: wrap;  
}  
.fb-left p { color: var(--text-light); font-size: 12px; margin-bottom: 4px; }  
.fb-disclaimer { color: rgba(255,255,255,0.25) !important; font-size: 10px !important; max-width: 600px; line-height: 1.6 !important; }  
.fb-badges { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }  
.fb-badges span {  
 display: flex; align-items: center; gap: 5px;  
 background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);  
 padding: 5px 12px; border-radius: 20px;  
 font-size: 11px; color: var(--text-light);  
}  
.fb-badges i { color: var(--yellow); }

/* ---------- SCROLL TOP ---------- */  
#scrollTop {  
 position: fixed; bottom: 90px; right: 24px;  
 width: 44px; height: 44px; border-radius: 50%;  
 background: linear-gradient(135deg,var(--yellow),var(--yellow-light));  
 color: #000; font-size: 16px; cursor: pointer;  
 border: none; box-shadow: var(--shadow-y);  
 display: flex; align-items: center; justify-content: center;  
 opacity: 0; visibility: hidden; transform: translateY(12px);  
 transition: var(--tr); z-index: 600;  
}  
#scrollTop.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- CHAT WIDGET ---------- */  
.chat-widget {  
 position: fixed; bottom: 24px; right: 24px;  
 width: 340px; background: var(--dark3);  
 border: 1px solid rgba(255,195,0,0.25);  
 border-radius: 16px; overflow: hidden;  
 box-shadow: 0 16px 48px rgba(0,0,0,0.5);  
 z-index: 700;  
}  
.chat-header {  
 background: linear-gradient(135deg,#1c2128,#21262d);  
 padding: 14px 16px; display: flex; align-items: center; gap: 12px;  
 cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.06);  
}  
.chat-avatar {  
 width: 38px; height: 38px; border-radius: 50%;  
 background: linear-gradient(135deg,var(--yellow),var(--yellow-light));  
 display: flex; align-items: center; justify-content: center;  
 font-size: 17px; color: #000; flex-shrink: 0;  
}  
.chat-title strong { display: block; color: var(--white); font-size: 14px; }  
.chat-title span { color: var(--text-light); font-size: 12px; display: flex; align-items: center; gap: 4px; }  
.green-dot { color: var(--green); font-size: 8px; }  
.chat-toggle-icon { margin-left: auto; color: var(--text-light); font-size: 13px; transition: var(--tr); }  
.chat-body { display: none; }  
.chat-body.open { display: block; }  
.chat-messages { height: 220px; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }  
.chat-msg { display: flex; flex-direction: column; gap: 4px; }  
.chat-msg.agent { align-items: flex-start; }  
.chat-msg.user { align-items: flex-end; }  
.chat-bubble {  
 background: var(--dark4); border: 1px solid rgba(255,255,255,0.07);  
 border-radius: 10px; padding: 10px 14px;  
 font-size: 13px; color: var(--text); max-width: 80%; line-height: 1.5;  
}  
.chat-msg.user .chat-bubble { background: rgba(255,195,0,0.12); border-color: rgba(255,195,0,0.2); color: var(--white); }  
.chat-msg span { font-size: 10px; color: var(--text-light); }  
.chat-quick-replies { display: flex; gap: 6px; flex-wrap: wrap; padding: 0 14px 10px; }  
.chat-quick-replies button {  
 background: rgba(255,195,0,0.08); border: 1px solid rgba(255,195,0,0.2);  
 color: var(--yellow); border-radius: 20px;  
 padding: 5px 12px; font-size: 11px; font-weight: 600;  
 cursor: pointer; transition: var(--tr); font-family: var(--font);  
}  
.chat-quick-replies button:hover { background: rgba(255,195,0,0.18); }  
.chat-input-row {  
 display: flex; border-top: 1px solid rgba(255,255,255,0.06);  
 padding: 10px 12px; gap: 8px; align-items: center;  
}  
#chatInput {  
 flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);  
 border-radius: 20px; padding: 8px 14px; color: var(--white);  
 font-size: 13px; font-family: var(--font); outline: none;  
}  
#chatInput:focus { border-color: var(--yellow); }  
.chat-input-row > button {  
 width: 34px; height: 34px; border-radius: 50%;  
 background: linear-gradient(135deg,var(--yellow),var(--yellow-light));  
 border: none; color: #000; font-size: 13px; cursor: pointer;  
 flex-shrink: 0; transition: var(--tr);  
}  
.chat-input-row > button:hover { transform: scale(1.08); }

/* ---------- TOAST ---------- */  
.site-toast {  
 position: fixed; top: 24px; right: 24px;  
 background: var(--dark3); border-left: 4px solid var(--green);  
 border-radius: 10px; padding: 14px 18px;  
 font-size: 14px; font-weight: 600; color: var(--white);  
 box-shadow: 0 8px 24px rgba(0,0,0,0.4);  
 opacity: 0; transform: translateX(100%);  
 transition: all 0.4s ease; z-index: 9999; min-width: 260px;  
}  
.site-toast.show { opacity: 1; transform: translateX(0); }

/* ---------- REVEAL ---------- */  
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; transition-delay: var(--d, 0s); }  
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */  
@media(max-width:1100px){  
 .products-grid { grid-template-columns: repeat(2,1fr); }  
 .stats-grid { grid-template-columns: repeat(3,1fr); }  
 .footer-grid { grid-template-columns: 1fr 1fr 1fr; }  
}  
@media(max-width:900px){  
 .slide-inner { grid-template-columns: 1fr; }  
 .slide-device { display: none; }  
 .feat-panel.active { grid-template-columns: 1fr; }  
 .pricing-grid { grid-template-columns: 1fr; }  
 .contact-grid { grid-template-columns: 1fr; gap: 40px; }  
 .hiw-grid { grid-template-columns: 1fr; }  
 .hiw-arrow { display: none; }  
 .testi-card { min-width: calc(50% - 12px); }  
 .footer-grid { grid-template-columns: 1fr 1fr; }  
}  
@media(max-width:768px){  
 .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--dark2); padding: 72px 24px 32px; z-index: 999; border-left: 1px solid rgba(255,195,0,0.15); gap: 4px; transition: right 0.4s ease; }  
 .nav-links.open { display: flex; right: 0; }  
 .nav-cta { display: none; }  
 .hamburger { display: flex; }  
 .products-grid { grid-template-columns: 1fr; }  
 .stats-grid { grid-template-columns: repeat(2,1fr); }  
 .cf-row { grid-template-columns: 1fr; }  
 .testi-card { min-width: calc(100% - 0px); }  
 .footer-grid { grid-template-columns: 1fr; }  
 .hero-section { height: auto; min-height: 80vh; }  
 .chat-widget { width: calc(100vw - 48px); }  
 .footer-bottom { flex-direction: column; }  
 .fb-badges { justify-content: flex-start; }  
}  
@media(max-width:480px){  
 .stats-grid { grid-template-columns: 1fr 1fr; }  
 .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 20px 12px; }  
 .slide-content h1 { font-size: 28px; }  
 .section { padding: 64px 0; }  
 .trust-logos { gap: 24px; }  
 .compat-icons { gap: 20px; }  
}  