/* ==========================================================================
   creativeBitz - Premium Dark Studio Stylesheet
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* --- Design System & CSS Variables --- */
:root {
  --bg-dark: #08090b;
  --bg-card: #0e1117;
  --bg-card-hover: #141821;
  --bg-glass: rgba(14, 17, 23, 0.75);

  --primary-orange: #ff6b00;
  --primary-orange-light: #ff8800;
  --primary-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  --primary-glow: rgba(255, 107, 0, 0.35);
  --primary-glow-strong: rgba(255, 107, 0, 0.6);

  --text-white: #ffffff;
  --text-primary: #f0f2f5;
  --text-muted: #9aa3b2;
  --text-dark: #626b7a;

  --border-dark: rgba(255, 255, 255, 0.08);
  --border-orange: rgba(255, 107, 0, 0.3);
  --border-orange-bright: rgba(255, 107, 0, 0.7);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(255, 107, 0, 0.25);
}

/* --- Global Reset & Base Styles --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  letter-spacing: 0.25px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

a,
button,
input,
select,
textarea,
div,
span {
  -webkit-tap-highlight-color: transparent;
}

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

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

ul {
  list-style: none;
}

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

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

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

.text-orange {
  color: var(--primary-orange);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-white);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow-strong);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
}

.btn-outline-orange:hover {
  background: var(--primary-orange);
  color: var(--text-white);
  box-shadow: 0 4px 20px var(--primary-glow);
  transform: translateY(-2px);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 14px 0;
  background: rgba(8, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

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

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-full-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.25));
  display: block;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.logo:hover .nav-full-logo {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 0 18px rgba(255, 107, 0, 0.8));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-orange);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary-orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Navigation Components Base Rules */
.nav-icon,
.mobile-nav-header,
.mobile-nav-footer {
  display: none;
}

/* Mobile Menu Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-toggle span {
  width: 16px;
  height: 2px;
  background-color: var(--text-white);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, background-color 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

/* Animated Hamburger to Glowing Scaled X Icon */
.mobile-toggle.active {
  background: rgba(255, 107, 0, 0.18);
  border-color: var(--primary-orange);
  box-shadow: 0 0 12px var(--primary-glow);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background-color: var(--primary-orange);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background-color: var(--primary-orange);
}

/* --- Hero Section --- */
.hero {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

/* Ambient Glow Behind Hero */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(8, 9, 11, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}

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

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(255, 107, 0, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-orange);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-white);
  margin-bottom: 22px;
}

.hero-title span.highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

/* Social Proof Stars */
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -10px;
  object-fit: cover;
}

.avatar-group img:first-child {
  margin-left: 0;
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stars {
  color: #ffb800;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

.rating-text strong {
  color: var(--text-white);
}

/* --- Hero Interactive Orbital Diagram --- */
.hero-diagram {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 107, 0, 0.25);
  animation: rotateOrbit 40s linear infinite;
}

.orbit-outer {
  width: 480px;
  height: 480px;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.15);
}

.orbit-inner-ring {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 107, 0, 0.35);
  box-shadow: inset 0 0 25px rgba(255, 107, 0, 0.08);
  animation: rotateOrbitAntiClockwise 30s linear infinite;
}

/* Real-Time Outer Orbit Seconds Dial (480px Ring) */
.second-dot-container {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 25;
  will-change: transform;
}

.second-dot-glow {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-orange);
  box-shadow:
    0 0 15px var(--primary-orange),
    0 0 30px var(--primary-glow-strong),
    0 0 45px rgba(255, 107, 0, 0.8);
  border: 2px solid #ffffff;
  animation: secondDotPulse 2s ease-in-out infinite alternate;
}

@keyframes secondDotPulse {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 12px var(--primary-orange), 0 0 25px var(--primary-glow-strong);
  }
  100% {
    transform: translateX(-50%) scale(1.25);
    box-shadow: 0 0 22px var(--primary-orange), 0 0 40px var(--primary-glow-strong);
  }
}

/* Real-Time Inner Orbit Minutes Dial (350px Ring) */
.minute-dot-container {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 24;
  will-change: transform;
}

.minute-dot-glow {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00f2fe;
  box-shadow:
    0 0 15px #00f2fe,
    0 0 30px rgba(0, 242, 254, 0.8),
    0 0 45px rgba(0, 242, 254, 0.6);
  border: 2px solid #ffffff;
  animation: minuteDotPulse 2.5s ease-in-out infinite alternate;
}

@keyframes minuteDotPulse {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 12px #00f2fe, 0 0 25px rgba(0, 242, 254, 0.8);
  }
  100% {
    transform: translateX(-50%) scale(1.25);
    box-shadow: 0 0 22px #00f2fe, 0 0 40px rgba(0, 242, 254, 1);
  }
}

/* Real-Time Logo Hub Edge Orbit Hours Dial (220px Ring) */
.hour-dot-container {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 32;
  will-change: transform;
}

.hour-dot-glow {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff007f;
  box-shadow:
    0 0 15px #ff007f,
    0 0 30px rgba(255, 0, 127, 0.8),
    0 0 45px rgba(255, 0, 127, 0.6);
  border: 2px solid #ffffff;
  animation: hourDotPulse 3s ease-in-out infinite alternate;
}

@keyframes hourDotPulse {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 10px #ff007f, 0 0 20px rgba(255, 0, 127, 0.8);
  }
  100% {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 20px #ff007f, 0 0 35px rgba(255, 0, 127, 1);
  }
}

/* Modern Glassmorphism Floating Hint Badge (Appears on Hover) */
.orbit-hint-badge {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.95);
  z-index: 35;
  background: rgba(14, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 107, 0, 0.5);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 107, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  white-space: nowrap;
}

.orbit-hub:hover + .orbit-hint-badge,
.orbit-hint-badge:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
  animation: badgeFloat 2.5s ease-in-out infinite alternate;
}

.orbit-hint-badge:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 22px var(--primary-glow);
}

.color-preview-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange);
  display: inline-block;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

@keyframes badgeFloat {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-5px); }
}

/* Central Enlarged Glowing Logo Hub Container */
.orbit-hub {
  position: relative;
  z-index: 30;
  pointer-events: auto;
  width: 220px;
  height: 220px;
  background: var(--bg-card);
  border: 2px solid rgba(255, 136, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 25px rgba(255, 107, 0, 0.6),
    0 0 50px rgba(255, 136, 0, 0.4),
    0 0 90px rgba(255, 107, 0, 0.25),
    inset 0 0 25px rgba(255, 107, 0, 0.4);
  transition: transform 0.55s cubic-bezier(0.68, -0.6, 0.32, 1.6), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  animation: autoColorShiftGlow 24s ease-in-out infinite;
}

/* Bouncy Elastic Hover & Tap Active Animation */
.orbit-hub:hover {
  transform: scale(1.15) rotate(2deg);
  box-shadow:
    0 0 45px rgba(255, 107, 0, 0.95),
    0 0 90px rgba(255, 136, 0, 0.75),
    0 0 140px rgba(255, 107, 0, 0.5),
    inset 0 0 35px rgba(255, 107, 0, 0.8);
}

.orbit-hub:active {
  transform: scale(0.92) rotate(-3deg);
  transition: transform 0.12s ease;
}

/* Organic Soft Micro-Glow Halo (Behind Hub) - Tightened Glow Spread */
.orbit-hub::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--primary-orange);
  box-shadow: 0 0 20px var(--primary-orange), 0 0 36px rgba(255, 107, 0, 0.5);
  filter: blur(10px);
  opacity: 0.75;
  z-index: -1;
  animation: singleColorShiftGlow 24s ease-in-out infinite, breatheGlow 4s ease-in-out infinite alternate;
  transition: all 0.5s ease;
}

/* Color Theme 2: Electric Cyan & Deep Blue */
.orbit-hub.glow-cyan::before {
  background: conic-gradient(from 0deg, #00f2fe, #4facfe, #00c6ff, #0072ff, #00f2fe);
}

.orbit-hub.glow-cyan {
  border-color: rgba(0, 242, 254, 0.85);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.8), 0 0 70px rgba(79, 172, 254, 0.5);
}

/* Color Theme 3: Cyberpunk Emerald & Neon Lime */
.orbit-hub.glow-emerald::before {
  background: conic-gradient(from 0deg, #00ff87, #60efff, #00e5ff, #00ff87);
}

.orbit-hub.glow-emerald {
  border-color: rgba(0, 255, 135, 0.85);
  box-shadow: 0 0 35px rgba(0, 255, 135, 0.8), 0 0 70px rgba(96, 239, 255, 0.5);
}

/* Color Theme 4: Sunset Magenta & Neon Pink */
.orbit-hub.glow-magenta::before {
  background: conic-gradient(from 0deg, #ff007f, #ff758c, #ff7eb3, #ff007f);
}

.orbit-hub.glow-magenta {
  border-color: rgba(255, 0, 127, 0.85);
  box-shadow: 0 0 35px rgba(255, 0, 127, 0.8), 0 0 70px rgba(255, 117, 140, 0.5);
}

/* Color Theme 5: Royal Gold & Solar Amber */
.orbit-hub.glow-gold::before {
  background: conic-gradient(from 0deg, #ffd700, #ff8c00, #ff4500, #ffd700);
}

.orbit-hub.glow-gold {
  border-color: rgba(255, 215, 0, 0.85);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.8), 0 0 70px rgba(255, 140, 0, 0.5);
}

/* Inner Pulsating Light Rim */
.orbit-hub::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 170, 0, 0.6);
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.5);
  pointer-events: none;
  z-index: 2;
  animation: rimShimmer 3s ease-in-out infinite alternate;
}

.orbit-hub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: logoSubtlePulse 4s ease-in-out infinite alternate;
}

@keyframes logoSubtlePulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.4));
  }
  100% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 22px rgba(255, 136, 0, 0.8));
  }
}

/* Real-Time Digital Clock Glassmorphism Box Badge (Hidden by default; preserved for future activation) */
.hub-digital-clock {
  display: none !important;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.45);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.85), 0 0 12px rgba(255, 107, 0, 0.25);
  pointer-events: none;
  transition: all var(--transition-fast);
  align-items: center;
  gap: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.orbit-hub:hover .hub-digital-clock {
  border-color: var(--primary-orange);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.9), 0 0 20px var(--primary-glow);
}

/* Matching Colors with the 3 Orbit Clock Dots */
.clock-hr {
  color: #ff007f; /* Magenta - matching 220px Logo Hub Edge Hours Dot */
  text-shadow: 0 0 8px rgba(255, 0, 127, 0.8);
}

.clock-min {
  color: #00f2fe; /* Cyan - matching 350px Middle Orbit Minutes Dot */
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
}

.clock-sec {
  color: #ff6b00; /* Neon Orange - matching 480px Outer Orbit Seconds Dot */
  text-shadow: 0 0 8px rgba(255, 107, 0, 0.8);
}

.clock-ampm {
  color: #ffffff;
  font-size: 0.64rem;
  margin-left: 3px;
  opacity: 0.9;
}

.orbit-hub:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow:
    0 0 45px rgba(255, 107, 0, 0.95),
    0 0 90px rgba(255, 136, 0, 0.75),
    0 0 140px rgba(255, 107, 0, 0.5),
    inset 0 0 35px rgba(255, 107, 0, 0.8);
}

.orbit-hub:hover .orbit-hub-img {
  animation: logoHoverFloating 2s ease-in-out infinite;
}

@keyframes logoHoverFloating {
  0% {
    transform: scale(1.08) rotate(-4deg);
    filter: brightness(1.15) drop-shadow(0 0 18px rgba(255, 107, 0, 0.9));
  }

  50% {
    transform: scale(1.15) rotate(4deg);
    filter: brightness(1.28) drop-shadow(0 0 28px rgba(255, 187, 0, 1));
  }

  100% {
    transform: scale(1.08) rotate(-4deg);
    filter: brightness(1.15) drop-shadow(0 0 18px rgba(255, 107, 0, 0.9));
  }
}

.orbit-hub:hover::before {
  opacity: 0.95;
  filter: blur(30px);
  transform: scale(1.2);
  animation-duration: 4s, 2s;
}

.orbit-hub:hover::after {
  border-color: rgba(255, 187, 0, 1);
  box-shadow: 0 0 30px rgba(255, 136, 0, 0.9);
}

/* Micro-Glow Keyframe Animations */
@keyframes rotateMicroGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes breatheGlow {
  0% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  100% {
    opacity: 0.82;
    transform: scale(1.04);
  }
}

@keyframes rimShimmer {
  0% {
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
  }

  100% {
    border-color: rgba(255, 187, 0, 0.9);
    box-shadow: 0 0 22px rgba(255, 136, 0, 0.7);
  }
}

/* Single Solid Color Smooth Transition Animations (Starts & Returns to Logo Orange #ff6b00) */
@keyframes autoColorShiftGlow {
  0%, 100% {
    border-color: rgba(255, 107, 0, 0.9);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.3), inset 0 0 15px rgba(255, 107, 0, 0.3);
  }
  25% {
    border-color: rgba(255, 140, 0, 0.9);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.6), 0 0 30px rgba(255, 140, 0, 0.3), inset 0 0 15px rgba(255, 140, 0, 0.3);
  }
  50% {
    border-color: rgba(0, 242, 254, 0.9);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.6), 0 0 30px rgba(0, 242, 254, 0.3), inset 0 0 15px rgba(0, 242, 254, 0.3);
  }
  75% {
    border-color: rgba(0, 255, 135, 0.9);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.6), 0 0 30px rgba(0, 255, 135, 0.3), inset 0 0 15px rgba(0, 255, 135, 0.3);
  }
}

@keyframes singleColorShiftGlow {
  0%, 100% {
    background: #ff6b00;
    box-shadow: 0 0 20px #ff6b00, 0 0 36px rgba(255, 107, 0, 0.5);
  }
  25% {
    background: #ff8c00;
    box-shadow: 0 0 20px #ff8c00, 0 0 36px rgba(255, 140, 0, 0.5);
  }
  50% {
    background: #00f2fe;
    box-shadow: 0 0 20px #00f2fe, 0 0 36px rgba(0, 242, 254, 0.5);
  }
  75% {
    background: #00ff87;
    box-shadow: 0 0 20px #00ff87, 0 0 36px rgba(0, 255, 135, 0.5);
  }
}

/* Revolving Planetary Orbit System (5 Nodes) */
.orbit-system {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  animation: orbitSystemRotate 50s linear infinite;
  z-index: 15;
  pointer-events: none;
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.item-1 {
  transform: rotate(0deg) translate(0, -220px);
}

.item-2 {
  transform: rotate(72deg) translate(0, -220px);
}

.item-3 {
  transform: rotate(144deg) translate(0, -220px);
}

.item-4 {
  transform: rotate(216deg) translate(0, -220px);
}

.item-5 {
  transform: rotate(288deg) translate(0, -220px);
}

/* Orbital Feature Nodes */
.orbit-node {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  pointer-events: auto;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 107, 0, 0.18);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
  white-space: nowrap;
}

.item-1 .orbit-node {
  animation: nodeCounter1 50s linear infinite;
}

.item-2 .orbit-node {
  animation: nodeCounter2 50s linear infinite;
}

.item-3 .orbit-node {
  animation: nodeCounter3 50s linear infinite;
}

.item-4 .orbit-node {
  animation: nodeCounter4 50s linear infinite;
}

.item-5 .orbit-node {
  animation: nodeCounter5 50s linear infinite;
}

.orbit-node-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.15);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}

.orbit-node:hover,
.orbit-node.active {
  border-color: var(--primary-orange);
  box-shadow: 0 0 25px var(--primary-glow-strong);
  transform: scale(1.1);
  color: var(--text-white);
  background: #141821;
}

.orbit-node:hover .orbit-node-icon,
.orbit-node.active .orbit-node-icon {
  background: var(--primary-orange);
  color: var(--text-white);
  box-shadow: 0 0 12px var(--primary-glow);
}

/* Orbit System Rotation & Counter Rotations */
@keyframes orbitSystemRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes nodeCounter1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes nodeCounter2 {
  0% {
    transform: rotate(-72deg);
  }

  100% {
    transform: rotate(-432deg);
  }
}

@keyframes nodeCounter3 {
  0% {
    transform: rotate(-144deg);
  }

  100% {
    transform: rotate(-504deg);
  }
}

@keyframes nodeCounter4 {
  0% {
    transform: rotate(-216deg);
  }

  100% {
    transform: rotate(-576deg);
  }
}

@keyframes nodeCounter5 {
  0% {
    transform: rotate(-288deg);
  }

  100% {
    transform: rotate(-648deg);
  }
}

/* Keyframes */
@keyframes rotateOrbit {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateOrbitAntiClockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* --- Services Section ("WHAT WE DO") --- */
.services {
  padding: 80px 0;
  position: relative;
}

.title-underline {
  position: relative;
  display: inline-block;
}

.title-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-orange);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 107, 0, 0.28);
}

.service-icon {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  color: var(--primary-orange);
  font-size: 1.8rem;
  margin-bottom: 10px;
  transition: transform var(--transition-fast), color var(--transition-fast), text-shadow var(--transition-fast);
}

.service-card:hover .service-icon {
  transform: scale(1.18) rotate(6deg);
  color: var(--primary-orange-light);
  text-shadow: 0 0 16px var(--primary-glow-strong);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.service-card:hover .service-title {
  color: var(--primary-orange);
}

.service-desc {
  color: #cbd5e1;
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
  min-height: 4.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.86rem;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.service-link i {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--text-white);
}

.service-card:hover .service-link i {
  transform: translateX(6px);
}

/* --- Stats Counter Section --- */
.stats-section {
  padding: 0 0 80px 0;
  background: transparent;
  border: none;
}

.stats-card-container {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-dark);
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.stat-icon {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  color: var(--primary-orange);
  font-size: 1.6rem;
  margin-bottom: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

/* --- About / "WHY CHOOSE US" Section --- */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  /* All 3 columns stretch to 100% EQUAL HEIGHT */
}

.about-col-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  height: 100%;
  padding: 4px 0;
}

.about-highlights-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid var(--border-orange);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.highlight-pill:hover {
  border-color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--primary-glow);
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: transparent;
  border: none;
  padding: 0;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.about-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.68;
  margin-bottom: 8px;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-white);
  font-weight: 600;
}

.check-icon-solid {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  box-shadow: 0 0 10px var(--primary-glow);
  flex-shrink: 0;
}

/* Middle Video Card Container */
.workspace-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.workspace-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform var(--transition-slow);
}

.workspace-video-card:hover img {
  transform: scale(1.04);
}

.play-btn-circle {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
  cursor: pointer;
  z-index: 5;
}

.play-btn-circle:hover {
  transform: scale(1.12);
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  box-shadow: 0 0 30px var(--primary-glow-strong);
}

.video-label-bottom {
  position: absolute;
  bottom: 22px;
  left: 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  font-size: 1.05rem;
  z-index: 5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Right Feature Column Card Container */
.about-card-container {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  height: 100%;
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.about-card-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.68;
  margin-bottom: 28px;
}

.feature-box-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-box-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.feature-box-item:hover {
  transform: translateX(6px);
  background: rgba(255, 107, 0, 0.06);
  border-color: rgba(255, 107, 0, 0.3);
}

.feature-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-fast);
}

.feature-box-item:hover .feature-box-icon {
  background: var(--primary-orange);
  color: #ffffff;
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 0 16px var(--primary-glow);
}

.feature-box-item h4 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.feature-box-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.feature-box-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.feature-box-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.section-tag-simple {
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

/* --- Portfolio / Projects Section ("OUR PROJECTS") --- */
.projects-section {
  padding: 80px 0;
  position: relative;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gradient);
  color: var(--text-white);
  border-color: var(--primary-orange);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-orange);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 107, 0, 0.25);
}

.project-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  background: #141822;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.project-card:hover .project-thumb img {
  transform: scale(1.12) rotate(1deg);
  filter: brightness(1.08);
}

.project-info {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
}

.project-category {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Popular Tools Ribbon ("OUR POPULAR TOOLS") --- */
.tools-ribbon-section {
  padding: 80px 0;
  background: rgba(14, 17, 23, 0.5);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.tools-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tool-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.tool-chip-icon {
  color: var(--primary-orange);
  font-size: 1rem;
}

.tool-chip:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-orange);
  color: var(--text-white);
  box-shadow: 0 0 16px var(--primary-glow);
  transform: translateY(-2px);
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 90px 0;
  position: relative;
}

.testimonials-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

.testi-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 15px var(--primary-glow);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  z-index: 5;
}

.testi-nav-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 25px var(--primary-glow-strong);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex-grow: 1;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  min-height: 240px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 107, 0, 0.22);
}

/* Changing Animation state */
.testimonial-card.changing {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.testimonial-card:hover .quote-icon {
  transform: translateY(-4px) scale(1.15);
  color: var(--primary-orange-light);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-orange);
  object-fit: cover;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 2px;
}

.user-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stars {
  color: #ffb800;
  font-size: 0.78rem;
  letter-spacing: 1px;
  margin-top: 3px;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* --- Process Section ("HOW WE WORK") --- */
.process-section {
  padding: 100px 0;
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 107, 0, 0.2), var(--primary-orange), rgba(255, 107, 0, 0.2));
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px var(--primary-glow);
  transition: all var(--transition-fast);
}

.process-step:hover .step-number-badge {
  background: var(--primary-orange);
  color: var(--text-white);
  transform: scale(1.12);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

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

/* --- High Impact CTA Banner --- */
.cta-banner-section {
  padding: 30px 0 60px 0;
}

.cta-banner {
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 10px 30px var(--primary-glow-strong);
  position: relative;
  overflow: hidden;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cta-text-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 2px;
}

.cta-text-wrapper p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}

.btn-black {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  background: #000;
}

/* --- Footer Section --- */
.footer {
  background: #050607;
  border-top: 1px solid var(--border-dark);
  padding-top: 80px;
  padding-bottom: 30px;
  color: var(--text-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 300px;
}

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

.footer-brand-desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.82);
  font-weight: 400;
  letter-spacing: 0.4px;
  max-width: 360px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-brand-desc .brand-highlight {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary-orange);
  color: var(--text-white);
  border-color: var(--primary-orange);
  transform: translateY(-4px) scale(1.15);
  box-shadow: 0 0 20px var(--primary-glow-strong);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

.accordion-icon {
  display: none;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: inline-block;
  transition: transform var(--transition-fast), color var(--transition-fast), text-shadow var(--transition-fast);
  transform-origin: left center;
}

.footer-list a:hover {
  color: var(--primary-orange-light);
  transform: translateX(5px) scale(1.08);
  text-shadow: 0 0 12px var(--primary-glow-strong), 0 0 22px rgba(255, 107, 0, 0.5);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.contact-item.contact-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.contact-item.contact-link:hover {
  color: var(--primary-orange-light);
  transform: translateX(5px) scale(1.06);
}

.contact-item.contact-link:hover .contact-icon {
  color: var(--primary-orange-light);
  transform: scale(1.2);
  text-shadow: 0 0 14px var(--primary-glow-strong);
}

.modal-quick-contacts {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.modal-contact-btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: var(--radius-full);
}

.contact-icon {
  color: var(--primary-orange);
  font-size: 1.05rem;
  margin-top: 2px;
  transition: transform var(--transition-fast), color var(--transition-fast), text-shadow var(--transition-fast);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-top: 6px;
}

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

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #838e9e;
}

/* --- Modals / Popups --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  padding: 20px;
}

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

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  padding: 36px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--primary-glow);
  transform: scale(0.9);
  transition: transform var(--transition-fast);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.08);
}

/* Form Controls in Modal */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* --- Media Queries (Mobile & Responsive Adjustments) --- */

/* 1. Laptops / Smaller Desktops (Max 1100px) */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-col-right {
    grid-column: span 2;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* 2. Tablets & Mobile Landscape (Max 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 20px;
  }

  /* Header & Navigation */
  .header {
    padding: 10.5px 0;
  }

  .header.scrolled {
    padding: 9px 0;
  }

  .nav-full-logo {
    height: 36px;
  }

  .nav-cta-btn .btn-text {
    display: none;
  }

  .nav-cta-btn {
    padding: 0;
    border-radius: 50%;
    width: 36px;
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
  }

  /* 80% Width Mobile Navigation Drawer Attached to Right Edge */
  /* 80% Width Mobile Navigation Drawer - GPU Accelerated 60fps Spring Slide */
  .nav-links {
    position: fixed;
    top: 6px;
    bottom: 14px;
    right: 0;
    width: 80vw;
    max-width: 80%;
    height: calc(100dvh - 20px);
    background: #08090b;
    border-radius: 18px 0 0 18px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px 18px;
    gap: 8px;
    transform: translate3d(105%, 0, 0);
    transition: transform 0.28s cubic-bezier(0, 0, 0.2, 1);
    will-change: transform;
    box-shadow: -10px 10px 50px rgba(0, 0, 0, 0.95);
    z-index: 999;
    border: 1px solid rgba(255, 107, 0, 0.4);
    border-right: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    transform: translate3d(0, 0, 0);
  }

  .mobile-nav-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
  }

  .mobile-nav-tag {
    font-size: 0.75rem;
    color: var(--primary-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
  }

  .nav-links li:not(.mobile-nav-header):not(.mobile-nav-footer) {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    width: 100%;
  }

  .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--text-white);
    background: rgba(255, 107, 0, 0.12);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateX(4px);
  }

  .nav-link:hover .nav-icon,
  .nav-link.active .nav-icon {
    background: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 0 12px var(--primary-glow);
  }

  .nav-link.active::after {
    display: none;
  }

  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu-cta {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.88rem;
    box-shadow: 0 6px 20px var(--primary-glow);
  }

  .mobile-menu-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .mobile-menu-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
  }

  .mobile-menu-socials a:hover {
    background: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
  }

  .mobile-status-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.2);
  }

  .mobile-toggle {
    display: flex;
    z-index: 1000;
  }

  /* Hero Section */
  .hero {
    padding-top: 125px;
    padding-bottom: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-eyebrow {
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .hero-desc {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-buttons {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .social-proof {
    justify-content: center;
    width: 100%;
    margin-bottom: 36px;
  }

  /* Hero Orbital System Scaling for Mobile */
  .hero-diagram {
    height: 360px;
    transform: scale(0.78);
    transform-origin: center center;
    margin: -30px auto;
  }

  /* Services Grid */
  .services {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-card {
    padding: 18px 14px;
  }

  .service-title {
    min-height: auto;
    font-size: 0.94rem;
  }

  .service-desc {
    min-height: auto;
    font-size: 0.82rem;
  }

  /* Stats Grid */
  .stats-section {
    padding: 0 0 60px 0;
  }

  .stats-card-container {
    padding: 18px 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 10px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  /* About / Video Section */
  /* About / Why Choose Us Section - Centered Alignment on Mobile */
  .about-section {
    padding: 60px 0;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
  }

  .about-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-tag {
    justify-content: center;
  }

  .about-title {
    text-align: center;
    font-size: 2.1rem;
  }

  .about-desc {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 24px auto;
  }

  .about-highlights-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 16px auto;
  }

  .highlight-pill {
    flex: 1;
    justify-content: center;
    padding: 7px 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .about-checklist {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    max-width: 290px;
    width: 100%;
    gap: 12px;
  }

  .workspace-video-card {
    min-height: 280px;
    height: 280px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .video-label-bottom {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
  }

  .about-card-container {
    padding: 24px 20px;
    text-align: center;
    align-items: center;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .about-card-title {
    text-align: center;
  }

  .about-card-desc {
    text-align: center;
  }

  .feature-box-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .feature-box-item {
    text-align: left;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-dark);
    padding: 10px 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .feature-box-icon {
    width: 32px;
    height: 32px;
    font-size: 0.88rem;
    flex-shrink: 0;
  }

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

  .feature-box-item p {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  /* Projects Section */
  .projects-section {
    padding: 60px 0;
  }

  .filter-tabs {
    gap: 8px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: 0.84rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .project-thumb {
    height: 170px;
  }

  /* Popular Tools Ribbon - Ultra Modern Mobile 2-Column Grid */
  .tools-ribbon-section {
    padding: 50px 0;
  }

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

  .tool-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: rgba(14, 17, 23, 0.9);
    border: 1px solid rgba(255, 107, 0, 0.22);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(255, 107, 0, 0.04);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    text-align: left;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-white);
  }

  .tool-chip-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
    border: 1px solid rgba(255, 107, 0, 0.3);
  }

  .tool-chip:active,
  .tool-chip:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 16px var(--primary-glow);
    transform: translateY(-3px) scale(1.02);
    background: #141822;
  }

  .tool-chip:active .tool-chip-icon,
  .tool-chip:hover .tool-chip-icon {
    background: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 0 14px var(--primary-glow-strong);
  }

  /* Single Testimonial Card View on Mobile */
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    padding: 0;
  }

  .testimonials-grid {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .testimonial-card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    min-height: 240px;
    padding: 24px 18px;
  }

  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3) {
    display: none !important;
  }

  .testi-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  /* Process Timeline - Double Line Subtexts on Mobile */
  .process-section {
    padding: 60px 0;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-timeline::before {
    display: none;
  }

  .step-desc {
    max-width: 220px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.55;
    font-size: 0.88rem;
  }

  /* CTA Banner */
  .cta-banner-section {
    padding: 20px 0 50px 0;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  /* Footer Mobile Accordion Layout */
  .footer {
    padding-top: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 12px;
  }

  .footer-brand-desc {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-accordion:last-child {
    border-bottom: none;
  }

  .footer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-white);
    user-select: none;
  }

  .accordion-icon {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-orange);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .footer-accordion.active .accordion-icon {
    transform: rotate(180deg);
  }

  .footer-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin 0.3s ease;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer-accordion.active .accordion-content {
    max-height: 600px;
    opacity: 1;
    margin-top: 6px;
    padding-bottom: 18px;
  }

  /* Mobile Contact Us Clean List Link Styles (No box background; original clean look) */
  .footer-accordion .accordion-content .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 0;
    background: transparent;
    border: none;
    margin-bottom: 12px;
    width: 100%;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    word-break: break-word;
    transition: all var(--transition-fast);
  }

  .footer-accordion .accordion-content .contact-item:active,
  .footer-accordion .accordion-content .contact-item:hover {
    color: var(--primary-orange-light);
    transform: translateX(4px);
  }

  .footer-accordion .accordion-content .contact-item .contact-icon {
    font-size: 1.05rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .modal-quick-contacts {
    flex-direction: column;
    gap: 8px;
  }

  .modal-contact-btn {
    width: 100%;
  }

  .footer {
    padding-top: 50px;
    padding-bottom: 16px;
  }

  .footer-bottom {
    padding-top: 12px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-size: 0.76rem;
    color: #727c8d;
  }

  /* Modals on Mobile */
  .modal-content {
    padding: 28px 20px;
    max-width: 95%;
    margin: 10px auto;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* 3. Small Mobile Smartphones (Max 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-full-logo {
    height: 32px;
  }

  .nav-cta-btn {
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    font-size: 0.95rem;
  }

  .hero-eyebrow {
    font-size: 0.76rem;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-desc {
    font-size: 0.92rem;
  }

  .social-proof {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }

  /* Hero Orbital System Compact Scaling */
  .hero-diagram {
    height: 300px;
    transform: scale(0.62);
    transform-origin: center center;
    margin: -45px auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 8px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-thumb {
    height: 180px;
  }

  .workspace-video-card {
    min-height: 220px;
    height: 220px;
  }

  .about-title {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .filter-tabs {
    justify-content: center;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .modal-content {
    padding: 22px 16px;
    width: 94%;
    border-radius: var(--radius-md);
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom on iOS */
  }
}

/* 4. Ultra-Small Micro Devices & Foldables (Max 359px) */
@media (max-width: 359px) {
  .container {
    padding: 0 12px;
  }

  .nav-full-logo {
    height: 28px;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .hero-desc {
    font-size: 0.85rem;
  }

  .hero-diagram {
    height: 260px;
    transform: scale(0.52);
    margin: -65px auto;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .filter-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }

  .filter-btn {
    padding: 5px 10px;
    font-size: 0.72rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tool-chip {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .tool-chip-icon {
    width: 30px;
    height: 30px;
    font-size: 0.88rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 6px;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .modal-content {
    padding: 18px 12px;
    width: 96%;
  }
}

/* 5. Tablet & iPad Portrait / Landscape Optimizations (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding: 0 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.88rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-diagram {
    height: 380px;
    transform: scale(0.85);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 14px;
  }
}

/* 6. Standard & Large Desktop Scaling (1200px to 1599px) */
@media (min-width: 1200px) {
  html {
    font-size: 17px;
  }

  .container {
    max-width: 1360px;
    padding: 0 36px;
  }

  .hero {
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-desc {
    font-size: 1.15rem;
    max-width: 600px;
  }

  .hero-diagram {
    height: 460px;
    transform: scale(1.06);
  }

  .services-grid {
    gap: 24px;
  }

  .service-card {
    padding: 32px 26px;
  }

  .projects-grid {
    gap: 22px;
  }

  .project-thumb {
    height: 220px;
  }

  .tools-grid {
    gap: 16px;
  }

  .tool-chip {
    padding: 14px 20px;
    font-size: 0.96rem;
  }
}

/* 7. Ultra-Wide Displays & 4K Monitors (1600px+) */
@media (min-width: 1600px) {
  html {
    font-size: 18px;
  }

  .container {
    max-width: 1520px;
    padding: 0 40px;
  }

  .hero-title {
    font-size: 4.4rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-desc {
    font-size: 1.2rem;
    max-width: 650px;
  }

  .hero-diagram {
    height: 500px;
    transform: scale(1.15);
  }

  .service-card {
    padding: 36px 30px;
  }
}

/* 7. Safe Area Insets for iOS Notch Devices */
@supports (padding: env(safe-area-inset-top)) {
  .header {
    padding-top: max(16px, env(safe-area-inset-top));
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}

/* --- 8. Ultra-Rich 3D Depth & Internal Element Cascading Scroll Reveal --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px) scale(0.92) rotateX(8deg);
  filter: blur(10px);
  transform-origin: center top;
  transition:
    opacity var(--reveal-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1),
    transform var(--reveal-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1),
    filter var(--reveal-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow var(--reveal-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter, box-shadow;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
  filter: blur(0px);
}

/* Internal Card Element Micro-Cascading Animations */
.reveal-on-scroll .service-icon,
.reveal-on-scroll .tool-chip-icon,
.reveal-on-scroll .quote-icon,
.reveal-on-scroll .feature-box-icon,
.reveal-on-scroll .project-thumb img {
  opacity: 0;
  transform: scale(0.75) rotate(-10deg);
  transition: opacity var(--reveal-duration, 0.8s) cubic-bezier(0.16, 1, 0.3, 1), transform var(--reveal-duration, 0.8s) cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: inherit;
}

.reveal-on-scroll.revealed .service-icon,
.reveal-on-scroll.revealed .tool-chip-icon,
.reveal-on-scroll.revealed .quote-icon,
.reveal-on-scroll.revealed .feature-box-icon,
.reveal-on-scroll.revealed .project-thumb img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Luxurious Fluid Stagger Delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }

/* --- 9. Premium Visual Enhancements & Micro-Interactions --- */

/* Top Scroll Reading Progress Indicator Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary-gradient);
  box-shadow: 0 0 12px var(--primary-orange), 0 0 24px var(--primary-glow-strong);
  z-index: 1000;
  transition: width 0.1s ease-out;
  pointer-events: none;
}

/* Interactive Ambient Mouse Spotlight Background Glow */
.ambient-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(650px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 107, 0, 0.07), transparent 75%);
  transition: opacity 0.4s ease;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .ambient-spotlight {
    display: none !important;
  }
}

/* Glassmorphism Top Border Shimmer Trace on Card Hover */
.service-card,
.project-card,
.testimonial-card,
.about-card-container,
.contact-card,
.stats-card-container {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.project-card::after,
.testimonial-card::after,
.about-card-container::after,
.contact-card::after,
.stats-card-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.9), rgba(255, 187, 0, 0.9), transparent);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  opacity: 0;
}

.service-card:hover::after,
.project-card:hover::after,
.testimonial-card:hover::after,
.about-card-container:hover::after,
.contact-card:hover::after,
.stats-card-container:hover::after {
  left: 100%;
  opacity: 1;
}

/* Magnetic Button Micro-Scale Spring Effect */
.btn {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.3s ease, border-color 0.3s ease !important;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn:active {
  transform: translateY(1px) scale(0.97);
}

/* Pronounced Card Hover Zoom & Elevation Micro-Interactions */
.service-card:hover,
.project-card:hover,
.testimonial-card:hover,
.tool-chip:hover,
.about-card-container:hover,
.contact-card:hover {
  transform: translateY(-10px) scale(1.04) rotateX(0deg) !important;
  border-color: var(--primary-orange) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 32px rgba(255, 107, 0, 0.35) !important;
  z-index: 20;
}

.service-card:hover .service-icon {
  transform: scale(1.22) rotate(8deg) !important;
  color: var(--primary-orange-light);
  text-shadow: 0 0 20px var(--primary-glow-strong);
}

.project-card:hover .project-thumb img {
  transform: scale(1.15) rotate(1.5deg) !important;
  filter: brightness(1.1);
}

.tool-chip:hover .tool-chip-icon {
  transform: scale(1.2) rotate(-8deg) !important;
  background: var(--primary-orange);
  color: #ffffff;
  box-shadow: 0 0 18px var(--primary-glow-strong);
}

.testimonial-card:hover .quote-icon {
  transform: translateY(-5px) scale(1.2) !important;
  color: var(--primary-orange-light);
}

/* Inline 2-Column Form Row (Email & Phone Number) */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}