/* ==========================================================================
   ELITE IT FIRM — LUXURY TECHNOLOGY DESIGN SYSTEM
   Brand: Elite IT Firm
   Positioning: Google Growth & Reputation Partner
   Visual Identity: Midnight Black, Deep Navy, Royal Purple, Electric Violet
   ========================================================================== */

:root {
  /* AdCentrl-Inspired Deep Luxury Tech Palette */
  --bg-midnight: #060919;
  --bg-deep-navy: #090e24;
  --bg-surface: #0d1533;
  --bg-card: rgba(13, 21, 51, 0.78);
  --bg-card-hover: rgba(18, 28, 68, 0.92);

  /* Accents & Neon Glows */
  --color-royal-purple: #4f46e5;
  --color-electric-violet: #6366f1;
  --color-violet-bright: #38bdf8;
  --color-cyan-glow: #00e5ff;
  --color-cyan-bright: #00f0ff;
  --color-cyan-subtle: rgba(0, 229, 255, 0.15);
  --color-coral-cta: #ff4757;
  --color-coral-gradient: linear-gradient(135deg, #ff4757 0%, #ff6b6b 100%);
  --color-coral-glow: rgba(255, 71, 87, 0.45);
  --color-highlight: #e0f2fe;

  --border-subtle: rgba(0, 229, 255, 0.16);
  --border-active: rgba(0, 229, 255, 0.45);
  --border-card-top: rgba(0, 229, 255, 0.48);

  /* Typography */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Elevation & Shadows */
  --shadow-subtle: 0 4px 24px -2px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px -5px rgba(0, 229, 255, 0.22);
  --shadow-glow-strong: 0 0 50px -5px rgba(0, 229, 255, 0.4);
  --shadow-coral-glow: 0 8px 30px rgba(255, 71, 87, 0.45);

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-snappy: all 0.2s ease-out;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-midnight);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 229, 255, 0.14), transparent 70%),
    radial-gradient(ellipse 70% 50% at 85% 45%, rgba(79, 70, 229, 0.18), transparent 65%),
    radial-gradient(ellipse 60% 40% at 15% 75%, rgba(0, 229, 255, 0.1), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-spacing {
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}

@media (max-width: 768px) {
  .section-spacing {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Section Header Structure */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-violet-bright);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 680px;
  font-weight: 400;
}

/* ==========================================================================
   LOCKED MINIMAL HEADER & 3-DOT MENU
   ========================================================================== */
.header-minimal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.header-minimal.scrolled {
  background: rgba(7, 5, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 1001;
}

.brand-link img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.brand-tagline-mini {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-violet-bright);
}

/* 3-Dot Menu Button */
.btn-menu-trigger {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(14, 18, 36, 0.75);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 1100;
  color: #ffffff;
  padding: 0;
}

.btn-menu-trigger:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--color-violet-bright);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.btn-menu-trigger:focus-visible {
  outline: 2px solid var(--color-violet-bright);
  outline-offset: 3px;
}

.menu-dot {
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Transform 3-Dots into Close X */
.btn-menu-trigger.active {
  background: rgba(139, 92, 246, 0.25);
  border-color: var(--color-violet-bright);
}

.btn-menu-trigger.active .menu-dot:nth-child(1) {
  transform: translateX(8.5px) rotate(45deg);
  width: 16px;
  height: 2px;
  border-radius: 2px;
}

.btn-menu-trigger.active .menu-dot:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.btn-menu-trigger.active .menu-dot:nth-child(3) {
  transform: translateX(-8.5px) rotate(-45deg);
  width: 16px;
  height: 2px;
  border-radius: 2px;
}

/* ==========================================================================
   FULL-SCREEN NAVIGATION OVERLAY — LOCKED
   ========================================================================== */
.fullscreen-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 10, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
  overflow-y: auto;
  padding: 5rem 2rem 3rem;
}

.fullscreen-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay-glow {
  position: absolute;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-overlay-container {
  width: 100%;
  max-width: 1080px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.overlay-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.overlay-menu-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullscreen-nav-overlay.open .overlay-menu-item {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-nav-overlay.open .overlay-menu-item:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-nav-overlay.open .overlay-menu-item:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-nav-overlay.open .overlay-menu-item:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-nav-overlay.open .overlay-menu-item:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-nav-overlay.open .overlay-menu-item:nth-child(5) { transition-delay: 0.3s; }
.fullscreen-nav-overlay.open .overlay-menu-item:nth-child(6) { transition-delay: 0.35s; }
.fullscreen-nav-overlay.open .overlay-menu-item:nth-child(7) { transition-delay: 0.4s; }

.overlay-nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.overlay-nav-link:hover,
.overlay-nav-link.active {
  color: #ffffff;
  transform: translateX(8px);
}

.overlay-nav-link:hover span.nav-index {
  color: var(--color-violet-bright);
}

.nav-index {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-royal-purple);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.3s ease;
}

/* Expandable Services Trigger */
.services-expand-trigger {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  width: 100%;
}

.submenu-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  display: inline-block;
  color: var(--color-violet-bright);
}

.services-expand-trigger.expanded .submenu-arrow {
  transform: rotate(90deg);
}

/* Services Submenu Container */
.services-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  padding-left: 2.5rem;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.services-submenu.expanded {
  max-height: 380px;
  opacity: 1;
}

.submenu-link {
  font-size: 0.925rem;
  color: #94a3b8;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.submenu-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.submenu-bullet {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-violet-bright);
}

/* Navigation Overlay Right Panel */
.nav-overlay-aside {
  background: rgba(14, 18, 36, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  backdrop-filter: blur(16px);
}

.aside-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-violet-bright);
  font-weight: 600;
}

.aside-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.25;
}

.aside-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 850px) {
  .nav-overlay-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services-submenu {
    grid-template-columns: 1fr;
    padding-left: 1.5rem;
  }
  .nav-overlay-aside {
    display: none;
  }
}

/* Premium Buttons (AdCentrl Luxury Tech Pill Design) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--color-coral-gradient);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 22px var(--color-coral-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 71, 87, 0.65);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(13, 21, 51, 0.65);
  color: var(--text-primary);
  border: 1px solid rgba(0, 229, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--color-cyan-glow);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.35);
  transform: translateY(-2px);
}

/* SECTION 01: CINEMATIC HERO COMMAND CENTER */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-backdrop-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 50vh;
  background: radial-gradient(ellipse at center, rgba(109, 40, 217, 0.18) 0%, rgba(9, 12, 26, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(14, 18, 36, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-violet-bright);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-violet-bright);
  box-shadow: 0 0 10px var(--color-violet-bright);
}

.hero-headline {
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-headline span {
  background: linear-gradient(135deg, #ffffff 30%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-statement {
  font-size: 1.175rem;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 580px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}



/* Hero Visual Command Center */
.hero-visual-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 26, 52, 0.6) 0%, rgba(9, 12, 26, 0.85) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.command-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #10b981;
  text-transform: uppercase;
}

.command-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.hero-centerpiece {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  position: relative;
}

.hero-emblem {
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.5));
}

.hero-orbit-ring {
  position: absolute;
  inset: -15px;
  border: 1px dashed rgba(139, 92, 246, 0.35);
  border-radius: 50%;
  animation: orbit-rotate 20s linear infinite;
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-metric-item {
  text-align: center;
}

.hero-metric-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
}

.hero-metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* SECTION 02: GROWTH INTRODUCTION */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-lead {
  font-size: 1.5rem;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intro-body {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.intro-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(14, 18, 36, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.intro-pillar-icon {
  color: var(--color-violet-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.intro-visual-panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
}

.intro-visual-panel img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* SECTION 03: CORE SERVICES (8 Cards) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-electric-violet), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

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

.service-card-header {
  margin-bottom: 1.25rem;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-violet-bright);
  margin-bottom: 1.25rem;
}

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.service-card-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-violet-bright);
}

.service-card:hover .service-card-link {
  color: #ffffff;
  transform: translateX(3px);
}

/* SECTION 04: GOOGLE GROWTH ECOSYSTEM */
.ecosystem-container {
  background: linear-gradient(180deg, rgba(14, 18, 36, 0.5) 0%, rgba(9, 12, 26, 0.75) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}

.ecosystem-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.ecosystem-node {
  background: rgba(18, 24, 48, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  text-align: center;
  flex: 1;
  min-width: 170px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.ecosystem-node:hover {
  border-color: var(--color-violet-bright);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
}

.ecosystem-node-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.ecosystem-node-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ecosystem-arrow {
  color: var(--color-electric-violet);
  font-size: 1.25rem;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .ecosystem-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .ecosystem-arrow {
    transform: rotate(90deg);
    text-align: center;
    margin: -0.5rem 0;
  }
}

/* SECTION 05: WHY ELITE IT FIRM (Trust Cards) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-card-top);
  border-radius: 12px;
  padding: 2.25rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--color-cyan-bright);
  box-shadow: 0 0 10px var(--color-cyan-glow);
}

.why-card:hover {
  border-color: var(--border-active);
  border-top-color: var(--color-cyan-bright);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.2);
  transform: translateY(-4px);
}

.why-card-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.why-card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* SECTION 06: HOW WE WORK (Analyze -> Execute -> Optimize -> Scale) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-card-top);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.process-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 229, 255, 0.35);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  transition: var(--transition-smooth);
}

.process-card:hover .process-step-num {
  color: var(--color-cyan-bright);
  text-shadow: 0 0 20px var(--color-cyan-glow);
}

.process-card:hover {
  border-color: var(--border-active);
  border-top-color: var(--color-cyan-bright);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.2);
  transform: translateY(-4px);
}

.process-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

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

/* SECTION 07: CASE STUDIES / RESULTS */
.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.case-study-media {
  height: 240px;
  background: #090c1a;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-study-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 5, 18, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-violet-bright);
}

.case-study-content {
  padding: 2rem;
}

.case-study-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.case-study-metric {
  padding: 0.85rem 1rem;
  background: rgba(139, 92, 246, 0.08);
  border-left: 3px solid var(--color-electric-violet);
  margin-bottom: 1.25rem;
  border-radius: 0 6px 6px 0;
}

.case-study-metric-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.case-study-metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.case-study-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 850px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION 08: CLIENT TRUST */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 2.25rem;
  position: relative;
}

.trust-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.trust-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-violet-bright);
}

.trust-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.trust-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SECTION 09: FINAL CINEMATIC EXPERIENCE ("READY TO GROW?") */
.cinematic-experience-section {
  padding: 9rem 0 6rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cinematic-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.16) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

.cinematic-title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  background: linear-gradient(180deg, #ffffff 40%, rgba(196, 181, 253, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cinematic-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 3rem;
}

/* SECTION 10: FINAL CTA */
.final-cta-card {
  background: linear-gradient(145deg, rgba(20, 26, 52, 0.7) 0%, rgba(9, 12, 26, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.final-cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.final-cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem 0 2.5rem;
  background: #040308;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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

/* Floating Direct Action Badge */
.quick-connect-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.15rem;
  background: rgba(14, 18, 36, 0.92);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.quick-connect-badge:hover {
  border-color: var(--color-violet-bright);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.quick-connect-icon {
  color: #10b981;
}

/* ==========================================================================
   INNER PAGES DESIGN SYSTEM COMPONENT CLASSES
   ========================================================================== */

/* Compact Inner Hero */
.inner-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: radial-gradient(circle at 75% 25%, rgba(91, 33, 182, 0.15) 0%, transparent 60%);
}

@media (max-width: 768px) {
  .inner-hero {
    min-height: 48vh;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Breadcrumbs */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.breadcrumb-nav a {
  color: var(--text-secondary);
}

.breadcrumb-nav a:hover {
  color: var(--color-violet-bright);
}

.breadcrumb-sep {
  color: var(--border-subtle);
}

.breadcrumb-current {
  color: var(--color-violet-bright);
}

/* Approach / Process Timeline */
.timeline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  position: relative;
  margin-top: 2.5rem;
}

.timeline-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.75rem;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-step-card:hover {
  border-color: var(--border-active);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.timeline-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-violet-bright);
  margin-bottom: 0.75rem;
}

/* 2-Column Problem & Opportunity Block */
.problem-opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (max-width: 850px) {
  .problem-opportunity-grid {
    grid-template-columns: 1fr;
  }
}

.challenge-box {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 10px;
  padding: 2rem;
}

.opportunity-box {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  padding: 2rem;
}

/* Category Filter Navigation */
.category-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.category-pill {
  padding: 0.5rem 1.15rem;
  background: rgba(14, 18, 36, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.category-pill:hover,
.category-pill.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--color-violet-bright);
  color: #ffffff;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question-btn {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--color-violet-bright);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   ADCENTRL-INSPIRED 3D LASER STREAKS & LIGHTING SYSTEM
   ========================================================================== */
.ambient-laser-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.laser-streak {
  position: absolute;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.95) 75%, #ffffff 100%);
  filter: drop-shadow(0 0 8px #00e5ff) drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
  transform: rotate(-45deg);
  opacity: 0;
  animation: laserTravel 9s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.laser-streak.coral {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 71, 87, 0.95) 75%, #ffffff 100%);
  filter: drop-shadow(0 0 8px #ff4757) drop-shadow(0 0 15px rgba(255, 71, 87, 0.4));
}

.laser-streak.violet {
  background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.95) 75%, #ffffff 100%);
  filter: drop-shadow(0 0 8px #a78bfa);
}

.streak-1 { top: 15%; left: -10%; animation-delay: 0s; }
.streak-2 { top: 40%; left: 20%; animation-delay: 3.2s; }
.streak-3 { top: 65%; left: 60%; animation-delay: 1.8s; }
.streak-4 { top: 80%; left: 10%; animation-delay: 5s; }
.streak-5 { top: 25%; left: 75%; animation-delay: 4.1s; }

@keyframes laserTravel {
  0% {
    transform: translate(-120px, -120px) rotate(-45deg);
    opacity: 0;
  }
  15% {
    opacity: 0.85;
  }
  75% {
    opacity: 0.85;
  }
  100% {
    transform: translate(900px, 900px) rotate(-45deg);
    opacity: 0;
  }
}

/* ==========================================================================
   VIDEO & MEDIA INTEGRATION SYSTEM (CINEMATIC 3D WEB ARCHITECTURE)
   ========================================================================== */

/* Hero Cinematic Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.58;
  pointer-events: none;
  filter: contrast(1.1) saturate(1.15);
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 68% 50%, rgba(6, 9, 25, 0.28) 0%, rgba(6, 9, 25, 0.82) 65%, #060919 100%);
  z-index: 1;
  pointer-events: none;
}

/* Cinematic Showcase Wrapper with Neon Aura */
.cinematic-showcase-wrapper {
  position: relative;
  border-radius: 18px;
}

.cinematic-showcase-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.2) 0%, rgba(79, 70, 229, 0.15) 50%, transparent 75%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.cinematic-showcase-wrapper:hover .cinematic-showcase-glow {
  opacity: 1;
}

/* Video Media Card for editorial layouts */
.video-media-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-top: 1px solid var(--border-card-top);
  background: rgba(13, 21, 51, 0.85);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 229, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.video-media-card:hover {
  border-color: rgba(0, 229, 255, 0.6);
  border-top-color: #00f0ff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 50px rgba(0, 229, 255, 0.3);
  transform: translateY(-4px) scale(1.01);
}

.video-media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Cinematic Edge Vignette to blend videos into the page seamlessly */
.cinematic-card-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(6, 9, 25, 0) 45%, rgba(6, 9, 25, 0.5) 80%, rgba(6, 9, 25, 0.9) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 15px;
}

/* Corner HUD Brackets for 3D tech feel */
.video-media-card::before,
.video-media-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 4;
  transition: border-color 0.3s ease;
}

.video-media-card::before {
  top: 10px;
  right: 10px;
  border-top: 2px solid rgba(0, 229, 255, 0.7);
  border-right: 2px solid rgba(0, 229, 255, 0.7);
}

.video-media-card::after {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid rgba(0, 229, 255, 0.7);
  border-left: 2px solid rgba(0, 229, 255, 0.7);
}

.video-media-card:hover::before,
.video-media-card:hover::after {
  border-color: #00f0ff;
}

/* Video badge overlay */
.video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(5, 7, 15, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a78bfa;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}

/* Alternating service media section */
.editorial-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.editorial-media-row.reverse {
  direction: rtl;
}
.editorial-media-row.reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .editorial-media-row,
  .editorial-media-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
}

/* Final Cinematic Experience Section */
.cinematic-experience-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  margin: 5rem 0 3rem;
  background: #060919;
}

.cinematic-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  filter: contrast(1.1) brightness(0.95);
  z-index: 0;
}

.cinematic-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 9, 25, 0.45) 0%, rgba(6, 9, 25, 0.85) 70%, #060919 100%);
  z-index: 1;
}

.cinematic-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18) 0%, rgba(109, 40, 217, 0.12) 50%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

/* Static image card with luxury styling */
.luxury-media-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.luxury-media-img:hover {
  border-color: var(--border-active);
  transform: scale(1.015);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 35px rgba(109, 40, 217, 0.2);
}

/* ==========================================================================
   PROMPT 06: PREMIUM UI POLISH, CURSOR & 3D INTERACTION SYSTEM
   ========================================================================== */

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-royal-purple), var(--color-violet-bright), #38bdf8);
  z-index: 10001;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* Premium Minimal Custom Cursor (Desktop Only) */
@media (pointer: fine) {
  .cursor-dot {
    width: 6px;
    height: 6px;
    background: #c4b5fd;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.9);
  }
  .cursor-follower {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(167, 139, 250, 0.45);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, background 0.2s ease;
  }
  .cursor-follower.hovering-link {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(167, 139, 250, 0.85);
  }
  .cursor-follower.hovering-button {
    width: 56px;
    height: 56px;
    background: rgba(109, 40, 217, 0.18);
    border-color: rgba(196, 181, 253, 0.95);
  }
}
@media (pointer: coarse), (hover: none) {
  .cursor-dot, .cursor-follower {
    display: none !important;
  }
}

/* Dynamic Specular Sheen on Interactive Glass Cards */
.service-card, .why-card, .case-study-card, .process-card {
  position: relative;
}
.service-card::before, .why-card::before, .case-study-card::before, .process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 280px at var(--card-x, 50%) var(--card-y, 50%), rgba(167, 139, 250, 0.14) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover::before, .why-card:hover::before, .case-study-card:hover::before, .process-card:hover::before {
  opacity: 1;
}

/* Floating 3D Motion */
@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}
.hero-emblem {
  animation: float-subtle 7s ease-in-out infinite;
}

/* Mobile Touch Press Response */
@media (max-width: 768px) {
  .btn:active, .service-card:active, .why-card:active {
    transform: scale(0.975);
    transition: transform 0.12s ease;
  }
}

.hero-video-bg,
.cinematic-video-bg,
.process-ambient-video,
.cinematic-editorial-visual video,
.video-media-card video {
  object-position: center center;
}

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

