/* ==========================================================================
   SIREN IPTV - APPLE LIQUID GLASS DESIGN SYSTEM (MULTI-PAGE & SEO EDITION)
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Apple Liquid Glass Muted Color Palette */
  --bg-base: #08090b;
  --bg-deep: #050506;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-nav: rgba(255, 255, 255, 0.04);
  
  /* Glass Specular Border Highlights */
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-glass-light: 1px solid rgba(255, 255, 255, 0.15);
  --border-glass-glow: 1px solid rgba(255, 255, 255, 0.25);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #9aa0a6;
  --text-muted: #64686c;
  
  /* Muted Luxury Accent Colors */
  --accent-blue: #3a75c4;
  --accent-blue-rgb: 58, 117, 196;
  --accent-purple: #704da8;
  --accent-cyan: #3b979c;
  --accent-red: #d33c40; /* For Emergency Alert */
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elastic: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-base);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Hide SVG filter container */
.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Muted Dynamic Background Gradients */
.mesh-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  background-color: var(--bg-deep);
  pointer-events: none;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.16;
  mix-blend-mode: screen;
  animation: float-blob 25s infinite alternate ease-in-out;
}

.blob-1 {
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(var(--accent-blue-rgb), 0.7) 0%, rgba(58,117,196,0) 70%);
  animation-duration: 28s;
}

.blob-2 {
  bottom: -15%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(112,77,168,0.6) 0%, rgba(112,77,168,0) 70%);
  animation-duration: 32s;
}

.blob-3 {
  top: 40%;
  left: 30%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(59,151,156,0.5) 0%, rgba(59,151,156,0) 70%);
  animation-duration: 22s;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 8%) scale(1.1); }
  100% { transform: translate(-4%, -5%) scale(0.95); }
}

/* Glass panel background */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: var(--border-glass);
  border-top: var(--border-glass-light);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  position: relative;
  transform: translateY(0);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-top: var(--border-glass-glow);
  box-shadow: 
    0 15px 35px -8px rgba(0, 0, 0, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

/* Key feature cards highlight (glowing borders, background saturation) */
.glass-card.key-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(var(--accent-blue-rgb), 0.5);
  border-left: 1px solid rgba(var(--accent-blue-rgb), 0.15);
  border-right: 1px solid rgba(var(--accent-blue-rgb), 0.15);
  box-shadow: 
    0 12px 35px -8px rgba(var(--accent-blue-rgb), 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.glass-card.key-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(var(--accent-blue-rgb), 0.85);
  box-shadow: 
    0 18px 40px -6px rgba(var(--accent-blue-rgb), 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.glass-card.key-feature-card .card-icon {
  color: #5895e6;
  text-shadow: 0 0 15px rgba(var(--accent-blue-rgb), 0.4);
}

/* ==========================================================================
   LIQUID GLASS HEADER (FIXED CRISP NAVIGATION TEXT)
   ========================================================================== */
.liquid-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 100;
  transition: var(--transition-smooth);
}

/* Outer layout wrapper - contains no backgrounds or filters */
.header-inner {
  position: relative;
  border-radius: 40px;
  padding: 12px 24px 12px 28px;
  overflow: visible;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Dynamic background plate - gets the SVG liquid filter and blurs */
.header-glass-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-nav);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  filter: url(#liquid-glass-filter); /* Warps background plate ONLY */
  border: var(--border-glass);
  border-top: var(--border-glass-light);
  border-radius: 40px;
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.45),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
  z-index: 1;
  pointer-events: none;
}

/* Foreground content container - remains 100% crisp and readable */
.header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.liquid-header.scrolled {
  top: 12px;
  max-width: 950px;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.logo-text span {
  color: var(--text-secondary);
  font-weight: 300;
  margin-left: 2px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 8px;
}

/* Navbar container */
.liquid-nav {
  position: relative;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.25);
  border: var(--border-glass);
  padding: 4px;
}

.liquid-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  position: relative;
  z-index: 2;
}

.liquid-nav ul li a {
  display: block;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.liquid-nav ul li a:hover,
.liquid-nav ul li a.active-link {
  color: var(--text-primary);
}

/* Sliding active pill indicator background */
.nav-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  z-index: 1;
  transition: var(--transition-elastic);
  pointer-events: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Liquid Glass CTAs & Buttons */
.btn-demo {
  background: rgba(255, 255, 255, 0.08);
  border: var(--border-glass-light);
  color: var(--text-primary);
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.2),
    inset 0 1px 1px rgba(255,255,255,0.08);
}

.btn-demo:hover {
  background: rgba(255, 255, 255, 0.15);
  border: var(--border-glass-glow);
  box-shadow: 
    0 6px 16px rgba(0,0,0,0.3),
    inset 0 1px 2px rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition-smooth);
  cursor: pointer;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 100%);
  border: var(--border-glass-light);
  color: var(--text-primary);
  box-shadow: 
    0 4px 15px rgba(0,0,0,0.3),
    inset 0 1px 1px rgba(255,255,255,0.1);
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.06) 100%);
  border: var(--border-glass-glow);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 22px rgba(0,0,0,0.4),
    inset 0 1px 2px rgba(255,255,255,0.2);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  border: var(--border-glass-light);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Dynamic SEO Notification Badge */
.seo-badge {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 117, 196, 0.08);
  border: 1px solid rgba(58, 117, 196, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #c4d7f0;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
}

.seo-badge.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -20px);
}

.badge-icon {
  animation: glow-pulse 2s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
  0% { text-shadow: 0 0 4px rgba(var(--accent-blue-rgb), 0.3); opacity: 0.7; }
  100% { text-shadow: 0 0 12px rgba(var(--accent-blue-rgb), 0.9); opacity: 1; }
}

/* ==========================================================================
   SUBPAGE HEADER / HERO STYLING
   ========================================================================== */
.subpage-hero {
  padding: 140px 0 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);
  position: relative;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.breadcrumbs a:hover {
  color: var(--text-primary);
}

.breadcrumbs i {
  font-size: 0.7rem;
}

.subpage-hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #ffffff 40%, #a1a1a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.subpage-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 750px;
}

/* ==========================================================================
   HARDWARE SOLUTIONS CATALOG PAGE STYLES (ALIGNMENT IMPROVEMENTS)
   ========================================================================== */
.catalog-section {
  padding: 60px 0 100px 0;
}

/* Filters Tabs layout */
.catalog-filters-container {
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.catalog-filters {
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-glass);
  border-top: var(--border-glass-light);
  color: var(--text-secondary);
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.filter-tab.active {
  background: rgba(255, 255, 255, 0.08);
  border-top: var(--border-glass-glow);
  color: var(--text-primary);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Products catalog grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

/* Elegant product card with strictly aligned sections */
/* Elegant product card with strictly aligned sections */
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(58, 117, 196, 0.3);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.product-media {
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--accent-blue);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.product-media i {
  transition: transform 0.3s ease;
}

.product-card:hover .product-media i {
  transform: scale(1.05);
}

.product-category-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10, 10, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Glowing brand chips */
.product-brand-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.product-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Spec Tables with clean dividers */
.spec-table-container {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  margin-top: auto;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.76rem;
}

.spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 6px 0;
}

.spec-label {
  color: var(--text-secondary);
  opacity: 0.65;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
}

.spec-val {
  color: var(--text-primary);
  text-align: right;
  font-weight: 450;
}

.btn-inquire {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.product-card:hover .btn-inquire {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(58, 117, 196, 0.25);
}

/* ==========================================================================
   DEDICATED SEO BLOG-DETAIL STYLING
   ========================================================================== */
.blog-detail-section {
  padding: 60px 0 100px 0;
}

.blog-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.blog-detail-content {
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.blog-detail-content h2 {
  font-size: 2rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.blog-detail-content h3 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.blog-detail-content h4 {
  font-size: 1.25rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.blog-detail-content p {
  margin-bottom: 22px;
}

.blog-detail-content ul, 
.blog-detail-content ol {
  margin-left: 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-detail-content li {
  color: var(--text-secondary);
}

.blog-detail-content strong {
  color: #fff;
}

/* Sidebar styling */
.blog-detail-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: var(--border-glass);
  border-top: var(--border-glass-light);
  border-radius: 16px;
  padding: 24px;
}

.sidebar-widget h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.related-posts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-post-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.related-post-item a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

.related-post-item a:hover {
  color: var(--accent-blue);
}

.related-post-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Article metadata block in body */
.article-meta-card {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.article-meta-card span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta-card i {
  color: var(--accent-blue);
}

/* ==========================================================================
   HERO / MAIN CONTENT SECTIONS
   ========================================================================== */
.hero-section {
  padding: 160px 0 80px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-glass);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-info h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #ffffff 30%, #a1a1a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-info p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.compatibility-row {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.brand-icons-mini {
  display: flex;
  gap: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.brand-icons-mini span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* TV Simulator */
.hero-simulator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  perspective: 1000px;
}

.tv-frame {
  width: 100%;
  max-width: 460px;
  background: #1c1d22;
  border: 10px solid #141518;
  border-radius: 24px;
  box-shadow: 
    0 30px 60px -20px rgba(0,0,0,0.8),
    inset 0 2px 5px rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
}
.tv-screen {
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Demo interaktif: iframe Flutter (demo.siren.citranagakencana.com)
   menggantikan mockup HTML saat mode `demo-live` aktif. Absolute inset:0
   agar otomatis mengikuti kontainer tv-screen (termasuk fullscreen). */
.demo-frame-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: #000;
  z-index: 5; /* di atas tv-view mockup, di bawah tv-fs-btn (z-index:99) */
}
#tv-screen.demo-live .demo-frame-wrap {
  display: block;
}
#tv-screen.demo-live .tv-view {
  display: none;
}
.demo-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
/* Loading overlay untuk iframe Flutter. Default visible (display:flex) — JS
   menyembunyikannya via style.display='none' saat iframe memancarkan event
   'load' (siap) atau 'error' (gagal -> fallback ke poster). */
.demo-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.85);
  background: radial-gradient(ellipse at center, #0f1733 0%, #02030a 100%);
  pointer-events: none;
  transition: opacity 220ms ease;
}
.demo-loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.demo-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #ff6b35;
  animation: demo-spin 0.9s linear infinite;
}
.demo-loading-text {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
@keyframes demo-spin {
  to { transform: rotate(360deg); }
}

/* Fullscreen trigger layout */
.tv-fs-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 11, 14, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  outline: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
  z-index: 99; /* Higher than tv-views */
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.4),
    inset 0 1px 1px rgba(255,255,255,0.1);
}

.tv-fs-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* TV screen overlays */
.tv-screen::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 10;
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  opacity: 0.4;
}

.tv-screen::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 80%);
  z-index: 11;
  pointer-events: none;
}

/* Virtual TV Views */
.tv-view {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.tv-view.active {
  opacity: 1;
  pointer-events: auto;
}

/* Welcome Screen View */
.view-welcome {
  background: linear-gradient(135deg, #0f1013 0%, #1e2129 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.tv-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 6px;
}

.welcome-box {
  margin: auto 0;
  text-align: left;
}

.welcome-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.welcome-msg {
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.4;
  transition: var(--transition-smooth);
}

.welcome-hint {
  font-size: 0.55rem;
  color: var(--text-muted);
  font-style: italic;
  transition: var(--transition-smooth);
}

/* Ad Banner overlay in TV */
.tv-ad-banner {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.tv-ad-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.ad-badge {
  background: var(--accent-blue);
  color: #fff;
  font-size: 0.45rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.ad-content {
  font-size: 0.6rem;
  color: #fff;
  font-weight: 500;
  transition: var(--transition-smooth);
}

/* Screensaver Mock View */
.view-screensaver {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 4;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.view-screensaver.active {
  display: flex !important;
}

.screensaver-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.screensaver-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cms.siren.citranagakencana.com/public/images/banner_promo_spa.png'), url('images/vod_library_mockup.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.screensaver-time-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 2;
  text-align: left;
  animation: pulseGlow 4s infinite ease-in-out;
}

.screensaver-time {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.screensaver-date {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 2px;
}

.screensaver-hint {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); }
}

/* Live TV View */
.view-livetv {
  background: #000;
}

.tv-video-player {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #151d38, #2a1140);
  animation: test-broadcast 10s infinite alternate ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes test-broadcast {
  0% { filter: hue-rotate(0deg) saturate(1); }
  100% { filter: hue-rotate(360deg) saturate(1.2); }
}

.channel-indicator {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.65);
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition-smooth);
}

.simulated-broadcast {
  color: rgba(255,255,255,0.65);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  animation: flicker-text 1.5s infinite alternate;
  transition: var(--transition-smooth);
}

@keyframes flicker-text {
  0% { opacity: 0.8; }
  100% { opacity: 0.4; }
}

.tv-epg-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  font-size: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: var(--transition-smooth);
}

.epg-now { color: #fff; }
.epg-next { color: var(--text-secondary); }

/* Emergency View */
.view-emergency {
  background: #2b0607;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.emergency-container {
  text-align: center;
  border: 2px solid var(--accent-red);
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  padding: 16px;
  animation: red-flash 1s infinite alternate;
  transition: var(--transition-smooth);
}

@keyframes red-flash {
  0% { box-shadow: 0 0 5px rgba(211,60,64,0.3); border-color: rgba(211,60,64,0.4); }
  100% { box-shadow: 0 0 20px rgba(211,60,64,0.9); border-color: rgba(211,60,64,1); }
}

.alert-icon {
  font-size: 1.8rem;
  color: var(--accent-red);
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.alert-title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.alert-desc {
  font-size: 0.6rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}

.alert-footer {
  font-size: 0.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

/* Premium Liquid Glass Remote Control Device */
.remote-control {
  background: rgba(15, 17, 20, 0.45);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 320px;
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

#inline-remote {
  display: none !important; /* Hidden in normal hero section */
}

.remote-control::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.remote-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 6px;
}

.remote-keys-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.remote-keys-row .key {
  flex: 1;
}

.remote-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* Circular D-pad track */
.remote-dpad {
  display: grid;
  grid-template-areas:
    ". up ."
    "left ok right"
    ". down .";
  grid-template-columns: repeat(3, 52px);
  grid-template-rows: repeat(3, 52px);
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 12px auto;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  padding: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: fit-content;
  box-shadow: 
    inset 0 2px 8px rgba(0,0,0,0.8),
    0 4px 10px rgba(0,0,0,0.3);
  position: relative;
}

.dpad-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.2),
    inset 0 1px 1px rgba(255,255,255,0.05);
}

.dpad-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255,255,255,0.1);
}

.dpad-btn.btn-up { grid-area: up; border-radius: 20px 20px 6px 6px; }
.dpad-btn.btn-left { grid-area: left; border-radius: 20px 6px 6px 20px; }
.dpad-btn.btn-right { grid-area: right; border-radius: 6px 20px 20px 6px; }
.dpad-btn.btn-down { grid-area: down; border-radius: 6px 6px 20px 20px; }

.dpad-btn.btn-ok {
  grid-area: ok;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #1e4bb0 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 
    0 4px 15px rgba(58, 117, 196, 0.4),
    inset 0 1px 1px rgba(255,255,255,0.2);
}
.dpad-btn.btn-ok:hover {
  background: linear-gradient(135deg, #4d8df5 0%, #295ec4 100%);
  box-shadow: 
    0 6px 20px rgba(58, 117, 196, 0.6),
    inset 0 1px 1px rgba(255,255,255,0.3);
  transform: scale(1.08);
}

.key {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border-radius: 14px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.key:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.btn-power {
  background: #3e1b1d;
  color: #f75c60;
  border-color: rgba(247,92,96,0.1);
}

.btn-power:hover {
  background: #5c2327;
  color: #ff888b;
}

.btn-alert {
  background: #2f2518;
  color: #fca130;
  border-color: rgba(252,161,48,0.1);
}

.btn-alert:hover {
  background: #44331e;
  color: #ffb459;
}

.btn-ad {
  background: #172a24;
  color: #3bca98;
  border-color: rgba(59,202,152,0.1);
}

.btn-ad:hover {
  background: #203e33;
  color: #5cfac2;
}

.btn-screensaver {
  background: #18233c;
  color: #5593e8;
  border-color: rgba(85, 147, 232, 0.1);
}

.btn-screensaver:hover {
  background: #23345c;
  color: #7ab3ff;
}

/* Active Glowing Indicators */
.key.active-glow {
  background: var(--glow-bg, #3f3f46) !important;
  color: var(--glow-color, #fff) !important;
  border-color: var(--glow-border, rgba(255,255,255,0.4)) !important;
  box-shadow: 0 0 12px var(--glow-shadow, rgba(255,255,255,0.2)) !important;
  animation: keyGlowPulse 2s infinite ease-in-out;
}

@keyframes keyGlowPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px var(--glow-shadow); }
  50% { transform: scale(1.05); box-shadow: 0 0 18px var(--glow-shadow); }
}

.btn-alert.active-glow {
  --glow-bg: #5c2327;
  --glow-color: #ff888b;
  --glow-border: rgba(247,92,96,0.4);
  --glow-shadow: rgba(247,92,96,0.6);
}

.btn-screensaver.active-glow {
  --glow-bg: #23345c;
  --glow-color: #7ab3ff;
  --glow-border: rgba(85, 147, 232, 0.4);
  --glow-shadow: rgba(85, 147, 232, 0.6);
}

.btn-ad.active-glow {
  --glow-bg: #203e33;
  --glow-color: #5cfac2;
  --glow-border: rgba(59,202,152,0.4);
  --glow-shadow: rgba(59,202,152,0.6);
}

.remote-instruction {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 8px;
}

/* ==========================================================================
   TV SIMULATOR FULLSCREEN OVERLAY MODE
   ========================================================================== */
/* ==========================================================================
   TV SIMULATOR FULLSCREEN OVERLAY MODE (Side-by-Side Console)
   ========================================================================== */
#hero-simulator.fullscreen-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(8, 9, 11, 0.96);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px;
}

#hero-simulator.fullscreen-active #inline-remote {
  display: flex !important;
  animation: fade-in-panel 0.5s ease-out forwards;
}

#hero-simulator.fullscreen-active .tv-frame {
  max-width: 960px;
  width: 58vw;
  border-width: 16px;
  border-radius: 36px;
  box-shadow: 0 45px 110px rgba(0,0,0,0.8);
}

#hero-simulator.fullscreen-active #tv-fs-btn {
  display: none !important;
}

/* Exit Fullscreen Floating Button */
.tv-close-fs-btn {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2010;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: var(--border-glass-light);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.tv-close-fs-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Scaling fonts in fullscreen TV overlay */
#hero-simulator.fullscreen-active .welcome-title {
  font-size: 3.2rem;
  margin-bottom: 16px;
}

#hero-simulator.fullscreen-active .welcome-msg {
  font-size: 1.6rem;
  margin-bottom: 24px;
  max-width: 800px;
}

#hero-simulator.fullscreen-active .welcome-hint {
  font-size: 1.1rem;
}

#hero-simulator.fullscreen-active .tv-status-bar {
  font-size: 1.2rem;
  padding-bottom: 14px;
}

#hero-simulator.fullscreen-active .channel-indicator {
  font-size: 1.4rem;
  padding: 10px 24px;
  border-radius: 16px;
  top: 32px;
  left: 32px;
}

#hero-simulator.fullscreen-active .simulated-broadcast {
  font-size: 2.2rem;
}

#hero-simulator.fullscreen-active .tv-epg-bar {
  padding: 16px 32px;
  font-size: 1.15rem;
  gap: 4px;
}

#hero-simulator.fullscreen-active .tv-ad-banner {
  padding: 14px 28px;
  border-radius: 14px;
  gap: 14px;
  transform: translateY(60px);
}

#hero-simulator.fullscreen-active .tv-ad-banner.show {
  transform: translateY(0);
}

#hero-simulator.fullscreen-active .ad-badge {
  font-size: 0.95rem;
  padding: 4px 10px;
}

#hero-simulator.fullscreen-active .ad-content {
  font-size: 1.2rem;
}

#hero-simulator.fullscreen-active .emergency-container {
  padding: 48px;
  border-radius: 24px;
  max-width: 900px;
}

#hero-simulator.fullscreen-active .alert-icon {
  font-size: 4.5rem;
  margin-bottom: 20px;
}

#hero-simulator.fullscreen-active .alert-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#hero-simulator.fullscreen-active .alert-desc {
  font-size: 1.45rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

#hero-simulator.fullscreen-active .alert-footer {
  font-size: 1.05rem;
}

/* ==========================================================================
   SECTIONS & LAYOUT GENERAL STRUCTURE
   ========================================================================== */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.text-center {
  text-align: center;
}

.glass-grid {
  display: grid;
  gap: 32px;
}

.card-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.glass-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.glass-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-icon {
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
  display: inline-block;
  opacity: 0.85;
}

/* Feature Showcase Layout */
.features-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.features-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-menu-item {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.feature-menu-item:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.feature-menu-item.active {
  background: rgba(255,255,255,0.06);
  border: var(--border-glass-light);
  color: var(--text-primary);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.feature-menu-item i {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  width: 24px;
  text-align: center;
}

.feature-menu-item.active i {
  color: var(--accent-blue);
}

.feature-menu-item h4 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.feature-menu-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Display panel */
.feature-display {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-display-content {
  animation: fade-in-panel 0.5s ease-out forwards;
}

.feature-display-content.hidden {
  display: none;
}

@keyframes fade-in-panel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-display h3 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.feature-display p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.feature-bullets {
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-bullets li i {
  color: var(--accent-blue);
  font-size: 1.1rem;
}

/* Sectors Grid Section */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.sector-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
}

.sector-icon {
  font-size: 2rem;
  color: var(--accent-blue);
}

.sector-card h3 {
  font-size: 1.35rem;
}

.sector-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.learn-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: var(--transition-smooth);
}

.sector-card:hover .learn-more {
  color: var(--text-primary);
}

/* Hardware Solutions (Index Preview Card list) */
.hardware-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.hardware-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hw-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
}

.hw-icon {
  font-size: 1.8rem;
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.hw-desc h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.hw-desc p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Brand display board */
.hardware-partners {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.hardware-partners h3 {
  font-size: 1.4rem;
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.brand-logo-card {
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-glass);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: var(--transition-smooth);
}

.brand-logo-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255,255,255,0.15);
}

.brand-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.brand-type {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hardware-assurance {
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  gap: 16px;
}

.assurance-icon {
  font-size: 1.8rem;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.hardware-assurance h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hardware-assurance p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Case Studies Slider */
.slider-container {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
}

.cases-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  opacity: 0.3;
  transform: scale(0.98);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-slide.active {
  opacity: 1;
  transform: scale(1);
}

.case-image-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 100%);
  border: var(--border-glass);
  border-top: var(--border-glass-light);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 4rem;
  color: var(--accent-blue);
  opacity: 0.8;
}

.case-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--bg-deep);
  border: var(--border-glass);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.case-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.case-location i {
  color: var(--accent-blue);
  margin-right: 4px;
}

.case-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-stats {
  display: flex;
  gap: 32px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.case-stats div {
  display: flex;
  flex-direction: column;
}

.case-stats strong {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--text-primary);
}

.case-stats span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 24px;
}

.slider-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 2.2rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  outline: none;
}

.slider-btn:hover {
  color: var(--text-primary);
  transform: scale(1.05);
}

/* Blog grid layouts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card h3 {
  font-size: 1.25rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.read-post {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: var(--transition-smooth);
}

.blog-card:hover .read-post {
  color: var(--text-primary);
  gap: 10px;
}

/* Contact forms */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-text h2 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-item i {
  font-size: 1.6rem;
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item h5 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 0.85rem;
}

.contact-form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

#lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-glass);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-glass-light);
  box-shadow: 
    0 0 10px rgba(58, 117, 196, 0.2),
    inset 0 1px 1px rgba(255,255,255,0.05);
}

.form-group select option {
  background: var(--bg-deep);
  color: var(--text-primary);
}

.success-message {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fade-in-panel 0.5s ease-out forwards;
}

.success-message i {
  font-size: 3rem;
  color: #3bca98;
}

.success-message h4 {
  font-size: 1.3rem;
}

.success-message p {
  font-size: 0.9rem;
}

.hidden {
  display: none !important;
}

/* Modals overlays */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 650px;
  position: relative;
  background: rgba(12, 13, 16, 0.9);
  max-height: 80vh;
  overflow-y: auto;
  animation: modal-enter 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modal-enter {
  from { transform: scale(0.95) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  padding: 8px 12px;
}

.modal-body h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  margin-top: 8px;
}

.modal-body .meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.modal-body ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.modal-body li {
  margin-bottom: 6px;
}

/* Footer elements */
.liquid-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px 0;
  background-color: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  background: rgba(255,255,255,0.03);
  border: var(--border-glass);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.social-links a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

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

.footer-links ul li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 992px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .hero-info {
    text-align: center;
    align-items: center;
  }
  
  .hero-badge {
    align-self: center;
  }
  
  .compatibility-row {
    justify-content: center;
  }
  
  .features-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hardware-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .hardware-partners {
    position: static;
  }
  
  .case-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .blog-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .blog-detail-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  /* Reduce container padding on mobile for more breathing room */
  .container {
    padding: 0 16px !important;
  }

  .liquid-header {
    width: calc(100% - 24px);
    top: 12px;
  }
  
  .liquid-nav {
    display: none; /* Simplified mobile display */
  }

  /* Header adjustments for extra small mobile screens */
  .header-inner {
    padding: 8px 16px !important;
  }
  .logo-text {
    font-size: 1.2rem !important;
  }
  .btn-demo {
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
  }
  
  .hero-section {
    padding: 120px 0 60px 0;
  }

  /* Hero CTA button stacking to prevent overflow */
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    margin-top: 16px !important;
  }
  .hero-actions .btn {
    width: 100% !important;
  }

  /* Compatibility tags wrapping to prevent horizontal scroll */
  .compatibility-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .brand-icons-mini {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  /* Sectors section grid responsive override (fix overflow) */
  .sectors-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Featured feature card padding override for mobile spacing */
  .featured-feature-card {
    padding: 24px !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hardware-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UPGRADE: INTERACTIVE TV SIMULATOR ELEMENTS & FEATURED HIGHLIGHTS
   ========================================================================== */

/* Interactive TV Menu Grid (Regular Mode) */
.tv-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.tv-menu-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.tv-menu-item i {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.tv-menu-item span {
  font-size: 0.68rem;
  font-weight: 500;
}

.tv-menu-item.focused {
  background: var(--accent-blue);
  border-color: #fff;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 0 15px rgba(58, 117, 196, 0.6);
}

.tv-menu-item.focused i {
  color: #fff;
}

/* VOD & Room Service inside TV Simulator */
.vod-container-tv, .rs-container-tv {
  display: flex;
  flex-direction: column;
  height: calc(100% - 35px); /* Subtract status bar */
  padding: 12px;
  background: linear-gradient(135deg, #090a0d 0%, #171a22 100%);
  justify-content: space-between;
}

.vod-container-tv h4, .rs-container-tv h4 {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 6px;
  margin-bottom: 4px;
}

.vod-grid-tv, .rs-grid-tv {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  justify-content: center;
}

.vod-item, .rs-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.7rem;
  transition: all 0.2s ease;
}

.rs-item {
  justify-content: space-between;
}

.vod-item.active, .rs-item.active {
  background: var(--accent-blue);
  border-color: #fff;
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(58, 117, 196, 0.5);
}

.vod-item i {
  font-size: 0.6rem;
  color: var(--text-muted);
}
.vod-item.active i {
  color: #fff;
}

.rs-item strong {
  font-weight: 700;
  font-size: 0.68rem;
  color: #5cfac2;
}
.rs-item.active strong {
  color: #fff;
}

.vod-footer-hint, .rs-footer-hint {
  font-size: 0.48rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 6px;
}

/* TV Notification Bar Overlay */
.tv-notification-bar {
  background: rgba(59, 202, 152, 0.95);
  border: 1px solid #fff;
  border-radius: 6px;
  color: #000;
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  animation: fade-in-panel 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

#vod-alert-bar {
  background: rgba(58, 117, 196, 0.95);
  color: #fff;
}

/* Fullscreen TV Menu & Subview Scaling */
#hero-simulator.fullscreen-active .tv-menu-grid {
  grid-template-columns: repeat(2, 320px);
  gap: 24px;
  margin-top: 36px;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#hero-simulator.fullscreen-active .tv-menu-item {
  border-radius: 16px;
  padding: 24px;
  gap: 12px;
}

#hero-simulator.fullscreen-active .tv-menu-item i {
  font-size: 3rem;
}

#hero-simulator.fullscreen-active .tv-menu-item span {
  font-size: 1.35rem;
}

#hero-simulator.fullscreen-active .vod-container-tv,
#hero-simulator.fullscreen-active .rs-container-tv {
  padding: 48px;
  height: calc(100% - 70px);
}

#hero-simulator.fullscreen-active .vod-container-tv h4,
#hero-simulator.fullscreen-active .rs-container-tv h4 {
  font-size: 1.8rem;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

#hero-simulator.fullscreen-active .vod-grid-tv,
#hero-simulator.fullscreen-active .rs-grid-tv {
  gap: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#hero-simulator.fullscreen-active .vod-item,
#hero-simulator.fullscreen-active .rs-item {
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 1.45rem;
  gap: 20px;
}

#hero-simulator.fullscreen-active .rs-item strong {
  font-size: 1.4rem;
}

#hero-simulator.fullscreen-active .vod-item i {
  font-size: 1.2rem;
}

#hero-simulator.fullscreen-active .vod-footer-hint,
#hero-simulator.fullscreen-active .rs-footer-hint {
  font-size: 1rem;
  padding-top: 16px;
  margin-top: 20px;
}

#hero-simulator.fullscreen-active .tv-notification-bar {
  padding: 16px 32px;
  font-size: 1.4rem;
  border-radius: 12px;
  bottom: 120px;
  gap: 12px;
}

/* Key Feature Middleware Cards styling */
.glass-card.key-feature-card {
  position: relative;
  border: 1px solid rgba(58, 117, 196, 0.25);
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(58, 117, 196, 0.02) 100%);
  box-shadow: 
    0 10px 30px rgba(58, 117, 196, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.glass-card.key-feature-card:hover {
  border-color: rgba(58, 117, 196, 0.5);
  box-shadow: 
    0 15px 35px rgba(58, 117, 196, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

/* 4-Card Hardware Categories Grid */
.hardware-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hw-item-card {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 30px;
  border-radius: 20px;
  background: radial-gradient(120% 120% at 50% 10%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 12px 30px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

.hw-item-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 117, 196, 0.3);
  background: radial-gradient(120% 120% at 50% 10%, rgba(255, 255, 255, 0.05) 0%, rgba(58, 117, 196, 0.01) 100%);
  box-shadow: 
    0 20px 40px -12px rgba(58, 117, 196, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.hw-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(58, 117, 196, 0.08);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(58, 117, 196, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.hw-item-card:hover .hw-icon {
  background: var(--accent-blue);
  color: #ffffff;
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 15px rgba(58, 117, 196, 0.4);
}

.hw-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.hw-item-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.hw-item-card:hover h3 {
  color: var(--accent-blue);
}

.hw-item-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.hw-item-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: 6px;
}

.hw-item-card:hover .hw-item-link {
  gap: 10px;
  color: var(--text-primary);
}

/* General responsiveness improvements to prevent horizontal scroll */
@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .glass-grid.card-3 {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .hardware-categories-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .hw-item-card {
    flex-direction: column !important;
    gap: 16px;
    padding: 24px;
  }
}

/* Forced landscape rotation for TV simulator in mobile portrait */
@media (max-width: 768px) and (orientation: portrait) {
  #hero-simulator.fullscreen-active {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    width: 100vh !important;
    height: 100vw !important;
    transform: translate(-50%, -50%) rotate(90deg) !important;
    transform-origin: center center !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4vh !important;
    padding: 4vh !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  #hero-simulator.fullscreen-active .tv-frame {
    width: 52vh !important;
    max-width: none !important;
    border-width: 8px !important;
    border-radius: 18px !important;
    margin: 0 !important;
  }

  #hero-simulator.fullscreen-active .tv-screen {
    aspect-ratio: 16 / 9 !important;
  }

  #hero-simulator.fullscreen-active #inline-remote {
    display: flex !important;
    width: 25vh !important;
    max-width: 200px !important;
    padding: 10px !important;
    gap: 8px !important;
    transform: scale(0.85) !important;
    transform-origin: center center !important;
    margin: 0 !important;
    border-radius: 18px !important;
  }

  #hero-simulator.fullscreen-active .remote-header {
    font-size: 0.55rem !important;
    padding-bottom: 4px !important;
    margin-bottom: 2px !important;
  }

  #hero-simulator.fullscreen-active .remote-keys-row {
    gap: 6px !important;
  }

  #hero-simulator.fullscreen-active .key {
    padding: 6px 4px !important;
    font-size: 0.55rem !important;
    border-radius: 6px !important;
    height: auto !important;
  }

  #hero-simulator.fullscreen-active .key span {
    font-size: 0.45rem !important;
  }

  #hero-simulator.fullscreen-active .remote-dpad {
    grid-template-columns: repeat(3, 34px) !important;
    grid-template-rows: repeat(3, 34px) !important;
    gap: 4px !important;
    padding: 4px !important;
    margin: 4px auto !important;
  }

  #hero-simulator.fullscreen-active .dpad-btn {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.6rem !important;
  }

  #hero-simulator.fullscreen-active .remote-label {
    font-size: 0.5rem !important;
  }

  #hero-simulator.fullscreen-active .remote-instruction {
    display: none !important;
  }

  /* Adjust internal TV screen text size in mobile rotated landscape */
  #hero-simulator.fullscreen-active .welcome-title {
    font-size: 0.9rem !important;
  }

  #hero-simulator.fullscreen-active .welcome-msg {
    font-size: 0.55rem !important;
    margin-bottom: 6px !important;
  }

  #hero-simulator.fullscreen-active .tv-menu-grid {
    margin-top: 8px !important;
    gap: 6px !important;
  }

  #hero-simulator.fullscreen-active .tv-menu-item {
    padding: 4px !important;
    border-radius: 6px !important;
  }

  #hero-simulator.fullscreen-active .tv-menu-item i {
    font-size: 0.85rem !important;
  }

  #hero-simulator.fullscreen-active .tv-menu-item span {
    font-size: 0.55rem !important;
  }

  #hero-simulator.fullscreen-active .welcome-hint {
    font-size: 0.45rem !important;
  }

  #hero-simulator.fullscreen-active .tv-status-bar {
    font-size: 0.5rem !important;
    padding-bottom: 4px !important;
  }

  #hero-simulator.fullscreen-active .tv-ad-banner {
    padding: 4px 8px !important;
    border-radius: 6px !important;
  }

  #hero-simulator.fullscreen-active .ad-badge {
    font-size: 0.4rem !important;
  }

  #hero-simulator.fullscreen-active .ad-content {
    font-size: 0.5rem !important;
  }

  #hero-simulator.fullscreen-active .vod-container-tv,
  #hero-simulator.fullscreen-active .rs-container-tv {
    padding: 6px !important;
  }

  #hero-simulator.fullscreen-active .vod-container-tv h4,
  #hero-simulator.fullscreen-active .rs-container-tv h4 {
    font-size: 0.65rem !important;
  }

  #hero-simulator.fullscreen-active .vod-item,
  #hero-simulator.fullscreen-active .rs-item {
    font-size: 0.55rem !important;
    padding: 4px 6px !important;
    border-radius: 4px !important;
  }

  #hero-simulator.fullscreen-active .vod-footer-hint,
  #hero-simulator.fullscreen-active .rs-footer-hint {
    font-size: 0.45rem !important;
  }

  #hero-simulator.fullscreen-active .tv-notification-bar {
    font-size: 0.5rem !important;
    padding: 4px !important;
  }

  #hero-simulator.fullscreen-active .tv-close-fs-btn {
    top: 10px !important;
    right: 10px !important;
    padding: 6px 12px !important;
    font-size: 0.7rem !important;
  }
}

/* Partners Logo Grid Section Styles */
.partners-logo-section {
  padding: 30px 0;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.partners-logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
  padding: 24px 40px !important;
  background: rgba(255, 255, 255, 0.01) !important;
  border-radius: 20px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.55;
  transition: var(--transition-smooth);
}

.partner-logo-item i {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.partner-logo-item img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.partner-logo-item:hover {
  opacity: 1;
  color: var(--text-primary);
  transform: translateY(-1px);
}

.partner-logo-item:hover i {
  color: var(--accent-blue);
}

@media (max-width: 992px) {
  .partners-logos-container {
    justify-content: center;
    gap: 24px;
    padding: 24px !important;
  }
}

@media (max-width: 768px) {
  .partners-logo-section {
    padding: 20px 0;
    margin-top: -10px;
  }
  
  .partners-logos-container {
    justify-content: center;
    gap: 16px;
    padding: 16px !important;
  }

  .partner-logo-item {
    font-size: 0.9rem;
  }

  .partner-logo-item i {
    font-size: 1.25rem;
  }
}

/* Integration Methods Section Styles */
.integration-methods-section {
  padding: 80px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.method-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition-smooth);
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: rgba(58, 117, 196, 0.1);
  border: 1px solid rgba(58, 117, 196, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(58, 117, 196, 0.15);
}

.method-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.method-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.method-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding-left: 0;
}

.method-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.method-features li i {
  color: var(--accent-blue);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .integration-methods-section {
    padding: 60px 0;
  }
  .methods-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .method-card {
    padding: 24px;
  }
}

/* ==========================================================================
   REFACTORED FEATURES SECTION (HIGHLIGHTED DYNAMIC ROWS & SMALL CARDS GRID)
   ========================================================================== */
.highlighted-features {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 48px;
}

.highlighted-feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.highlighted-feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-info {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-badge {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlighted-feature-row:nth-child(2) .feature-badge {
  color: #a78bfa;
}

.highlighted-feature-row:nth-child(3) .feature-badge {
  color: #fbbf24;
}

.feature-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin: 0;
}

.feature-lead {
  font-size: 1.05rem;
  color: var(--text-primary);
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
}

.feature-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-details li i {
  color: var(--accent-blue);
  font-size: 1rem;
  margin-top: 4px;
}

.highlighted-feature-row:nth-child(2) .feature-details li i {
  color: #8b5cf6;
}

.highlighted-feature-row:nth-child(3) .feature-details li i {
  color: #d97706;
}

.feature-details li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.feature-actions {
  margin-top: 8px;
}

.feature-visual {
  flex: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* TV Smart Mockup Frame */
.tv-mockup-wrapper {
  position: relative;
  border-radius: 16px;
  padding: 6px;
  background: #09090b;
  border: 4px solid #27272a;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.75),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 16/10;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.tv-mockup-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
}

.tv-mockup-wrapper.blue-glow:hover {
  box-shadow: 
    0 30px 60px -10px rgba(58, 117, 196, 0.35),
    0 0 30px rgba(58, 117, 196, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.tv-mockup-wrapper.purple-glow:hover {
  box-shadow: 
    0 30px 60px -10px rgba(139, 92, 246, 0.35),
    0 0 30px rgba(139, 92, 246, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.tv-mockup-wrapper.gold-glow:hover {
  box-shadow: 
    0 30px 60px -10px rgba(217, 119, 6, 0.35),
    0 0 30px rgba(217, 119, 6, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.tv-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.tv-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: 2;
}

/* Hotspots & Overlays */
.interactive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.hotspot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(58, 117, 196, 0.3);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
  animation: pulse-blue 2s infinite;
}

.purple-glow .hotspot {
  background: #a78bfa;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.3);
  animation: pulse-purple 2s infinite;
}

.gold-glow .hotspot {
  background: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3);
  animation: pulse-gold 2s infinite;
}

.hotspot:hover {
  transform: scale(1.35);
  background: #ffffff;
}

.hotspot::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.hotspot:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(58, 117, 196, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(58, 117, 196, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 117, 196, 0); }
}

@keyframes pulse-purple {
  0% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(167, 139, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0); }
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

/* Section Subheader */
.section-subheader h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Other Features Small Cards Grid */
.other-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.small-feature-card {
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.small-feature-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-color: rgba(58, 117, 196, 0.25);
  transform: translateY(-4px);
}

.small-feature-card .card-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(58, 117, 196, 0.08);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid rgba(58, 117, 196, 0.12);
  transition: all 0.3s ease;
}

.small-feature-card .card-icon-wrapper.red {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.12);
}

.small-feature-card:hover .card-icon-wrapper {
  background: var(--accent-blue);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(58, 117, 196, 0.3);
}

.small-feature-card:hover .card-icon-wrapper.red {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

.small-feature-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.small-feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 992px) {
  .highlighted-feature-row {
    gap: 40px;
  }
  .feature-info h3 {
    font-size: 1.75rem;
  }
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .highlighted-features {
    gap: 56px;
  }
  .highlighted-feature-row,
  .highlighted-feature-row.reverse {
    flex-direction: column !important;
    gap: 28px;
  }
  .feature-info, .feature-visual {
    width: 100%;
  }
  .feature-info h3 {
    font-size: 1.5rem;
  }
  .tv-mockup-wrapper {
    max-width: 100%;
  }
  .other-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .featured-products-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

/* Featured Products on Landing Page styling */
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.featured-product-card {
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: radial-gradient(120% 120% at 50% 10%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 15px 35px -10px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.featured-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(58, 117, 196, 0.4), transparent);
}

.featured-product-card:nth-child(2)::before {
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.featured-product-card:nth-child(3)::before {
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.4), transparent);
}

.featured-product-card:hover {
  transform: translateY(-8px);
  background: radial-gradient(120% 120% at 50% 10%, rgba(255, 255, 255, 0.05) 0%, rgba(58, 117, 196, 0.01) 100%);
}

.featured-product-card:nth-child(1):hover {
  box-shadow: 
    0 20px 40px -12px rgba(58, 117, 196, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  border-color: rgba(58, 117, 196, 0.3);
}

.featured-product-card:nth-child(2):hover {
  box-shadow: 
    0 20px 40px -12px rgba(139, 92, 246, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.featured-product-card:nth-child(3):hover {
  box-shadow: 
    0 20px 40px -12px rgba(251, 191, 36, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.fp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fp-category {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(58, 117, 196, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(58, 117, 196, 0.12);
  letter-spacing: 1px;
}

.fp-brand {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.5px;
}

.featured-product-card h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 650;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.2px;
}

.featured-product-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.fp-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.fp-link:hover {
  gap: 10px;
}

.btn-case-detail:hover {
  background: var(--accent-blue) !important;
  color: #ffffff !important;
  border-color: var(--accent-blue) !important;
  box-shadow: 0 4px 12px rgba(58, 117, 196, 0.25);
}

/* ==========================================
   DYNAMIC FEATURE CARDS (SSG Generated)
   ========================================== */
.featured-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.featured-feature-card:hover {
  transform: translateY(-4px);
}

.featured-feature-card.blue-glow {
  border: 1px solid rgba(58, 117, 196, 0.15);
  background: rgba(58, 117, 196, 0.04);
}

.featured-feature-card.purple-glow {
  border: 1px solid rgba(139, 92, 246, 0.15);
  background: rgba(139, 92, 246, 0.04);
}

.featured-feature-card.gold-glow {
  border: 1px solid rgba(217, 119, 6, 0.12);
  background: rgba(217, 119, 6, 0.03);
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon-sm {
  font-size: 1.1rem;
  color: var(--accent-blue);
  opacity: 0.7;
}

.purple-glow .feature-icon-sm {
  color: #a78bfa;
}

.gold-glow .feature-icon-sm {
  color: #fbbf24;
}

.feature-card-content h3 {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.feature-bullet-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-bullet-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(58, 117, 196, 0.1);
  border: 1px solid rgba(58, 117, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.purple-glow .feature-bullet-dot {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

.gold-glow .feature-bullet-dot {
  background: rgba(217, 119, 6, 0.08);
  border-color: rgba(217, 119, 6, 0.18);
}

.feature-bullet-dot i {
  font-size: 0.62rem;
  color: var(--accent-blue);
}

.purple-glow .feature-bullet-dot i {
  color: #a78bfa;
}

.gold-glow .feature-bullet-dot i {
  color: #fbbf24;
}

.feature-bullet-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.feature-bullet-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-card-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-mockup-img {
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-mockup-placeholder {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 16/10;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.08);
}

/* Other Features Small Cards Grid */
.other-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-small-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-small-card:hover {
  transform: translateY(-3px);
}

.feature-small-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-small-icon.blue-glow {
  background: rgba(58, 117, 196, 0.12);
  color: var(--accent-blue);
}

.feature-small-icon.purple-glow {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
}

.feature-small-icon.gold-glow {
  background: rgba(217, 119, 6, 0.1);
  color: #fbbf24;
}

.feature-small-badge {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.feature-small-card h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.feature-small-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .featured-feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card-media {
    order: -1;
  }

  .feature-mockup-img,
  .feature-mockup-placeholder {
    max-width: 100%;
  }

  .other-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .other-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UPGRADE: LIQUID GLASS MOBILE NAV & INTERACTIVE WIDGETS
   ========================================================================== */

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  transition: var(--transition-smooth);
}

.mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hamburger animations into X */
.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Menu container */
.mobile-nav-menu {
  display: none;
  width: 100%;
  padding: 16px 8px 12px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 12px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.mobile-nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu ul li a {
  display: block;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav-menu ul li a:hover,
.mobile-nav-menu ul li a.active-link {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.btn-mobile-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.08) !important;
  border: var(--border-glass-light);
  color: var(--text-primary) !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}

.btn-mobile-cta:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Header overlays & responsive overrides */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }
  
  .liquid-header .header-inner {
    max-height: 60px;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
  }
  
  .liquid-header .header-inner.mobile-active {
    max-height: 420px;
  }
  
  .liquid-header .header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .liquid-header .header-cta {
    display: none !important; /* Hide on mobile to prioritize burger */
  }

  .mobile-nav-menu {
    display: block;
  }

  .liquid-header .header-inner.mobile-active .mobile-nav-menu {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   INTERACTIVE FEATURE MOCKUP DESIGN
   -------------------------------------------------------------------------- */

.feature-mockup-container {
  width: 100%;
  height: 240px;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(5, 7, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    inset 0 0 20px rgba(0, 0, 0, 0.6),
    0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Virtual TV Simulator screen markup styles */
.tv-mockup-screen {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #0c101c 0%, #05070a 100%);
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: var(--font-title);
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.tv-mockup-header {
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tv-mockup-logo {
  font-weight: 800;
  color: var(--text-primary);
}

.tv-mockup-logo span {
  color: var(--accent-blue);
}

.tv-mockup-room {
  color: var(--text-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.tv-mockup-body {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  gap: 16px;
  align-items: stretch;
  box-sizing: border-box;
  overflow: hidden;
}

/* Helper glass-card mini style */
.glass-card-mini {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  box-sizing: border-box;
}

/* 5. Room Service Mockup Styles */
.menu-list-mock {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-item-mock {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  transition: all 0.2s ease;
}

.menu-item-mock.active {
  background: rgba(58, 117, 196, 0.15);
  border-color: rgba(58, 117, 196, 0.4);
}

.menu-item-mock i {
  color: var(--accent-blue);
  width: 14px;
}

.menu-name {
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.menu-price {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.badge-ordered {
  background: var(--accent-blue);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.summary-mock {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.68rem;
}

.summary-mock h5 {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 4px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 6px;
}

.btn-mock-confirm {
  background: var(--accent-blue);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.68rem;
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(58, 117, 196, 0.3);
}

/* 6. Facility Booking Mockup Styles */
.fac-grid-mock {
  flex: 1.1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.fac-card-mock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.fac-card-mock.active {
  background: rgba(58, 117, 196, 0.12);
  border-color: rgba(58, 117, 196, 0.3);
}

.fac-card-mock i {
  color: var(--accent-blue);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.fac-card-mock h5 {
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.fac-card-mock p {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.fac-badge {
  background: rgba(58, 117, 196, 0.2);
  color: var(--accent-blue);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 4px;
}

.fac-badge-ok {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 4px;
}

.fac-details-mock {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  font-size: 0.68rem;
}

.fac-details-mock h5 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.fac-details-mock p {
  color: var(--text-secondary);
}

.price-tag {
  color: #2ecc71;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 4px;
}

/* 7. Guest Messaging Mockup Styles */
.messaging-mockup .tv-mockup-body {
  justify-content: center;
  align-items: center;
}

.msg-box-mock {
  width: 85%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  animation: modalSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.msg-header-mock {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 6px;
}

.msg-header-mock i {
  font-size: 1rem;
  color: var(--accent-blue);
}

.msg-header-mock h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
}

.msg-time {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.msg-text {
  font-size: 0.65rem;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.msg-actions-mock {
  display: flex;
  gap: 8px;
}

.btn-msg-mock {
  flex: 1;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-msg-mock.ok {
  background: var(--accent-blue);
  color: #fff;
}

.btn-msg-mock.cancel {
  background: rgba(255,255,255,0.08);
  color: var(--text-secondary);
}

/* 8. Vehicle Rental Mockup Styles */
.rental-grid-mock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.rental-card-mock {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  justify-content: space-between;
  transition: all 0.2s ease;
}

.rental-card-mock.active {
  background: rgba(58, 117, 196, 0.1);
  border-color: rgba(58, 117, 196, 0.3);
}

.rental-card-mock i {
  color: var(--accent-blue);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.rental-card-mock h5 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.rental-card-mock p {
  font-size: 0.58rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.btn-rental-mock {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.rental-card-mock.active .btn-rental-mock {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

/* 9. Local Guide & FIDS Mockup Styles */
.fids-table-mock {
  flex: 1.2;
  border-collapse: collapse;
  font-size: 0.65rem;
}

.fids-table-mock th {
  text-align: left;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 4px;
}

.fids-table-mock td {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: var(--text-primary);
}

.status-badge {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.status-badge.boarding {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.status-badge.delayed {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.status-badge.ontime {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
}

.weather-mock {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.weather-icon-mock {
  font-size: 1.8rem;
  color: var(--accent-blue);
  margin-bottom: 6px;
}

.weather-mock h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.weather-mock p {
  font-size: 0.58rem;
  color: var(--text-muted);
}

/* 10. Guest Surveys Mockup Styles */
.survey-mockup .tv-mockup-body {
  justify-content: center;
  align-items: center;
}

.survey-card-mock {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.survey-card-mock h4 {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stars-mock {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.stars-mock i {
  font-size: 0.9rem;
}

.stars-mock i.gold {
  color: #f1c40f;
  text-shadow: 0 0 6px rgba(241,196,15,0.4);
}

.options-mock {
  display: flex;
  gap: 8px;
  width: 100%;
}

.btn-option-mock {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-secondary);
  padding: 6px 4px;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-option-mock.active {
  background: rgba(58, 117, 196, 0.15);
  border-color: rgba(58, 117, 196, 0.4);
  color: #fff;
}

/* 11. Siren Ads Engine Mockup Styles */
.ads-layout-mock {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1.1fr 0.4fr;
  gap: 8px;
  width: 100%;
  padding: 8px;
}

.simulated-video-mock {
  grid-column: 1;
  grid-row: 1;
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.58rem;
  color: var(--text-muted);
}

.video-play-icon {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.25);
}

.sidebar-ad-mock {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.sidebar-ad-mock h5 {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.sidebar-ad-mock p {
  font-size: 0.55rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.ad-tag-mock {
  background: #2ecc71;
  color: #fff;
  font-size: 0.48rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 6px;
}

.ticker-ad-mock {
  grid-column: 1;
  grid-row: 2;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  font-size: 0.55rem;
}

.ticker-label-mock {
  color: #f1c40f;
  font-weight: 700;
}

.ticker-text-mock {
  color: #fff;
  white-space: nowrap;
  animation: tickerAnimation 15s linear infinite;
}

@keyframes tickerAnimation {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* 12. Emergency Evacuation Mockup Styles */
.emergency-mockup-screen .tv-mockup-body {
  padding: 0;
}

.emergency-overlay-mock {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #551214 0%, #1c0607 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 24px;
  box-sizing: border-box;
}

.warning-large-icon {
  font-size: 1.8rem;
  color: #f75c60;
  margin-bottom: 6px;
}

.emergency-overlay-mock h2 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #f75c60;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.emergency-bold-text {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.emergency-sub-text {
  font-size: 0.58rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  max-width: 90%;
  margin-bottom: 8px;
}

.evac-arrows-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f1c40f;
  font-weight: 700;
  font-size: 0.6rem;
}

.evac-arrows-mock i {
  animation: arrowSlideLeft 1s infinite linear;
}

@keyframes arrowSlideLeft {
  0% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(-4px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.5; }
}

/* 13. Apps Manager Mockup Styles */
.apps-grid-mock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  align-items: center;
}

.app-card-mock {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  height: 90px;
  box-sizing: border-box;
}

.app-icon-mock {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.app-icon-mock.youtube {
  background: #c0392b;
  color: #fff;
}

.app-icon-mock.netflix {
  background: #111;
  color: #e50914;
  border: 1px solid rgba(255,255,255,0.1);
}

.app-icon-mock.spotify {
  background: #1db954;
  color: #fff;
}

.app-icon-mock.browser {
  background: #2980b9;
  color: #fff;
}

.app-card-mock h5 {
  font-size: 0.6rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.status-toggle {
  font-size: 0.48rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  text-transform: uppercase;
}

.status-toggle.active {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.status-toggle.disabled {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

/* ==========================================================================
   14. SPOTLIGHT FUZZY SEARCH SYSTEM & MODAL OVERLAY STYLES
   ========================================================================== */
.btn-search-trigger {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-right: 12px;
  flex-shrink: 0;
}

.btn-search-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
  color: #fff;
  transform: scale(1.06) rotate(5deg);
  box-shadow: 0 0 15px rgba(58, 117, 196, 0.4);
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 8, 12, 0.88);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
}

.search-modal-container {
  position: relative;
  width: 90%;
  max-width: 660px;
  background: linear-gradient(165deg, rgba(20, 26, 40, 0.8) 0%, rgba(10, 14, 22, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.8), 
    0 0 40px rgba(58, 117, 196, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: translateY(-30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  max-height: 75vh;
}

.search-modal.open .search-modal-container {
  transform: translateY(0) scale(1);
}

.search-modal-header {
  display: flex;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 16px;
}

.search-modal-header .search-icon {
  font-size: 1.35rem;
  color: var(--accent-blue);
  text-shadow: 0 0 10px rgba(58, 117, 196, 0.5);
  animation: pulseSearchIcon 2.5s infinite ease-in-out;
}

@keyframes pulseSearchIcon {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.search-modal-header input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.15rem;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
}

.search-modal-header input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.search-clear-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.95rem;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
  margin-right: 4px;
}

.search-clear-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.search-close-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.8rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  margin-left: 8px;
  flex-shrink: 0;
}

.search-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px rgba(58, 117, 196, 0.3);
  transform: scale(1.05);
}

.search-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
  min-height: 200px;
  scroll-behavior: smooth;
}

.search-suggestions-title, .search-results-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-suggestions-title i, .search-results-title i {
  font-size: 0.8rem;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.suggestion-tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.suggestion-tag i {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.suggestion-tag:hover {
  background: rgba(58, 117, 196, 0.08);
  border-color: var(--accent-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 117, 196, 0.2);
}

.suggestion-tag:hover i {
  color: var(--accent-blue);
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-result-item {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.search-result-item:hover, .search-result-item.selected {
  background: linear-gradient(95deg, rgba(255, 255, 255, 0.04) 0%, rgba(58, 117, 196, 0.05) 100%);
  border-color: var(--accent-blue);
  transform: translateX(4px);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-result-item h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-title);
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.search-result-item h4 span.badge {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(58, 117, 196, 0.12);
  color: var(--accent-blue);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(58, 117, 196, 0.2);
}

.search-result-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.search-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: var(--text-muted);
  text-align: center;
  gap: 14px;
}

.search-no-results i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.search-no-results p {
  margin: 0;
  font-size: 0.95rem;
}

.search-no-results .search-query-highlight {
  color: var(--accent-blue);
  font-weight: 600;
}

.search-modal-footer {
  padding: 14px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 20px;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(10, 14, 22, 0.6);
}

.search-modal-footer kbd {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: monospace;
  color: var(--text-secondary);
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  .search-modal {
    padding-top: 0;
    align-items: flex-start;
  }
  .search-modal-container {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    background: #0b0f19; /* Solid deep dark background to cover screen cleanly */
    box-shadow: none;
  }
  .search-modal-header {
    padding: 16px 20px;
    gap: 12px;
  }
  .search-modal-header .search-icon {
    font-size: 1.15rem;
  }
  .search-modal-header input {
    font-size: 1rem;
  }
  .search-close-btn {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    margin-left: 4px;
  }
  .search-modal-body {
    padding: 20px 16px;
  }
  .search-modal-footer {
    display: none !important; /* Hide keyboard legends on touch viewports */
  }
  .btn-search-trigger {
    width: 38px;
    height: 38px;
    margin-right: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.95rem;
  }
  .search-result-item {
    padding: 12px 14px;
    border-radius: 10px;
  }
  .search-result-item h4 {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }
  .search-result-item h4 span.badge {
    font-size: 0.6rem;
    padding: 1px 6px;
  }
  .search-result-item p {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .suggestion-tags {
    gap: 8px;
    margin-bottom: 20px;
  }
  .suggestion-tag {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
  .liquid-header .logo {
    margin-right: auto;
  }
}


