/* ==========================================================================
   AlsephinaIPTV - Modern Corporate Dark Style Sheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Deep Corporate Dark */
  --bg-dark: #0b0f19;
  --bg-card: #111827;
  --bg-card-hover: #1f293d;
  --bg-glass: rgba(17, 24, 39, 0.75);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.3);

  /* Primary & Accent Colors */
  --primary-blue: #3b82f6;
  --primary-indigo: #6366f1;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  /* Text Colors */
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  --grad-text: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #38bdf8 100%);
  --grad-card: linear-gradient(180deg, rgba(31, 41, 55, 0.6) 0%, rgba(17, 24, 39, 0.8) 100%);
  --grad-glow: radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.18), transparent 70%);

  /* Spacing & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.2);

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   3. Buttons & Store Badges Utilities
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.45);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.08);
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Official Store Download Badges */
.hero-store-buttons, .cta-store-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.store-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.4rem;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #ffffff;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.store-badge-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
  background: #0d1322;
}

.store-svg-logo {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.store-btn-text .sub-text {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.store-btn-text .main-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
}

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

/* --------------------------------------------------------------------------
   4. Navbar Styles
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.logo-text span {
  color: var(--primary-blue);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   5. Hero Section & Real Phone Device Frame
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 10rem 0 6rem 0;
  overflow: hidden;
  background: var(--grad-glow);
}

.hero-bg-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15), rgba(59, 130, 246, 0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-slogan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fef08a;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.coffee-emoji {
  font-size: 1.1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: var(--border-subtle);
}

.hero-media {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-device-wrapper {
  position: relative;
  display: inline-block;
}

/* Smartphone Mockup Frame */
.phone-frame {
  position: relative;
  width: 290px;
  height: 590px;
  background: #000000;
  border-radius: 44px;
  padding: 10px;
  border: 4px solid #1f293d;
  box-shadow: var(--shadow-subtle), var(--shadow-glow), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 14px;
  background: #111827;
  border-radius: 10px;
  z-index: 10;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
}

.hero-app-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-card-floating {
  position: absolute;
  bottom: 30px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1.2rem;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.floating-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
}

.floating-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.floating-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.floating-badge-live {
  position: absolute;
  top: 25px;
  right: -30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  z-index: 5;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-blue);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(0.95); opacity: 1; }
}

/* --------------------------------------------------------------------------
   6. Trust Bar Section
   -------------------------------------------------------------------------- */
.trust-bar-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(17, 24, 39, 0.4);
  text-align: center;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Features Grid Section
   -------------------------------------------------------------------------- */
.features-section {
  padding: 7rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.8rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: var(--bg-card-hover);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 1.4rem;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.feature-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. Real App Screens Gallery
   -------------------------------------------------------------------------- */
.screens-section {
  padding: 6rem 0;
  background: rgba(17, 24, 39, 0.25);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.screen-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.screen-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.screen-device-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  margin-bottom: 1.2rem;
  background: #050811;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.screen-device-mockup .media-placeholder-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.screen-device-mockup img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  border-radius: calc(var(--radius-md) - 6px);
  display: block;
}

.screen-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.screen-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. Multi-Screen Section
   -------------------------------------------------------------------------- */
.multiscreen-section {
  padding: 6rem 0;
  background: rgba(17, 24, 39, 0.5);
  border-bottom: 1px solid var(--border-subtle);
}

.multiscreen-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.multiscreen-media {
  position: relative;
}

.multiscreen-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: #050811;
  border: 2px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle), 0 0 50px rgba(59, 130, 246, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.multiscreen-frame img {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.multiscreen-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
}

.multiscreen-list {
  margin: 1.8rem 0 2.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.multiscreen-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   10. Interactive Demo Player Simulator
   -------------------------------------------------------------------------- */
.demo-section {
  padding: 7rem 0;
}

.player-simulator-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #090c14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  min-height: 480px;
}

.sim-sidebar {
  background: rgba(17, 24, 39, 0.8);
  border-right: 1px solid var(--border-subtle);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}

.sim-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-subtle);
}

.sim-pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-blue);
  border-radius: 4px;
  font-weight: 700;
}

.sim-channels {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sim-channel-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
}

.sim-channel-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sim-channel-btn.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.ch-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
}

.ch-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ch-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.ch-tag.live {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.ch-tag.vod {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.sim-screen {
  position: relative;
  background: #000000;
  display: flex;
  flex-direction: column;
}

.sim-screen-overlay {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.8), #030712);
  position: relative;
  padding: 1.2rem;
}

.sim-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.sim-title-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sim-live-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ef4444;
}

.sim-channel-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.sim-top-info {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.sim-canvas {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 240px;
}

.sim-play-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.sim-play-icon:hover {
  transform: scale(1.15);
  color: var(--primary-blue);
}

.sim-stream-placeholder {
  width: 100%;
  text-align: center;
}

.stream-graphic {
  padding: 2rem;
}

.graphic-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.sim-bottom-bar {
  z-index: 2;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.sim-progress-wrapper {
  margin-bottom: 0.6rem;
}

.sim-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.sim-progress-fill {
  width: 65%;
  height: 100%;
  background: var(--grad-primary);
}

.sim-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-ctrl-left, .sim-ctrl-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sim-ctrl-btn {
  color: var(--text-main);
  font-size: 1.1rem;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s ease;
}

.sim-ctrl-btn:hover {
  color: var(--primary-blue);
}

.sim-epg-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sim-pill-btn {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. Devices Section
   -------------------------------------------------------------------------- */
.devices-section {
  padding: 6rem 0;
  background: rgba(17, 24, 39, 0.3);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
}

.device-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.device-icon {
  margin-bottom: 1.2rem;
  display: inline-flex;
}

.device-icon-svg {
  stroke: var(--primary-blue);
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.device-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.device-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.device-features {
  font-size: 0.85rem;
  color: var(--primary-blue);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. Pricing Section (3 Days Trial + Monthly & Yearly Plans)
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 7rem 0;
}

.pricing-grid,
.pricing-grid.three-cards,
.pricing-grid.two-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

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

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.95) 0%, rgba(17, 24, 39, 0.98) 100%);
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #3b82f6 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 1.3rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.plan-price .currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.plan-price .amount {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  margin: 0 0.2rem;
}

.plan-price .period {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.plan-features .check {
  color: var(--accent-emerald);
  font-weight: 800;
}

.plan-btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   13. FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 6rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 1.8rem 1.4rem 1.8rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. CTA Banner Section
   -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 4rem 0 7rem 0;
}

/* Download & Pricing Group Layout */
.download-pricing-group {
  padding: 5rem 0 3rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
  border-top: 1px solid var(--border-subtle);
}

.download-pricing-group .pricing-section {
  padding: 0 0 1.5rem 0;
}

.download-pricing-group .cta-banner-section {
  padding: 1.5rem 0 0 0;
}

.cta-card {
  background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 45%),
              rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7),
              0 0 50px -10px rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.5px;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.cta-store-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cta-store-buttons .store-badge-btn {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.cta-store-buttons .store-badge-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #070a12;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-desc {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary-blue);
}

.footer-contact {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.social-icon:hover {
  background: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.8rem 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-disclaimer {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   16. Media Queries for Full Responsiveness
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2.2rem auto;
  }

  .hero-store-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-card-floating {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    white-space: nowrap;
  }

  .floating-badge-live {
    right: 50%;
    transform: translateX(50%);
    top: -20px;
  }

  .multiscreen-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .multiscreen-list li {
    text-align: left;
  }

  .multiscreen-cta {
    display: flex;
    justify-content: center;
  }

  .player-simulator-container {
    grid-template-columns: 1fr;
  }

  .sim-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #0b0f19;
    flex-direction: column;
    padding: 3rem 2rem;
    transition: left 0.3s ease;
    border-top: 1px solid var(--border-subtle);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.8rem;
    font-size: 1.2rem;
  }

  .nav-actions .nav-btn-demo,
  .nav-actions .nav-btn-download {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .phone-frame {
    width: 250px;
    height: 510px;
  }

  .pricing-grid,
  .pricing-grid.three-cards,
  .pricing-grid.two-cards {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.media-placeholder-box {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
}

.placeholder-info {
  display: none !important;
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.placeholder-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ph-filename {
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--neon-cyan);
  font-weight: 600;
  background: rgba(6, 182, 212, 0.08);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(6, 182, 212, 0.15);
  word-break: break-all;
}

.ph-size {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ph-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.4rem;
  font-weight: 600;
}

/* Portrait wrapper adjustments */
.phone-frame .media-placeholder-box {
  min-height: 100%;
  border-radius: 24px;
  border: none;
  background: linear-gradient(180deg, #111827, #030712);
}

/* Language Switcher Dropdown Style */
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.lang-btn .globe-icon {
  opacity: 0.8;
}

.lang-btn .chevron-icon {
  font-size: 0.6rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.lang-switcher.open .lang-btn .chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow), 0 10px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 140px;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}

/* Scrollbar for language dropdown */
.lang-dropdown::-webkit-scrollbar {
  width: 6px;
}
.lang-dropdown::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.lang-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.lang-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  padding: 0.5rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: left;
}

.lang-item:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

.lang-item.active {
  color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.1);
  font-weight: 600;
}
