/* ══════════════════════════════════════════
   SICOLA ESSENTIAL — Security Camera Store
   Dark · Techy · Premium
   ══════════════════════════════════════════ */

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a28;
  --bg-surface: #16161f;
  --accent: #00d4ff;
  --accent-dim: #0099bb;
  --accent-glow: rgba(0,212,255,0.15);
  --accent-green: #00ff88;
  --text-primary: #e8e8f0;
  --text-secondary: #8888a0;
  --text-muted: #555570;
  --border: #1e1e30;
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #0f1923 50%, #0a0a0f 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(0,212,255,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(30,30,48,0.6);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(10,10,15,0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.25rem; color: #fff; }
.nav-logo svg { width: 38px; height: 38px; }
.nav-logo .logo-accent { color: var(--accent); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.02em; position: relative; padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent); color: #000; padding: 10px 24px;
  border-radius: 8px; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.03em; transition: var(--transition); border: none; cursor: pointer;
}
.nav-cta:hover { background: #fff; color: #000; box-shadow: 0 0 20px rgba(0,212,255,0.3); }

.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-hero);
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-video-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.25;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(8,8,14,0.96) 0%, rgba(10,18,28,0.93) 50%, rgba(8,8,14,0.96) 100%);
}
.story-video-section {
  padding: 80px 0;
  background: var(--bg-card);
}
.story-video-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story-video-wrapper video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.story-text h2 { font-size: 2rem; margin-bottom: 16px; }
.story-text p { color: var(--text-secondary); margin-bottom: 12px; line-height: 1.7; }
@media (max-width: 768px) {
  .story-video-wrapper { grid-template-columns: 1fr; }
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 40%, rgba(0,212,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 30% 60%, rgba(0,255,136,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px; padding: 6px 16px; font-size: 0.78rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #c8c8e0 50%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem; color: var(--text-secondary); max-width: 520px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #000; padding: 14px 32px;
  border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.02em; transition: var(--transition); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #fff; box-shadow: 0 0 30px rgba(0,212,255,0.3); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--text-primary); padding: 14px 32px;
  border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--border); transition: var(--transition); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-camera-showcase {
  position: relative; width: 100%; max-width: 560px; aspect-ratio: 1;
}
.hero-camera-img {
  width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius);
  filter: drop-shadow(0 20px 60px rgba(0,212,255,0.15));
  animation: floatCamera 6s ease-in-out infinite;
}
@keyframes floatCamera {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-stat-cards {
  position: absolute; bottom: 0; left: -30px; right: -30px;
  display: flex; gap: 12px; justify-content: center;
}
.hero-stat {
  background: rgba(18,18,26,0.9); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 18px; text-align: center; min-width: 110px;
}
.hero-stat .val { font-size: 1.3rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); }
.hero-stat .label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ─── TRUST BAR ─── */
.trust-bar {
  padding: 48px 0; border-bottom: 1px solid var(--border);
  background: var(--bg-dark);
}
.trust-inner { text-align: center; }
.trust-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 24px;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
  opacity: 0.5;
}
.trust-logos span {
  font-size: 1.1rem; font-weight: 700; color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px;
}
.section-tag svg { width: 16px; height: 16px; }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  margin-bottom: 16px; color: #fff;
}
.section-header p { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ─── CATEGORIES ─── */
.categories-section { padding: 100px 0; background: var(--bg-dark); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.cat-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transition: transform var(--transition);
}
.cat-card:hover { background: var(--bg-card-hover); border-color: rgba(0,212,255,0.2); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon { font-size: 2.5rem; margin-bottom: 16px; }
.cat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.cat-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.cat-count {
  display: inline-block; margin-top: 12px; font-size: 0.72rem; font-weight: 600;
  color: var(--accent); background: rgba(0,212,255,0.08); padding: 4px 12px; border-radius: 12px;
}

/* ─── FEATURED PRODUCTS ─── */
.featured-section { padding: 100px 0; background: var(--bg-surface); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.product-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-6px); box-shadow: var(--shadow-glow); }

.product-badge {
  position: absolute; top: 16px; left: 16px; z-index: 5;
  background: var(--accent); color: #000; padding: 4px 12px;
  border-radius: 6px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-img-wrap {
  position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img {
  width: 85%; height: 85%; object-fit: contain; transition: transform var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-brand {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 6px;
}
.product-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #fff; line-height: 1.3; }
.product-specs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.spec-tag {
  font-size: 0.68rem; padding: 3px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.04); color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.06);
}
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.stars { color: #fbbf24; font-size: 0.85rem; }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }
.product-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
}
.product-price { font-size: 1.25rem; font-weight: 800; color: #fff; font-family: var(--font-mono); }
.product-price .was { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; font-weight: 400; margin-left: 8px; }
.btn-add {
  background: var(--accent); color: #000; border: none; padding: 10px 18px;
  border-radius: 8px; font-weight: 700; font-size: 0.8rem; cursor: pointer;
  transition: var(--transition);
}
.btn-add:hover { background: #fff; }

/* ─── FEATURES ─── */
.features-section { padding: 100px 0; background: var(--bg-dark); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; transition: var(--transition);
}
.feature-card:hover { border-color: rgba(0,212,255,0.2); background: var(--bg-card-hover); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── COMPARISON TABLE ─── */
.comparison-section { padding: 100px 0; background: var(--bg-surface); }
.comparison-table {
  width: 100%; border-collapse: collapse; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.comparison-table thead { background: rgba(0,212,255,0.06); }
.comparison-table th {
  padding: 16px 20px; text-align: left; font-size: 0.8rem;
  font-weight: 700; color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em; border-bottom: 1px solid var(--border);
}
.comparison-table td {
  padding: 14px 20px; font-size: 0.88rem; color: var(--text-secondary);
  border-bottom: 1px solid rgba(30,30,48,0.5);
}
.comparison-table tr:hover td { background: rgba(0,212,255,0.02); color: var(--text-primary); }
.comparison-table .check { color: var(--accent-green); font-weight: 700; }
.comparison-table .cross { color: var(--text-muted); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 100px 0; background: var(--bg-dark); }
.testimonial-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; position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-size: 4rem; color: rgba(0,212,255,0.08); font-family: serif; line-height: 1;
}
.testimonial-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #000;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: #fff; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); }

/* ─── CTA BANNER ─── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1520 0%, #0f1923 40%, #0a0a0f 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 70%);
}
.cta-content {
  text-align: center; position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
}
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 20px; }
.cta-content p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 36px; }

/* ─── FOOTER ─── */
.footer {
  padding: 60px 0 30px; background: var(--bg-dark);
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 12px; line-height: 1.6; max-width: 300px; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 0.85rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--text-muted); font-size: 1.1rem; transition: color var(--transition); }
.footer-social a:hover { color: var(--accent); }

/* ─── PRODUCTS PAGE ─── */
.page-header {
  padding: 120px 0 60px;
  background: var(--gradient-hero); text-align: center;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-header p { color: var(--text-secondary); font-size: 1.05rem; }

.filter-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 24px 0; margin-bottom: 40px;
}
.filter-btn {
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary);
  padding: 8px 20px; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); color: #000; border-color: var(--accent);
}
.sort-select {
  margin-left: auto; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); padding: 8px 16px; border-radius: 8px;
  font-size: 0.82rem; font-family: var(--font); cursor: pointer;
}

/* ─── ABOUT PAGE ─── */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7; }
.about-visual {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; text-align: center; font-size: 4rem;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; text-align: center;
}
.stat-card .num { font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); }
.stat-card .label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ─── CONTACT PAGE ─── */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); padding: 12px 16px; border-radius: 8px;
  font-family: var(--font); font-size: 0.9rem; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.info-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,212,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.info-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-camera-showcase { max-width: 400px; margin: 0 auto; }
  .hero-stat-cards { left: 0; right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .comparison-table { display: block; overflow-x: auto; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: rgba(10,10,15,0.98);
    padding: 24px; gap: 16px; border-bottom: 1px solid var(--border);
  }
  .hero-stat-cards { flex-direction: column; align-items: center; }
  .hero-stat { width: 100%; max-width: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .sort-select { margin-left: 0; }
}

/* ─── HOME STATS SECTION ─── */
.stats-section { padding: 60px 0 0; }
.stats-section .stats-row { margin-top: 0; }

/* ─── NEWSLETTER ─── */
.newsletter-section { padding: 60px 0; }
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 48px;
}
.newsletter-text h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.newsletter-text p { color: var(--text-secondary); font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 12px; flex-shrink: 0; }
.newsletter-form input {
  padding: 12px 20px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--bg-dark); color: var(--text-primary); font-size: 0.9rem;
  width: 280px; outline: none; transition: border var(--transition);
}
.newsletter-form input:focus { border-color: var(--accent); }
@media (max-width: 768px) {
  .newsletter-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .newsletter-form input { width: 100%; }
}

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── LOADING SHIMMER ─── */
.shimmer {
  background: linear-gradient(90deg, var(--bg-card) 0%, var(--bg-card-hover) 50%, var(--bg-card) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── LIVE FEED INDICATOR ─── */
.live-indicator {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700; color: #ff4444; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ff4444;
  animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}

/* Grid animation */
.grid-bg {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(0,212,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ─── HERO CENTERED LAYOUT (replaces grid) ─── */
.hero-content-centered {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 100px 0 60px;
}
.hero-content-centered .hero-badge { margin-bottom: 24px; }
.hero-content-centered h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem); font-weight: 900;
  line-height: 1.05; margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #c8c8e0 50%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content-centered p {
  font-size: 1.2rem; color: var(--text-secondary); max-width: 600px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-content-centered .hero-actions { justify-content: center; margin-bottom: 48px; }
.hero-stat-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero-stat-row .hero-stat {
  background: rgba(18,18,26,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 24px; text-align: center; min-width: 120px;
}
.hero-video-bg { opacity: 0.15; }

/* ─── CATEGORY SVG ICONS ─── */
.cat-icon-svg {
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.cat-icon-svg svg { width: 48px; height: 48px; }

/* ─── FEATURE SVG ICONS ─── */
.feature-icon-svg {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-svg svg { width: 32px; height: 32px; }

/* ─── TESTIMONIAL STARS ─── */
.testimonial-stars {
  color: #fbbf24; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px;
}

/* ─── STORY VIDEO CONTAINER ─── */
.story-video-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.story-video-container video {
  width: 100%; display: block;
}

@media (max-width: 968px) {
  .hero-content-centered { padding: 60px 0 40px; }
  .hero-stat-row .hero-stat { min-width: 100px; padding: 12px 16px; }
}
@media (max-width: 640px) {
  .hero-stat-row { flex-direction: column; align-items: center; }
  .hero-stat-row .hero-stat { width: 100%; max-width: 200px; }
}

/* ===== PROMO VIDEO SECTION ===== */
.promo-video-section {
  padding: var(--spacing-section) 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
}
.promo-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.15), 0 0 120px rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin-top: 2.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.promo-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
.promo-video-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  pointer-events: none;
}
.promo-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.4);
  backdrop-filter: blur(10px);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
}
