/* ==========================================================================
   VIREON DIGITAL - ENHANCED FULLY RESPONSIVE COMPONENTS
   Futuristic Cyberpunk / Neo-Dark Glassmorphic UI
   Optimized for All Viewports: Mobile (320px - 480px), Tablet (768px), Desktop (1024px+)
   ========================================================================== */

/* ==========================================================================
   1. NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  padding: 0.6rem 0;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

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

/* Brand Logo in Nav */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
  transition: transform var(--transition-fast);
}

@media (min-width: 768px) {
  .nav-logo-icon {
    width: 44px;
    height: 44px;
  }
}

.nav-brand:hover .nav-logo-icon {
  transform: scale(1.08) rotate(-3deg);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-pure);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
}

@media (min-width: 768px) {
  .nav-brand-name {
    font-size: 1.4rem;
  }
}

.nav-brand-name .accent-e {
  color: var(--neon-cyan);
  font-weight: 900;
}

.nav-brand-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--neon-teal);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Status Pill */
.nav-status {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: #34d399;
}

@media (min-width: 1200px) {
  .nav-status {
    display: inline-flex;
  }
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulseDot 1.8s infinite;
}

/* Nav Links */
.nav-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    gap: 1.75rem;
  }
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-primary);
  box-shadow: 0 0 8px var(--neon-cyan);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .nav-actions {
    gap: 0.85rem;
  }
}

/* Cyber Audio Toggle Button */
.audio-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .audio-toggle-btn {
    width: 40px;
    height: 40px;
  }
}

.audio-toggle-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  transform: scale(1.05);
}

.audio-toggle-btn.muted {
  color: var(--text-dim);
  border-color: var(--border-subtle);
}

/* Header CTA Button */
#header-cta-btn {
  display: none;
}

@media (min-width: 640px) {
  #header-cta-btn {
    display: inline-flex;
    padding: 0.6rem 1.25rem;
    font-size: 0.88rem;
  }
}

@media (min-width: 1024px) {
  #header-cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Primary CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--grad-primary);
  border-radius: var(--radius-full);
  color: #04070e;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition-fast);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-full);
  color: var(--text-pure);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--neon-cyan);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-deep);
  border-left: 1px solid var(--border-cyan);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 99;
  padding: 5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-smooth);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.85);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  display: block;
}

.mobile-nav-links a:hover {
  color: var(--neon-cyan);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 3.5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 7.5rem 0 4.5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8.5rem 0 5rem 0;
  }
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
  max-width: 100%;
}

@media (min-width: 640px) {
  .hero-badge {
    font-size: 0.85rem;
    padding: 0.45rem 1.15rem;
    margin-bottom: 1.5rem;
  }
}

.hero-badge .sparkle {
  color: #fbbf24;
  font-size: 0.95rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-pure);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-subheadline {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  width: 100%;
}

@media (min-width: 500px) {
  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    flex: 0 0 auto;
    width: auto;
  }
}

.hero-cta-group .btn-primary,
.hero-cta-group .btn-secondary {
  width: 100%;
}

@media (min-width: 500px) {
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: auto;
  }
}

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

.avatar-stack {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatar-stack .avatar-initials {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-space);
  margin-left: -8px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #04070e;
  font-size: 0.72rem;
}

@media (min-width: 640px) {
  .avatar-stack .avatar-initials {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }
}

.avatar-stack .avatar-initials:first-child {
  margin-left: 0;
}

.social-proof-text {
  display: flex;
  flex-direction: column;
}

.social-proof-stars {
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.social-proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .social-proof-label {
    font-size: 0.85rem;
  }
}

/* Hero Visual / 3D Holographic Card */
.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.4), rgba(0, 196, 159, 0.2), rgba(0, 114, 245, 0.4));
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.18), 0 0 25px rgba(0, 240, 255, 0.12);
}

@media (min-width: 1024px) {
  .hero-card-wrapper {
    animation: floatCard 6s ease-in-out infinite;
  }
}

.hero-card-inner {
  position: relative;
  border-radius: calc(var(--radius-lg) - 2px);
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-card-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 2px);
  transition: transform var(--transition-slow);
}

/* Floating Glass Stat Badges (Responsive Placement) */
.floating-stat-badge {
  position: absolute;
  padding: 0.6rem 0.9rem;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 3;
}

@media (max-width: 1023px) {
  .floating-stat-badge.top-left {
    top: 10px;
    left: 10px;
  }
  .floating-stat-badge.bottom-right {
    bottom: 10px;
    right: 10px;
  }
}

@media (min-width: 1024px) {
  .floating-stat-badge {
    padding: 0.85rem 1.25rem;
    gap: 0.85rem;
  }
  .floating-stat-badge.top-left {
    top: -18px;
    left: -18px;
    animation: floatBadge 5s ease-in-out infinite;
  }
  .floating-stat-badge.bottom-right {
    bottom: -18px;
    right: -18px;
    animation: floatBadge 5s ease-in-out infinite 2.5s;
  }
}

.badge-icon-glow {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .badge-icon-glow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

.badge-stat-val {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.1;
}

@media (min-width: 640px) {
  .badge-stat-val {
    font-size: 1.1rem;
  }
}

.badge-stat-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (min-width: 640px) {
  .badge-stat-lbl {
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   3. STATS / IMPACT TICKER
   ========================================================================== */
.stats-ribbon-section {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .stats-ribbon-section {
    margin-top: -1.5rem;
    padding-bottom: 4rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 1.25rem 0.85rem;
  box-shadow: var(--shadow-card);
}

@media (max-width: 359px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 2.25rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0.5rem 0.25rem;
}

@media (min-width: 1024px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-cyan), transparent);
  }
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 0.88rem;
  }
}

.stat-change {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #34d399;
}

@media (min-width: 640px) {
  .stat-change {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   4. SERVICES MATRIX
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

@media (min-width: 640px) {
  .service-card {
    padding: 2.25rem 1.75rem;
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

@media (min-width: 640px) {
  .service-icon-box {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
  }
}

.service-card:hover .service-icon-box {
  background: var(--grad-primary);
  color: #04070e;
  box-shadow: 0 0 20px var(--neon-cyan);
  transform: scale(1.06) rotate(3deg);
}

.service-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-cyan);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .service-title {
    font-size: 1.4rem;
  }
}

.service-subtitle {
  font-size: 0.85rem;
  color: var(--neon-teal);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.service-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--text-bright);
  word-break: break-word;
}

.service-feature-item svg {
  color: var(--neon-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-metric-pill {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: #34d399;
}

.service-action-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}

.service-action-link:hover {
  gap: 0.55rem;
  text-shadow: 0 0 10px var(--neon-cyan);
}

/* ==========================================================================
   5. VIDEO SHOWCASE & REEL THEATER
   ========================================================================== */
.video-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.video-filter-btn {
  padding: 0.45rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

@media (min-width: 640px) {
  .video-filter-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }
}

.video-filter-btn:hover, .video-filter-btn.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .video-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .video-showcase-grid {
    gap: 2rem;
  }
}

.video-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-card-hover);
}

.video-thumbnail-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #03060c;
  overflow: hidden;
}

.video-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.video-thumbnail-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

.video-card:hover .video-card-thumb-img {
  transform: scale(1.06);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 14, 0.2) 0%, rgba(4, 7, 14, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.play-pulse-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #04070e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--neon-cyan);
  transition: transform var(--transition-fast);
}

@media (min-width: 640px) {
  .play-pulse-btn {
    width: 58px;
    height: 58px;
  }
}

.video-card:hover .play-pulse-btn {
  transform: scale(1.12);
}

.video-badge-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 0.2rem 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.video-badge-category {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.2rem 0.6rem;
  background: rgba(0, 240, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-transform: uppercase;
}

.video-info-box {
  padding: 1.25rem 1rem;
}

@media (min-width: 640px) {
  .video-info-box {
    padding: 1.5rem;
  }
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.45rem;
}

.video-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.video-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: #34d399;
}

/* Video Lightbox Modal (Fully Responsive) */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 14, 0.94);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

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

.video-modal-container {
  width: 100%;
  max-width: 960px;
  background: var(--bg-card);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.35);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

@media (min-width: 768px) {
  .video-modal-container {
    border-radius: var(--radius-xl);
  }
}

.video-modal-backdrop.open .video-modal-container {
  transform: scale(1);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-cyan);
  background: var(--bg-deep);
}

.video-modal-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1rem;
}

.video-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.video-modal-close:hover {
  background: var(--neon-cyan);
  color: #04070e;
  transform: scale(1.1);
}

.video-modal-body {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-body video, .video-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   6. INTERACTIVE SALES & MARKETING ROI CALCULATOR
   ========================================================================== */
.calculator-panel {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .calculator-panel {
    padding: 2.25rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .calculator-panel {
    padding: 3.5rem;
    border-radius: var(--radius-xl);
  }
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .calculator-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.calc-inputs-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.slider-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-pure);
}

@media (min-width: 640px) {
  .slider-label {
    font-size: 1rem;
  }
}

.slider-value-badge {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 800;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--border-cyan);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Custom Cyber Range Input */
.cyber-range-input {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #111d33;
  outline: none;
  transition: background var(--transition-fast);
}

.cyber-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neon-cyan);
  cursor: pointer;
  box-shadow: 0 0 15px var(--neon-cyan);
  border: 2px solid #ffffff;
  transition: transform var(--transition-fast);
}

.slider-subinfo {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* Calculated Results Display Box */
.calc-results-card {
  background: rgba(14, 25, 48, 0.85);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.2);
  position: relative;
}

@media (min-width: 640px) {
  .calc-results-card {
    padding: 2.25rem;
  }
}

.calc-results-card::before {
  content: 'ESTIMATED GROWTH TRAJECTORY';
  position: absolute;
  top: -11px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--neon-cyan);
  color: #04070e;
  padding: 0.12rem 0.55rem;
  border-radius: var(--radius-sm);
}

.results-primary-box {
  text-align: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-cyan);
}

.results-primary-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.results-primary-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 3.25rem);
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  word-break: break-word;
}

.results-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
}

@media (max-width: 359px) {
  .results-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.result-mini-metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mini-metric-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
}

.mini-metric-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
}

@media (min-width: 640px) {
  .mini-metric-value {
    font-size: 1.35rem;
  }
}

/* Growth Progress Meter */
.calc-growth-bar {
  margin-bottom: 1.25rem;
}

.growth-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.growth-bar-fill {
  height: 100%;
  width: 68%;
  background: var(--grad-primary);
  box-shadow: 0 0 12px var(--neon-cyan);
  transition: width var(--transition-smooth);
}

/* ==========================================================================
   7. INTERACTIVE AI GROWTH COPILOT SIMULATOR
   ========================================================================== */
.ai-copilot-card {
  background: var(--bg-card);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .ai-copilot-card {
    border-radius: var(--radius-xl);
  }
}

.copilot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-cyan);
}

@media (min-width: 640px) {
  .copilot-header {
    padding: 1.5rem 2rem;
  }
}

.copilot-brand-tag {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.copilot-avatar {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  color: #04070e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .copilot-avatar {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

.copilot-title-wrap h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
}

@media (min-width: 640px) {
  .copilot-title-wrap h4 {
    font-size: 1.05rem;
  }
}

.copilot-title-wrap p {
  font-size: 0.7rem;
  color: var(--neon-teal);
  font-family: var(--font-mono);
}

.copilot-body {
  padding: 1.5rem 1rem;
}

@media (min-width: 640px) {
  .copilot-body {
    padding: 2rem;
  }
}

.copilot-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.copilot-step.active {
  display: block;
}

.copilot-question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .copilot-question {
    font-size: 1.25rem;
  }
}

.copilot-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .copilot-options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.copilot-option-btn {
  padding: 1rem;
  background: rgba(16, 29, 54, 0.6);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  text-align: left;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

@media (min-width: 640px) {
  .copilot-option-btn {
    padding: 1.25rem;
  }
}

.copilot-option-btn:hover, .copilot-option-btn.selected {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
}

.option-btn-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
}

.option-btn-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Copilot Result Box */
.copilot-result-box {
  background: rgba(7, 13, 24, 0.8);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
}

@media (min-width: 640px) {
  .copilot-result-box {
    padding: 2rem;
  }
}

.copilot-result-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.copilot-ai-badge {
  padding: 0.25rem 0.65rem;
  background: var(--neon-cyan);
  color: #04070e;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
}

.copilot-output-text {
  font-size: 0.95rem;
  color: var(--text-bright);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   8. COMPARISON MATRIX
   ========================================================================== */
.mobile-only-hint {
  display: block;
}

@media (min-width: 768px) {
  .mobile-only-hint {
    display: none;
  }
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-cyan);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .comparison-table-wrap {
    border-radius: var(--radius-xl);
  }
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 580px;
}

.comparison-table th, .comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
}

@media (min-width: 768px) {
  .comparison-table th, .comparison-table td {
    padding: 1.35rem 1.75rem;
    font-size: 0.95rem;
  }
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-pure);
  background: var(--bg-deep);
}

@media (min-width: 768px) {
  .comparison-table th {
    font-size: 1.05rem;
  }
}

.comparison-table th.highlight-col {
  background: rgba(0, 240, 255, 0.12);
  color: var(--neon-cyan);
  border-left: 1px solid var(--neon-cyan);
  border-right: 1px solid var(--neon-cyan);
}

.comparison-table td.highlight-col {
  background: rgba(0, 240, 255, 0.05);
  font-weight: 700;
  color: var(--text-pure);
  border-left: 1px solid var(--border-cyan);
  border-right: 1px solid var(--border-cyan);
}

.check-icon-cyan {
  color: var(--neon-cyan);
  font-size: 1.15rem;
}

.cross-icon-dim {
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* ==========================================================================
   9. CASE STUDIES
   ========================================================================== */
.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .case-card {
    padding: 2.25rem;
  }
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-card-hover);
}

.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.case-client-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
}

@media (min-width: 640px) {
  .case-client-name {
    font-size: 1.25rem;
  }
}

.case-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--neon-teal);
  background: rgba(0, 196, 159, 0.1);
  border: 1px solid var(--border-teal);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.case-metric-headline {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--neon-cyan);
  margin-bottom: 0.85rem;
}

@media (min-width: 640px) {
  .case-metric-headline {
    font-size: 1.65rem;
  }
}

.case-stats-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.case-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-bright);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.case-story {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   10. PROTOCOL BLUEPRINT
   ========================================================================== */
.protocol-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .protocol-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .protocol-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}

.protocol-step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  transition: all var(--transition-smooth);
}

.protocol-step-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 1.85rem;
  font-weight: 900;
  color: rgba(0, 240, 255, 0.25);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .step-number {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
}

.protocol-step-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.6rem;
}

.protocol-step-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   11. FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-pure);
  background: transparent;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .faq-question-btn {
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
  }
}

.faq-icon-chevron {
  width: 20px;
  height: 20px;
  color: var(--neon-cyan);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-answer-inner {
  padding: 0 1rem 1.25rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .faq-answer-inner {
    padding: 0 1.75rem 1.5rem 1.75rem;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   12. BOOKING / CONTACT SECTION
   ========================================================================== */
.booking-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .booking-card {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1024px) {
  .booking-card {
    padding: 4rem;
    border-radius: var(--radius-xl);
  }
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.booking-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.booking-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.quick-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.quick-contact-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-pure);
}

.quick-contact-link {
  font-size: 0.85rem;
  color: var(--neon-cyan);
  transition: color var(--transition-fast);
  word-break: break-all;
}

/* Interactive Consultation Form */
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-bright);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(14, 26, 48, 0.6);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  color: var(--text-pure);
  font-size: 16px; /* 16px prevents iOS Safari zoom on focus */
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  background: rgba(14, 26, 48, 0.9);
}

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

/* ==========================================================================
   13. FLOATING ACTION DOCK (WhatsApp, Phone, Scroll-To-Top)
   ========================================================================== */
.floating-action-dock {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

@media (min-width: 768px) {
  .floating-action-dock {
    bottom: 24px;
    right: 24px;
    gap: 12px;
  }
}

.dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-fast);
  position: relative;
}

@media (min-width: 768px) {
  .dock-btn {
    width: 52px;
    height: 52px;
  }
}

.dock-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.dock-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.5);
  animation: pulseWhatsApp 3s infinite;
}

.dock-phone {
  background: var(--grad-primary);
  color: #04070e;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
}

.dock-top {
  background: var(--bg-deep);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.dock-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.dock-tooltip {
  display: none;
  position: absolute;
  right: 64px;
  background: var(--bg-deep);
  border: 1px solid var(--border-cyan);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-pure);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .dock-tooltip {
    display: block;
  }
}

.dock-btn:hover .dock-tooltip {
  opacity: 1;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-cyan);
  padding: 3.5rem 0 2rem 0;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 5rem 0 2.5rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 3rem;
  }
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 1rem 0 1.5rem 0;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--grad-primary);
  color: #04070e;
  box-shadow: 0 0 15px var(--neon-cyan);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 1rem;
}

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

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

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
    font-size: 0.85rem;
  }
}
