/* ==========================================================================
   POCKETADS TECHNOLOGIES — Core Design System & Stylesheet
   Theme: Obsidian / Deep Dark Cinematic / Metallic Silver / PocketAds Red
   100% Device Responsive Design (Mobile / Tablet / Desktop / 4K)
   ========================================================================== */

:root {
  --pa-bg: #050505;
  --pa-bg-secondary: #0b0b0d;
  --pa-card-bg: #121214;
  --pa-card-surface: #17171a;
  --pa-card-border: rgba(255, 255, 255, 0.08);
  --pa-card-border-hover: rgba(242, 31, 50, 0.4);
  
  --pa-red: #F21F32;
  --pa-red-bright: #FF3347;
  --pa-red-dark: #8F1623;
  --pa-red-glow: rgba(242, 31, 50, 0.35);
  --pa-red-glow-strong: rgba(255, 51, 71, 0.6);

  --pa-silver: #C5C7CB;
  --pa-silver-light: #E5E7EB;
  --pa-silver-dark: #8E9299;
  --pa-white: #FFFFFF;
  --pa-gold-subtle: #D9A441;

  --pa-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --pa-font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --pa-font-mono: 'JetBrains Mono', monospace;

  --pa-transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --pa-transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --pa-transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --pa-shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --pa-shadow-glow: 0 0 40px -5px rgba(242, 31, 50, 0.25);
  --pa-shadow-glow-intense: 0 0 60px 0 rgba(242, 31, 50, 0.45);
}

/* ==========================================================================
   GLOBAL RESET & OVERFLOW PREVENTION
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
  margin: 0;
  padding: 0;
  background-color: var(--pa-bg);
  color: var(--pa-silver);
  font-family: var(--pa-font-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

section {
  width: 100%;
  max-width: 100vw;
  position: relative;
  overflow-x: clip;
}

.container, .container-fluid {
  width: 100%;
  max-width: 1320px;
}

@media (max-width: 576px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Selection */
::selection {
  background: var(--pa-red);
  color: #fff;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--pa-font-heading);
  color: var(--pa-white);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  word-wrap: break-word;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: var(--pa-silver);
  word-wrap: break-word;
}

a {
  color: var(--pa-white);
  text-decoration: none;
  transition: color var(--pa-transition-fast);
}

a:hover {
  color: var(--pa-red-bright);
}

.text-gradient-red {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--pa-red-bright) 55%, var(--pa-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-silver {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--pa-silver) 60%, var(--pa-silver-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pa-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pa-red-bright);
  background: rgba(242, 31, 50, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(242, 31, 50, 0.25);
  margin-bottom: 1rem;
  max-width: 100%;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--pa-red-bright);
  box-shadow: 0 0 8px var(--pa-red-bright);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.section-desc {
  font-size: clamp(0.92rem, 1.5vw, 1.15rem);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--pa-silver-dark);
}

.section-padding {
  padding: 90px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 55px 0;
  }
}

/* Background Atmosphere Gradients */
.ambient-glow-red {
  position: absolute;
  width: min(380px, 70vw);
  height: min(380px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 31, 50, 0.14) 0%, rgba(5, 5, 5, 0) 70%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
  max-width: 100vw;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Buttons */
.btn-pocketads {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--pa-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: all var(--pa-transition-fast);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary-red {
  background: linear-gradient(135deg, var(--pa-red-bright) 0%, var(--pa-red) 100%);
  color: var(--pa-white);
  box-shadow: 0 4px 20px var(--pa-red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary-red:hover {
  color: var(--pa-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--pa-red-glow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.04);
  color: var(--pa-silver-light);
  border: 1px solid var(--pa-card-border);
  backdrop-filter: blur(10px);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pa-white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.02rem;
  border-radius: 14px;
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 13px 22px;
    font-size: 0.92rem;
    width: 100%;
  }
}

/* Glass Cards */
.glass-card {
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--pa-transition-smooth);
  box-shadow: var(--pa-shadow-card);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.glass-card:hover {
  border-color: var(--pa-card-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--pa-shadow-glow);
}

@media (max-width: 768px) {
  .glass-card {
    padding: 22px 16px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   HEADER / NAVBAR (FIXED PREMIUM DARK GLASS)
   ========================================================================== */
.pocketads-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--pa-transition-fast), box-shadow var(--pa-transition-fast), border-color var(--pa-transition-fast);
}

.pocketads-header.scrolled {
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
}

@media (max-width: 991px) {
  .pocketads-header {
    height: 72px;
  }
}

@media (max-width: 576px) {
  .pocketads-header {
    height: 68px;
  }
}

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

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

@media (max-width: 576px) {
  .navbar-brand-logo img {
    height: 45px;
  }
}

.nav-link-custom {
  font-family: var(--pa-font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pa-silver);
  padding: 8px 14px;
  transition: all var(--pa-transition-fast);
  border-radius: 8px;
  position: relative;
}

.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--pa-white);
}

.nav-link-custom:hover::after, .nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--pa-red);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--pa-red-bright);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--pa-card-border);
  color: var(--pa-white);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 1.25rem;
  display: none;
  cursor: pointer;
  transition: all var(--pa-transition-fast);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .desktop-nav-menu, .desktop-header-cta {
    display: none !important;
  }
}

/* Mobile Drawer & Backdrop (Highest Layering) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 340px);
  height: 100vh;
  background: #0B0B0D;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 10001;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.9);
}

.mobile-drawer.active {
  right: 0 !important;
  visibility: visible !important;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 90vh;
  padding-top: 130px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-heading {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: clamp(0.98rem, 1.6vw, 1.2rem);
  color: var(--pa-silver);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 580px;
}

/* ==========================================================================
   HERO CINEMATIC 3D PRODUCT ENVIRONMENT (FRAMELESS & SEAMLESS)
   ========================================================================== */
.hero-cinematic-stage {
  position: relative;
  width: 100%;
  height: 560px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  animation: cameraBreathe 12s ease-in-out infinite alternate;
}

/* Layer 1: Volumetric Atmosphere & Core Lighting */
.stage-ambient-fog {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 31, 50, 0.22) 0%, rgba(242, 31, 50, 0.05) 55%, transparent 75%);
  border-radius: 50%;
  filter: blur(75px);
  pointer-events: none;
  z-index: 1;
  animation: ambientPulse 6s ease-in-out infinite alternate;
}

.stage-red-core {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 31, 61, 0.42) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  animation: corePulse 4s ease-in-out infinite alternate;
}

.stage-reflective-floor {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 70px;
  background: radial-gradient(ellipse at center, rgba(242, 31, 50, 0.15) 0%, rgba(18, 18, 20, 0.6) 45%, transparent 75%);
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
  z-index: 1;
}

/* Layer 2: Holographic Digital Advertising Panels */
.holo-panel {
  position: absolute;
  background: rgba(18, 18, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: 12px;
  padding: 8px 14px;
  font-family: var(--pa-font-mono);
  font-size: 0.65rem;
  color: #fff;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(242, 31, 50, 0.15);
}

.holo-panel-left {
  top: 12%;
  left: -2%;
  transform: perspective(800px) rotateY(18deg);
  animation: holoFloatLeft 7s ease-in-out infinite alternate;
}

.holo-panel-right {
  bottom: 30%;
  right: -4%;
  transform: perspective(800px) rotateY(-16deg);
  animation: holoFloatRight 8s ease-in-out infinite alternate;
}

.holo-header {
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--pa-silver-light);
  margin-bottom: 6px;
}

.holo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pa-red-bright);
  box-shadow: 0 0 6px var(--pa-red-bright);
}

.holo-bars {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.holo-bars span {
  height: 2px;
  background: linear-gradient(90deg, var(--pa-red), rgba(255,255,255,0.4));
  border-radius: 2px;
}

.holo-metric {
  font-size: 0.62rem;
  color: var(--pa-silver);
  letter-spacing: 0.06em;
}

/* Layer 3: Large Frameless Futuristic TV Wall Display */
.tv-wall-container {
  position: absolute;
  top: 4%;
  left: 2%;
  width: 86%;
  max-width: 540px;
  aspect-ratio: 16/9.5;
  background: #050507;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(242, 31, 50, 0.18);
  overflow: hidden;
  transform: perspective(1200px) rotateY(12deg) rotateX(3deg) scale(0.94);
  filter: brightness(0.85);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.hero-cinematic-stage:hover .tv-wall-container {
  filter: brightness(0.95);
  transform: perspective(1200px) rotateY(10deg) rotateX(2deg) scale(0.96);
}

.tv-wall-frame {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tv-screen-glass {
  width: 100%;
  height: 100%;
  position: relative;
}

.tv-screen-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-screen-slide.active {
  opacity: 1;
}

.tv-screen-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tv-broadcast-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: var(--pa-font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.08em;
}

.pulse-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF1F3D;
  box-shadow: 0 0 8px #FF1F3D;
  animation: corePulse 1.5s infinite;
}

.tv-scanlines {
  position: absolute;
  inset: 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.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
  background-size: 100% 3px, 3px 100%;
  pointer-events: none;
}

.tv-glass-specular {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.tv-backlight-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(242, 31, 50, 0.28) 0%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
  z-index: -1;
}

/* Layer 4: Active Energy Laser Stream */
.active-energy-stream {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.laser-track-fast {
  animation: laserTrackFlow 2s linear infinite;
}

.laser-track-core {
  animation: laserTrackFlow 1.2s linear infinite;
}

.orbital-energy-halo {
  position: absolute;
  width: 440px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(242, 31, 50, 0.35);
  transform: rotate(-15deg);
  animation: haloSpin 14s linear infinite;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(242, 31, 50, 0.3));
}

/* Layer 5: Foreground Free-Floating PocketAds Box (No Rectangular Card) */
.hero-product-3d-anchor {
  position: relative;
  z-index: 10;
  width: 80%;
  max-width: 460px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  margin-top: 45px;
  margin-left: 25px;
  cursor: pointer;
}

.hero-device-floating-body {
  position: relative;
  animation: floatDeviceCinematic 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

.device-hardware-render {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 40px rgba(242, 31, 50, 0.35));
  border: none !important;
  outline: none !important;
  transition: filter var(--pa-transition-smooth), transform var(--pa-transition-smooth);
}

.hero-cinematic-stage:hover .device-hardware-render {
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 50px rgba(255, 51, 71, 0.5));
}

.chassis-light-sweep {
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
  transform: skewX(-25deg);
  z-index: 6;
  pointer-events: none;
  animation: lightSweep 6.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.device-ground-shadow {
  position: absolute;
  bottom: -35px;
  left: 10%;
  width: 80%;
  height: 35px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(242, 31, 50, 0.25) 45%, transparent 75%);
  filter: blur(14px);
  z-index: -1;
  animation: shadowPulseCinematic 6s ease-in-out infinite;
}

.device-surface-reflection {
  position: absolute;
  bottom: -45px;
  left: 5%;
  width: 90%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(242, 31, 50, 0.22) 0%, transparent 70%);
  filter: blur(9px);
  opacity: 0.65;
  pointer-events: none;
  animation: reflectionPulse 6s ease-in-out infinite;
}

/* Layer 6: Drifting Tech Photons / Particles */
.stage-particles-system {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 12;
}

.stage-particles-system .photon {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
  animation: photonDrift 7s ease-in-out infinite alternate;
}

.stage-particles-system .pt1 { width: 3px; height: 3px; top: 18%; left: 20%; background: var(--pa-red-bright); box-shadow: 0 0 8px var(--pa-red-bright); animation-duration: 5s; }
.stage-particles-system .pt2 { width: 2px; height: 2px; top: 32%; right: 15%; background: #fff; animation-duration: 7s; animation-delay: 1s; }
.stage-particles-system .pt3 { width: 4px; height: 4px; bottom: 22%; left: 12%; background: var(--pa-red-bright); box-shadow: 0 0 10px var(--pa-red-bright); animation-duration: 6s; animation-delay: 2s; }
.stage-particles-system .pt4 { width: 2px; height: 2px; top: 12%; right: 30%; background: #C5C7CB; animation-duration: 8s; }
.stage-particles-system .pt5 { width: 3px; height: 3px; bottom: 28%; right: 18%; background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.7); animation-duration: 5.5s; animation-delay: 1.5s; }
.stage-particles-system .pt6 { width: 2px; height: 2px; bottom: 12%; left: 34%; background: var(--pa-red-bright); animation-duration: 9s; }
.stage-particles-system .pt7 { width: 3px; height: 3px; top: 45%; left: 48%; background: var(--pa-red-bright); box-shadow: 0 0 6px var(--pa-red-bright); animation-duration: 6.5s; }

/* Keyframe Animations */
@keyframes floatDeviceCinematic {
  0%, 100% {
    transform: translateY(0px) rotateY(-5deg) rotateX(2deg);
  }
  50% {
    transform: translateY(-12px) rotateY(5deg) rotateX(-2deg);
  }
}

@keyframes shadowPulseCinematic {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(0.84);
    opacity: 0.45;
  }
}

@keyframes reflectionPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(0.88);
    opacity: 0.35;
  }
}

@keyframes holoFloatLeft {
  0% {
    transform: perspective(800px) rotateY(18deg) translateY(0);
  }
  100% {
    transform: perspective(800px) rotateY(22deg) translateY(-8px);
  }
}

@keyframes holoFloatRight {
  0% {
    transform: perspective(800px) rotateY(-16deg) translateY(0);
  }
  100% {
    transform: perspective(800px) rotateY(-12deg) translateY(-10px);
  }
}

@keyframes cameraBreathe {
  0% {
    transform: perspective(1400px) rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: perspective(1400px) rotateY(1.5deg) rotateX(0.8deg);
  }
  100% {
    transform: perspective(1400px) rotateY(-1deg) rotateX(-0.5deg);
  }
}

@keyframes laserTrackFlow {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes haloSpin {
  0% {
    transform: rotate(-15deg) translateY(0);
  }
  50% {
    transform: rotate(-10deg) translateY(-6px);
  }
  100% {
    transform: rotate(-15deg) translateY(0);
  }
}

@keyframes photonDrift {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.25;
  }
  50% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(-18px) translateX(12px);
    opacity: 0.2;
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 50px;
    text-align: center;
  }
  .hero-heading {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cinematic-stage {
    height: 420px;
    margin-top: 30px;
  }
  .tv-wall-container {
    width: 82%;
    max-width: 440px;
    top: 2%;
    left: 2%;
  }
  .hero-product-3d-anchor {
    width: 82%;
    max-width: 380px;
    margin-top: 20px;
    margin-left: 0;
  }
  .holo-panel {
    display: none;
  }
  .orbital-energy-halo {
    width: 320px;
    height: 160px;
  }
}

@media (max-width: 576px) {
  .hero-cinematic-stage {
    height: 330px;
  }
  .tv-wall-container {
    width: 88%;
    max-width: 310px;
  }
  .hero-product-3d-anchor {
    width: 92%;
    max-width: 290px;
    margin-top: 10px;
  }
  .active-energy-stream {
    display: none;
  }
  .orbital-energy-halo {
    display: none;
  }
}

/* ==========================================================================
   VALUE STRIP
   ========================================================================== */
.value-strip-wrapper {
  background: var(--pa-bg-secondary);
  border-top: 1px solid var(--pa-card-border);
  border-bottom: 1px solid var(--pa-card-border);
  padding: 35px 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  transition: all var(--pa-transition-fast);
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.value-icon-box {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(242, 31, 50, 0.1);
  border: 1px solid rgba(242, 31, 50, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pa-red-bright);
  font-size: 1.2rem;
}

.value-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--pa-silver-dark);
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .value-strip-wrapper {
    padding: 20px 0;
  }
  .value-item {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--pa-card-border);
  }
}

/* ==========================================================================
   THE PROBLEM & THE SOLUTION
   ========================================================================== */
.problem-card {
  background: rgba(18, 18, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: all var(--pa-transition-smooth);
}

.problem-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(18, 18, 20, 0.9);
}

.problem-card .icon-tag {
  font-size: 0.75rem;
  font-family: var(--pa-font-mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 1rem;
}

.tag-problem {
  background: rgba(255, 255, 255, 0.05);
  color: var(--pa-silver-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-solution {
  background: rgba(242, 31, 50, 0.12);
  color: var(--pa-red-bright);
  border: 1px solid rgba(242, 31, 50, 0.3);
}

/* Solution Flow Track */
.solution-flow-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  position: relative;
  margin-top: 35px;
  width: 100%;
}

.solution-node {
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  position: relative;
  transition: all var(--pa-transition-smooth);
}

.solution-node:hover {
  border-color: var(--pa-red-bright);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(242, 31, 50, 0.2);
}

.solution-node .node-num {
  font-family: var(--pa-font-mono);
  font-size: 0.75rem;
  color: var(--pa-red-bright);
  margin-bottom: 8px;
  font-weight: 700;
}

.solution-node .node-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pa-white);
  margin-bottom: 4px;
}

.solution-node .node-sub {
  font-size: 0.75rem;
  color: var(--pa-silver-dark);
}

@media (max-width: 768px) {
  .problem-card {
    padding: 22px 18px;
  }
  .solution-flow-container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .solution-node {
    padding: 16px 10px;
  }
  .solution-node .node-title {
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  .solution-flow-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ADVERTISING BOX — FLAGSHIP SHOWCASE
   ========================================================================== */
.product-showcase-box {
  background: radial-gradient(circle at center, #18181c 0%, #0c0c0e 70%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 50px 36px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.product-interactive-viewer {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  perspective: 1000px;
}

.product-render-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  transition: transform 0.2s ease-out;
}

/* Product Hotspots */
.product-hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(242, 31, 50, 0.4);
  border: 2px solid var(--pa-red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  z-index: 5;
}

.product-hotspot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--pa-red-bright);
  animation: hotspot-pulse 2s infinite ease-in-out;
}

@keyframes hotspot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.6); opacity: 0; }
}

.hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 18, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--pa-white);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--pa-transition-fast);
}

.product-hotspot:hover .hotspot-tooltip {
  opacity: 1;
}

/* 3-Step Product Story Flow */
.product-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.story-step-card {
  background: rgba(18, 18, 20, 0.8);
  border: 1px solid var(--pa-card-border);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  position: relative;
  transition: all var(--pa-transition-smooth);
}

.story-step-card:hover {
  border-color: var(--pa-red-bright);
  transform: translateY(-4px);
}

.story-step-card .step-label {
  font-family: var(--pa-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pa-red-bright);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .product-showcase-box {
    padding: 28px 16px;
    border-radius: 20px;
  }
  .product-hotspot {
    display: none;
  }
  .product-story-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .story-step-card {
    padding: 18px 14px;
  }
}

/* ==========================================================================
   HOW IT WORKS (5-STEP EXPERIENCE + VIDEO SHOWCASE)
   ========================================================================== */
.how-it-works-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiw-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--pa-transition-smooth);
}

.hiw-step-item.active, .hiw-step-item:hover {
  border-color: var(--pa-red-bright);
  background: var(--pa-card-surface);
  box-shadow: 0 10px 30px rgba(242, 31, 50, 0.15);
}

.hiw-step-num {
  font-family: var(--pa-font-mono);
  font-size: 1.05rem;
  font-weight: 800;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pa-silver);
  transition: all var(--pa-transition-fast);
}

.hiw-step-item.active .hiw-step-num {
  background: var(--pa-red);
  color: #fff;
  border-color: var(--pa-red-bright);
  box-shadow: 0 0 15px var(--pa-red-glow-strong);
}

.hiw-step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.hiw-step-content p {
  margin-bottom: 0;
  font-size: 0.88rem;
  color: var(--pa-silver-dark);
}

/* Video Showcase Right Side */
/* Video Showcase Right Side */
.hiw-video-showcase {
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 20px;
  padding: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(242, 31, 50, 0.15);
  transition: all var(--pa-transition-smooth);
  width: 100%;
}

.hiw-video-showcase:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(242, 31, 50, 0.25);
  transform: translateY(-2px);
}

.hiw-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  display: block;
}

@media (max-width: 991px) {
  .hiw-video-showcase {
    padding: 10px;
    border-radius: 16px;
    margin-top: 10px;
  }
  .hiw-video-wrapper {
    aspect-ratio: 16/9;
    border-radius: 10px;
  }
}

.hiw-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0%, transparent 45%, rgba(5, 5, 5, 0.35) 100%);
  pointer-events: none;
  z-index: 2;
}

.hiw-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: rgba(18, 18, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--pa-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pa-white);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.hiw-sound-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: rgba(242, 31, 50, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--pa-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pa-white);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(242, 31, 50, 0.4);
  transition: all var(--pa-transition-fast);
}

.hiw-sound-btn:hover {
  background: var(--pa-red-bright);
  transform: scale(1.05);
}

.hiw-sound-btn.is-muted {
  background: rgba(18, 18, 20, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  color: var(--pa-silver);
}

.hiw-sound-btn.is-unmuted {
  background: var(--pa-red-bright) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(242, 31, 50, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.hiw-video-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pa-red-bright);
  box-shadow: 0 0 8px var(--pa-red-bright);
  animation: pulse-dot 2s infinite ease-in-out;
}

.hiw-video-bottom-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pa-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pa-silver-light);
  background: rgba(11, 11, 13, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 8px;
}

.hiw-video-bottom-label .accent-bar {
  width: 12px;
  height: 2px;
  background: var(--pa-red-bright);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--pa-red-bright);
}

@media (max-width: 991px) {
  .how-it-works-timeline {
    gap: 10px;
    margin-bottom: 20px;
  }
  .hiw-step-item {
    padding: 14px 12px;
    gap: 12px;
    border-radius: 14px;
  }
  .hiw-step-num {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .hiw-step-content h4 {
    font-size: 0.95rem;
  }
  .hiw-step-content p {
    font-size: 0.82rem;
  }
  .hiw-video-showcase {
    padding: 10px;
    border-radius: 16px;
  }
  .hiw-video-badge {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.65rem;
  }
  .hiw-video-bottom-label {
    bottom: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   ADVERTISING EXPERIENCE & ENVIRONMENTS
   ========================================================================== */
.env-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--pa-card-border);
  color: var(--pa-silver);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--pa-transition-fast);
}

.env-tab-btn.active, .env-tab-btn:hover {
  background: var(--pa-red);
  color: #fff;
  border-color: var(--pa-red-bright);
  box-shadow: 0 0 15px var(--pa-red-glow);
}

@media (max-width: 576px) {
  .env-tab-btn {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

.concept-badge {
  display: inline-block;
  font-family: var(--pa-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--pa-silver-light);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  max-width: 100%;
}

/* ==========================================================================
   CONNECTED SCREEN NETWORK SECTION
   ========================================================================== */
.network-visual-stage {
  position: relative;
  width: 100%;
  height: 440px;
  background: radial-gradient(circle at center, #151518 0%, #08080a 70%, #050505 100%);
  border: 1px solid var(--pa-card-border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#networkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-core-badge {
  position: relative;
  z-index: 10;
  background: rgba(18, 18, 20, 0.9);
  border: 2px solid var(--pa-red-bright);
  padding: 18px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 0 40px var(--pa-red-glow-strong);
}

.network-core-badge h3 {
  font-size: 1.25rem;
  margin-bottom: 2px;
  color: #fff;
}

.network-core-badge span {
  font-family: var(--pa-font-mono);
  font-size: 0.72rem;
  color: var(--pa-red-bright);
  letter-spacing: 0.1em;
}

/* Conceptual Indicators */
.conceptual-indicator-card {
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  transition: all var(--pa-transition-smooth);
}

.conceptual-indicator-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.conceptual-indicator-card .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--pa-red-bright);
  font-size: 1.2rem;
}

.conceptual-indicator-card h4 {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.conceptual-indicator-card p {
  font-size: 0.78rem;
  color: var(--pa-silver-dark);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .network-visual-stage {
    height: 300px;
    border-radius: 16px;
  }
  .network-core-badge {
    padding: 12px 18px;
  }
  .network-core-badge img {
    height: 28px !important;
  }
  .network-core-badge h3 {
    font-size: 1rem;
  }
}

/* ==========================================================================
   TECHNOLOGY ARCHITECTURE DIAGRAM
   ========================================================================== */
.tech-diagram-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 35px 0;
  width: 100%;
}

.tech-diagram-node {
  flex: 1;
  min-width: 150px;
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  position: relative;
  transition: all var(--pa-transition-smooth);
}

.tech-diagram-node:hover {
  border-color: var(--pa-red-bright);
  transform: translateY(-4px);
}

.tech-arrow {
  color: var(--pa-red-bright);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .tech-diagram-wrapper {
    flex-direction: column;
    gap: 8px;
  }
  .tech-diagram-node {
    width: 100%;
    min-width: 0;
    padding: 16px 12px;
  }
  .tech-arrow {
    transform: rotate(90deg);
    margin: -2px 0;
  }
}

/* ==========================================================================
   BRAND VISION FULL-SCREEN
   ========================================================================== */
.brand-vision-section {
  padding: 110px 0;
  background: radial-gradient(circle at center, #1b0a0e 0%, #0b0708 50%, #050505 100%);
  border-top: 1px solid rgba(242, 31, 50, 0.15);
  border-bottom: 1px solid rgba(242, 31, 50, 0.15);
  text-align: center;
  position: relative;
}

.brand-statement-big {
  font-family: var(--pa-font-heading);
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  margin-top: 1.75rem;
}

.brand-statement-big span {
  display: inline-block;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .brand-vision-section {
    padding: 60px 0;
  }
  .brand-statement-big {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 1.25rem;
  }
  .brand-statement-big span {
    padding: 0;
  }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion-item {
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--pa-transition-smooth);
}

.faq-accordion-item.active {
  border-color: var(--pa-card-border-hover);
  background: var(--pa-card-surface);
}

.faq-accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
}

.faq-accordion-header h4 {
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--pa-white);
}

.faq-icon-toggle {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pa-silver);
  font-size: 1rem;
  transition: transform var(--pa-transition-fast), background var(--pa-transition-fast);
}

.faq-accordion-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  background: var(--pa-red);
  color: #fff;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease;
  padding: 0 24px;
  color: var(--pa-silver);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-accordion-item.active .faq-accordion-body {
  padding-bottom: 20px;
}

@media (max-width: 576px) {
  .faq-accordion-header {
    padding: 16px;
  }
  .faq-accordion-header h4 {
    font-size: 0.92rem;
  }
  .faq-accordion-body {
    padding: 0 16px;
    font-size: 0.85rem;
  }
  .faq-accordion-item.active .faq-accordion-body {
    padding-bottom: 16px;
  }
}

/* ==========================================================================
   FINAL CONVERSION SECTION
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%), url('../images/pocketads/screen_wall.jpg');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--pa-card-border);
  border-bottom: 1px solid var(--pa-card-border);
  overflow: hidden;
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   CONTACT SECTION & TWO-COLUMN LAYOUT
   ========================================================================== */
.contact-info-panel {
  width: 100%;
}

.contact-info-card {
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--pa-transition-smooth);
}

.contact-info-card:hover {
  border-color: var(--pa-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(242, 31, 50, 0.15);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(242, 31, 50, 0.1);
  border: 1px solid rgba(242, 31, 50, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pa-red-bright);
  font-size: 1.15rem;
}

.contact-card-body {
  flex: 1;
  min-width: 0;
}

.contact-card-title {
  font-size: 0.8rem;
  font-family: var(--pa-font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pa-silver-dark);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pa-white);
  line-height: 1.5;
  margin-bottom: 0;
  word-break: break-word;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pa-red-bright);
  transition: color var(--pa-transition-fast), transform var(--pa-transition-fast);
}

.contact-card-link:hover {
  color: var(--pa-white);
  transform: translateX(3px);
}

/* Map Embed Container */
.contact-map-box {
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 20px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--pa-shadow-card);
}

.contact-map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.contact-map-embed iframe {
  filter: invert(90%) hue-rotate(180deg) contrast(110%);
}

/* Contact Form Right Side */
.contact-form-glass {
  background: var(--pa-card-bg);
  border: 1px solid var(--pa-card-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--pa-shadow-card);
  width: 100%;
}

.form-group-custom {
  position: relative;
}

.form-control-pocketads {
  width: 100%;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--pa-white);
  font-family: var(--pa-font-main);
  font-size: 0.92rem;
  transition: all var(--pa-transition-fast);
  outline: none;
}

.form-control-pocketads:focus {
  border-color: var(--pa-red-bright);
  box-shadow: 0 0 15px rgba(242, 31, 50, 0.25);
  background: rgba(5, 5, 5, 0.9);
}

.form-control-pocketads.is-invalid {
  border-color: var(--pa-red-bright) !important;
  box-shadow: 0 0 12px rgba(242, 31, 50, 0.35) !important;
}

.form-label-custom {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pa-silver);
  margin-bottom: 6px;
  display: block;
}

.field-error-msg {
  display: block;
  font-family: var(--pa-font-mono);
  font-size: 0.75rem;
  color: var(--pa-red-bright);
  margin-top: 5px;
  min-height: 16px;
}

/* Success Card */
.contact-success-card {
  background: rgba(18, 18, 20, 0.95);
  border: 1px solid rgba(242, 31, 50, 0.35);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(242, 31, 50, 0.2);
  animation: fadeIn 0.4s ease-out;
}

.success-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pa-red-bright), var(--pa-red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 25px var(--pa-red-glow-strong);
  animation: pulse-dot 2s infinite ease-in-out;
}

/* ==========================================================================
   AUTH / REGISTRATION PAGES
   ========================================================================== */
.auth-page-section {
  padding-top: 140px;
  padding-bottom: 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.auth-card-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.auth-glass-card {
  background: #101014;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(242, 31, 50, 0.12);
  overflow: hidden;
}

.auth-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 31, 50, 0.4), transparent);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 18px;
  color: var(--pa-silver-dark);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color var(--pa-transition-fast);
  z-index: 2;
}

.input-with-icon .form-control-pocketads {
  padding-left: 48px;
  padding-right: 18px;
  height: 54px;
  background: #0A0A0C;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  color: #fff;
  font-size: 0.92rem;
}

.input-with-icon .form-control-pocketads:focus {
  border-color: var(--pa-red-bright);
  box-shadow: 0 0 15px rgba(242, 31, 50, 0.25);
  background: #0E0E12;
}

.input-with-icon:focus-within .input-icon {
  color: var(--pa-red-bright);
}

.select-pocketads {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C5C7CB' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  cursor: pointer;
}

.select-pocketads option {
  background: #121214;
  color: #fff;
  padding: 10px;
}

.password-toggle-btn {
  position: absolute;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--pa-silver-dark);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: color var(--pa-transition-fast);
}

.password-toggle-btn:hover {
  color: var(--pa-white);
}

.field-success-msg {
  display: block;
  font-family: var(--pa-font-mono);
  font-size: 0.76rem;
  color: #4ade80;
  margin-top: 4px;
}

/* Credential Display Cards */
.cred-display-card {
  background: #0A0A0C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all var(--pa-transition-fast);
}

.cred-display-card:hover {
  border-color: rgba(242, 31, 50, 0.35);
  box-shadow: 0 4px 15px rgba(242, 31, 50, 0.08);
}

.cred-label-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cred-title {
  font-family: var(--pa-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pa-silver-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cred-val {
  font-family: var(--pa-font-mono);
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  word-break: break-all;
}

.cred-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cred-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--pa-silver);
  padding: 6px 10px;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--pa-transition-fast);
}

.btn-cred-action:hover {
  background: rgba(242, 31, 50, 0.15);
  border-color: var(--pa-red-bright);
  color: #fff;
}

.btn-copy-cred {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--pa-silver);
  font-size: 0.78rem;
  font-family: var(--pa-font-mono);
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all var(--pa-transition-fast);
}

.btn-copy-cred:hover {
  background: var(--pa-red);
  border-color: var(--pa-red);
  color: #fff;
  box-shadow: 0 0 10px rgba(242, 31, 50, 0.3);
}

.btn-copy-cred.copied {
  background: #15803d;
  border-color: #22c55e;
  color: #fff;
}

.security-note-box {
  background: rgba(242, 31, 50, 0.05);
  border: 1px solid rgba(242, 31, 50, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

/* ==========================================================================
   ALERTS & NOTIFICATIONS (Flash / Form Alerts)
   ========================================================================== */
.alert {
  position: relative;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  animation: fadeIn 0.3s ease-out;
  text-align: left;
}

.alert-danger {
  background: rgba(242, 31, 50, 0.12) !important;
  border-color: rgba(242, 31, 50, 0.35) !important;
  color: #ffc9cb !important;
}

.alert-success {
  background: rgba(34, 197, 94, 0.12) !important;
  border-color: rgba(34, 197, 94, 0.35) !important;
  color: #86efac !important;
}

.alert-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-danger .alert-icon {
  color: var(--pa-red-bright);
}

.alert-success .alert-icon {
  color: #22c55e;
}

.alert-message {
  flex: 1;
  min-width: 0;
}

.alert-message strong {
  color: #fff;
  font-weight: 700;
  margin-right: 4px;
}

/* Close Button: Remove ugly white square box browser default */
.alert.alert-dismissible {
  padding-right: 44px;
}

.alert .close,
.alert .btn-close,
.alert [data-dismiss="alert"],
.alert [data-bs-dismiss="alert"] {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: var(--pa-silver-dark) !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  padding: 4px 8px !important;
  cursor: pointer !important;
  opacity: 0.75;
  transition: all var(--pa-transition-fast);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.alert .close:hover,
.alert .btn-close:hover,
.alert [data-dismiss="alert"]:hover,
.alert [data-bs-dismiss="alert"]:hover {
  opacity: 1;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 768px) {
  .auth-page-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .auth-glass-card {
    padding: 28px 18px;
    border-radius: 18px;
  }
  .input-with-icon .form-control-pocketads {
    height: 50px;
    font-size: 0.88rem;
  }
  .cred-display-card {
    padding: 14px 16px;
  }
  .cred-val {
    font-size: 0.96rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .contact-form-glass {
    padding: 24px 16px;
    border-radius: 18px;
  }
  .form-control-pocketads {
    padding: 11px 14px;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.pocketads-footer {
  background: #020202;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 25px;
  color: var(--pa-silver-dark);
}

.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: var(--pa-silver-dark);
  font-size: 0.88rem;
  transition: color var(--pa-transition-fast);
}

.footer-links-list a:hover {
  color: var(--pa-white);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .pocketads-footer {
    padding: 50px 0 20px;
  }
  .footer-bottom-bar {
    margin-top: 35px;
    flex-direction: column;
    text-align: center;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #222226;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--pa-red-dark);
}
