/* ==========================================================================
   VVSignage Belize - Official Landing Page Stylesheet
   Domain: signage.vvstechnologies.bz
   Sub-branch of VVS Technologies (vvstechnologies.bz)
   
   Design System Specifications:
   - Font Family: Poppins (Google Fonts: 300, 400, 500, 600, 700, 800, 900)
   - Spacing: Strict 8px Grid System (8, 16, 24, 32, 40, 48, 64, 80, 96, 120px)
   - Theme: High-Contrast Dark OLED / Midnight Display Aesthetic with Luminous Accents
   - CSS Variables for all colors & theme switching
   - Accessibility: Full prefers-reduced-motion compliance & WCAG AA+ contrast
   - Zero emojis: 100% Crisp Scalable Vector Graphics (SVG)
   ========================================================================== */

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

:root {
  /* Typography */
  --font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Theme Surfaces - Midnight & OLED Display */
  --bg-main: #090D14;              /* Deepest Obsidian Base */
  --bg-surface: #101623;           /* Elevated surface / Glass layer */
  --bg-surface-elevated: #182236;  /* High elevation cards */
  --bg-card: #131B2A;              /* Card base */
  --bg-card-hover: #1A253A;        /* Card hover state */
  --bg-glass: rgba(16, 22, 35, 0.88);
  --bg-glass-card: rgba(19, 27, 42, 0.75);
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.22);
  --border-glow-cyan: rgba(6, 182, 212, 0.35);
  --border-glow-blue: rgba(37, 99, 235, 0.4);

  /* Brand Accents - Vibrant Signage Signals */
  --cyan: #06B6D4;                 /* Electric Signage Cyan */
  --cyan-light: #67E8F9;
  --cyan-dark: #0891B2;
  --cyan-glow: rgba(6, 182, 212, 0.25);

  --blue: #2563EB;                 /* Vivid Cobalt / Digital Primary */
  --blue-light: #60A5FA;
  --blue-dark: #1D4ED8;
  --blue-glow: rgba(37, 99, 235, 0.3);

  --emerald: #10B981;              /* 100% Offline Ready / Success */
  --emerald-light: #34D399;
  --emerald-dark: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.25);

  --amber: #F59E0B;                /* Golden Star / Warning / Special */
  --amber-light: #FCD34D;
  --amber-dark: #D97706;
  --amber-glow: rgba(245, 158, 11, 0.25);

  --vvs-gold: #C5A880;             /* VVS Parent Brand Warm Gold */
  --vvs-gold-light: #DFD4C3;
  --vvs-gold-glow: rgba(197, 168, 128, 0.25);

  --danger: #EF4444;               /* Network alert / urgent */
  --danger-light: #FCA5A5;
  --danger-glow: rgba(239, 68, 68, 0.25);

  /* High-Contrast Text Tokens */
  --text-primary: #F8FAFC;         /* Crisp near-white */
  --text-secondary: #CBD5E1;       /* Light Slate readable */
  --text-muted: #94A3B8;          /* Slate 400 */
  --text-dim: #64748B;            /* Slate 500 */
  --text-inverted: #090D14;        /* Dark for light badges */

  /* 8px Grid Spacing Variables */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-15: 120px;

  /* Corner Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 16px 36px -8px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-subtle);
  --shadow-card-hover: 0 24px 48px -12px rgba(6, 182, 212, 0.2), 0 0 0 1px var(--cyan);
  --shadow-tv: 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.12);
  --shadow-glow-cyan: 0 0 40px var(--cyan-glow);
  --shadow-glow-blue: 0 0 40px var(--blue-glow);
}

/* ==========================================================================
   Base Reset & Global Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* Accessibility: Strict Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Accessible Skip Link */
.skip-link {
  position: absolute;
  top: -999px;
  left: var(--space-2);
  background: var(--cyan);
  color: var(--text-inverted);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 10000;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-2);
}

/* Container & 8px Grid Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
}

.section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }
}

.section-alt {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-dark {
  background-color: #06090F;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ==========================================================================
   Section Header Typography
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-8) auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 6px 16px;
  background-color: rgba(6, 182, 212, 0.12);
  color: var(--cyan-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.section-badge.gold {
  background-color: rgba(197, 168, 128, 0.14);
  color: var(--vvs-gold-light);
  border-color: rgba(197, 168, 128, 0.35);
}

.section-badge.emerald {
  background-color: rgba(16, 185, 129, 0.14);
  color: var(--emerald-light);
  border-color: rgba(16, 185, 129, 0.35);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
}

.section-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan-light) 0%, var(--blue-light) 50%, var(--emerald-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-gold {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--vvs-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Header & Sub-Brand Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  min-height: 80px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

/* Sub-branch pill connecting to vvstechnologies.bz */
.parent-subbrand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-full);
  color: var(--vvs-gold-light);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.parent-subbrand-pill:hover {
  background: rgba(197, 168, 128, 0.22);
  border-color: var(--vvs-gold);
  color: #FFFFFF;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: var(--space-1) 0;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link.external {
  color: var(--vvs-gold-light);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.mobile-toggle {
  display: none;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: var(--space-1);
  cursor: pointer;
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Fat Modern Action Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-family);
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan-light);
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-2px);
}

.btn-vvs {
  background: rgba(197, 168, 128, 0.15);
  color: var(--vvs-gold-light);
  border: 1px solid rgba(197, 168, 128, 0.4);
}

.btn-vvs:hover {
  background: var(--vvs-gold);
  color: var(--text-inverted);
  border-color: var(--vvs-gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-dark:hover {
  background: #24324D;
  border-color: var(--cyan);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Icon Chips (Strictly Crisp SVGs)
   ========================================================================== */
.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan-light);
  border: 1px solid rgba(6, 182, 212, 0.25);
  flex-shrink: 0;
}

.icon-chip.blue {
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-light);
  border-color: rgba(37, 99, 235, 0.3);
}

.icon-chip.emerald {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-light);
  border-color: rgba(16, 185, 129, 0.3);
}

.icon-chip.amber {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-light);
  border-color: rgba(245, 158, 11, 0.3);
}

.icon-chip.gold {
  background: rgba(197, 168, 128, 0.15);
  color: var(--vvs-gold-light);
  border-color: rgba(197, 168, 128, 0.3);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: var(--space-10);
  padding-bottom: var(--space-12);
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
              var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-3);
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  font-weight: 400;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item svg {
  color: var(--emerald-light);
  flex-shrink: 0;
}

/* ==========================================================================
   Physical TV Mockup (Realistic 4K Bezel)
   ========================================================================== */
.tv-bezel {
  background: #0D131F;
  border-radius: 18px;
  padding: 12px 12px 24px 12px;
  box-shadow: var(--shadow-tv);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.tv-camera-dot {
  width: 6px;
  height: 6px;
  background: #334155;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.tv-screen-glass {
  background: #020617;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tv-stand {
  width: 130px;
  height: 12px;
  background: #1A2234;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
}

/* Split Display Zones inside TV Mockup */
.mock-split-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  grid-template-rows: 1fr auto;
  height: 100%;
  background: #020617;
}

.mock-zone-video {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(37, 99, 235, 0.25)), #08101E;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.mock-zone-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.2), transparent 70%);
  pointer-events: none;
}

.mock-zone-sidebar {
  grid-column: 2;
  grid-row: 1;
  background: #0A111F;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-zone-ticker {
  grid-column: 1 / -1;
  grid-row: 2;
  background: #040812;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Interactive TV & Tablet Simulator
   ========================================================================== */
.simulator-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}

.simulator-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}

.sim-industry-tabs {
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
}

.sim-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.15s ease;
}

.sim-tab-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.sim-tab-btn.active {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--cyan);
  color: var(--cyan-light);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.sim-display-container {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-4);
  align-items: stretch;
}

.sim-tv-screen {
  background: #030712;
  border: 2px solid #1F293D;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  min-height: 420px;
}

.sim-screen-header {
  background: #0B1323;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.sim-screen-body {
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.sim-main-content {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.08), transparent 70%), #050B17;
}

.sim-side-content {
  padding: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: #08101E;
}

.sim-widget-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
}

.sim-ticker-bar {
  background: #020610;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #38BDF8;
}

/* Tablet Remote Panel */
.sim-tablet-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sim-tablet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-subtle);
}

.sim-remote-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border-medium);
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  text-align: left;
  transition: all 0.15s ease;
}

.sim-remote-btn:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.25);
}

.sim-remote-btn.red {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: var(--danger-light);
}

.sim-remote-btn.amber {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--amber-light);
}

.sim-remote-btn.blue {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--blue-light);
}

.sim-remote-btn.emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--emerald-light);
}

/* ==========================================================================
   Bento Grid: What All We Offer
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.bento-card.span-2 {
  grid-column: span 2;
}

.bento-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-3);
}

.bento-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan-light);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  letter-spacing: -0.02em;
}

.bento-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.bento-visual-box {
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.bento-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.bento-status-pill.success {
  background: rgba(16, 185, 129, 0.18);
  color: var(--emerald-light);
}

.bento-status-pill.danger {
  background: rgba(239, 68, 68, 0.18);
  color: var(--danger-light);
}

/* ==========================================================================
   Why Us & Head-to-Head Comparison
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition: all 0.2s ease;
}

.why-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.why-card-top {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Comparison Table */
.comparison-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: #0A111F;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.comparison-table th.col-winner,
.comparison-table td.col-winner {
  background: rgba(6, 182, 212, 0.05);
  border-left: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.comparison-table th.col-winner {
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 800;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-light);
  font-weight: 700;
}

.cross-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-weight: 500;
}

/* ==========================================================================
   Industry Solutions Cards
   ========================================================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  transition: all 0.2s ease;
}

.solution-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.solution-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.solution-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.solution-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.solution-checklist svg {
  color: var(--emerald-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Ad-Network Hero Banner */
.ad-network-box {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(37, 99, 235, 0.18) 100%), #0A1426;
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-4);
  align-items: center;
}

.ad-stat-card {
  background: rgba(3, 7, 18, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  text-align: center;
}

.ad-stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--emerald-light);
  letter-spacing: -0.03em;
}

.ad-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ==========================================================================
   Pricing Section & Cards
   ========================================================================== */
.pricing-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.toggle-pill-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.currency-btn {
  background: none;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-family);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
}

.currency-btn.active {
  background: var(--cyan);
  color: var(--text-inverted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
}

.pricing-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.08) 0%, var(--bg-card) 40%);
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.15);
}

.featured-pill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--text-inverted);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.pricing-plan-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-plan-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  min-height: 38px;
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.pricing-price-wrap {
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-amount {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-period {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-4);
  flex: 1;
}

.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-feature-list svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Interactive Quote Estimator & Demo Booking Section
   ========================================================================== */
.quote-demo-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-4);
  align-items: start;
}

.quote-calculator-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
}

.quote-calc-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-subtle);
}

.calc-row {
  margin-bottom: var(--space-3);
}

.calc-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  display: flex;
  justify-content: space-between;
}

.calc-select, .calc-range {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 14px;
}

.calc-summary-card {
  background: #060B14;
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-top: var(--space-4);
}

.calc-total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-1);
}

.calc-total-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan-light);
}

/* Contact Form Panel */
.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-2);
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 14px;
  transition: all 0.15s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.form-textarea {
  min-height: 90px;
  resize: vertical;
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--space-3);
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--emerald);
  color: var(--emerald-light);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--danger);
  color: var(--danger-light);
}

/* Direct Local Support Panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition: all 0.2s ease;
}

.contact-item:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.contact-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-text p, .contact-text a {
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
}

.contact-text a:hover {
  color: var(--cyan-light);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-icon-rotator {
  transition: transform 0.2s ease;
  color: var(--cyan);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-rotator {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Semantic Footer & VVS Sub-Branch Info
   ========================================================================== */
.site-footer {
  background-color: #05080E;
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-10);
  padding-bottom: var(--space-6);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: var(--space-2);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 12.5px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald-light);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-card.span-2 {
    grid-column: span 1;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quote-demo-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-medium);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4);
    gap: var(--space-3);
    transform: translateY(-150%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }
  
  .nav-menu.open {
    transform: translateY(0);
  }
  
  .sim-display-container {
    grid-template-columns: 1fr;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .ad-network-box {
    grid-template-columns: 1fr;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
