/* ==========================================================================
   GROWTHNOLOGY ULTRA-PREMIUM AGENCY DESIGN SYSTEM
   Interactive Brand Logo Ball Physics Playground (Matter.js)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces & Backgrounds */
  --bg-main: #F4F2EE;
  --bg-secondary: #ECE9E3;
  --bg-card: #FFFFFF;
  --bg-dark: #101014;
  --bg-dark-card: #181820;

  /* Text & Typography */
  --text-primary: #111111;
  --text-secondary: #4A4A52;
  --text-muted: #888894;
  --text-light: #F4F2EE;
  --text-light-muted: #9999AA;

  /* Borders & Grids */
  --border-light: #D8D5D0;
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Brand Accents & Gradients */
  --accent-purple: #8057FF;
  --accent-blue: #5878FF;
  --accent-pink: #EE72D9;
  --accent-cyan: #00F2FE;
  --accent-red: #FF3B30;
  --iridescent-gradient: linear-gradient(135deg, #5878FF 0%, #8057FF 45%, #EE72D9 100%);
  --iridescent-text-gradient: linear-gradient(135deg, #5878FF 0%, #8057FF 40%, #EE72D9 80%);

  /* Premium Dual Typography Tokens */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Layout & Spacing */
  --container-width: 1400px;
  --header-height: 90px;

  /* Radiuses */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-main);
  font-family: var(--font-body);
}

/* Global Heading Typography Reset for Site-wide Consistency */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

p, span, li, a, label {
  font-family: var(--font-body);
}

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

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: inherit;
}

/* Custom Selection */
::selection {
  background-color: var(--accent-purple);
  color: #FFFFFF;
}

/* Custom Interactive Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--iridescent-gradient);
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.25s ease, height 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(128, 87, 255, 0.4);
  will-change: transform;
}

.custom-cursor .cursor-text {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.custom-cursor.hovered {
  width: 64px;
  height: 64px;
  background: rgba(16, 16, 20, 0.92);
}

.custom-cursor.hovered .cursor-text {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   3. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.85, 0, 0.15, 1);
  will-change: transform;
}

.preloader-content {
  text-align: center;
  max-width: 400px;
  padding: 20px;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.preloader-logo .logo-symbol {
  background: var(--iridescent-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-hud {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-light-muted);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.preloader-counter {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--iridescent-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.preloader-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: var(--iridescent-gradient);
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.navbar-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  width: 100%;
  max-width: 1280px;
  height: 62px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  box-shadow: 0 8px 32px rgba(128, 87, 255, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(128, 87, 255, 0.25);
  box-shadow: 0 12px 40px rgba(128, 87, 255, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.brand-img-logo {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-brand:hover .brand-img-logo {
  transform: rotate(12deg) scale(1.1);
}

.brand-icon {
  width: 24px;
  height: 24px;
}

.brand-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #00E676;
  box-shadow: 0 0 8px #00E676;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-purple);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-purple);
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

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

.nav-hud-clock {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   5. BUTTONS & UI TOKENS
   -------------------------------------------------------------------------- */
.magnetic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-main);
  border: 1px solid var(--text-primary);
}

.btn-primary:hover {
  background: var(--iridescent-gradient);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(128, 87, 255, 0.35);
  transform: translateY(-2px);
}

.tape-gold .ribbon-star {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   10.8 SECTION 05: AI AUTOMATION (100% VIEWPORT FIT CYBER ORBIT DIAL STAGE)
   -------------------------------------------------------------------------- */
.ai-automation-section {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 40px 0;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 16px auto;
}

.section-header-center .section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 8px;
}

.section-header-center .section-description {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.center-grid {
  justify-content: center;
  margin-top: 10px;
  gap: 8px;
}

.dark-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 6px 14px;
}

.dark-pill:hover {
  background: rgba(128, 87, 255, 0.2);
  border-color: var(--accent-purple);
  color: #FFFFFF;
}

.orbit-wheel-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: 560px;
  margin: 16px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.orbit-ring-container {
  position: relative;
  width: 540px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-orbit-ring {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  transition: transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.orbit-nodes-ring {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  transition: transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.circle-orbit-node {
  position: absolute;
  pointer-events: auto;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
  outline: none;
  transition: transform 0.4s ease;
  z-index: 10;
}

.circle-orbit-node .node-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #14141E;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light-muted);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.circle-orbit-node.active .node-dot, .circle-orbit-node:hover .node-dot {
  background: var(--iridescent-gradient);
  border-color: #FFFFFF;
  color: #FFFFFF;
  box-shadow: 0 0 25px rgba(128, 87, 255, 0.7);
  transform: scale(1.3);
}

/* CENTER STEP CARD INSIDE RING */
.orbit-center-card {
  position: relative;
  z-index: 5;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, #181822 0%, #101014 100%);
  border: 1px solid var(--border-dark);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 0 35px rgba(128, 87, 255, 0.2);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.orbit-center-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--iridescent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 8px 22px rgba(128, 87, 255, 0.45);
  animation: floatCenterIcon 4s ease-in-out infinite;
}

.icon-3d-glyph {
  font-size: 1.6rem;
  color: #FFFFFF;
}

.orbit-step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.orbit-step-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.orbit-step-desc {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 250px;
}

.orbit-dots-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.orbit-dot-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.orbit-dot-item.active {
  background: var(--accent-cyan);
  width: 20px;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--accent-cyan);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  transform: translateY(-2px);
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.magnetic-btn:hover .btn-arrow {
  transform: translate(3px, -3px);
}

.hud-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(244, 242, 238, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  pointer-events: auto;
}

.hud-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-purple);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(128, 87, 255, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(128, 87, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(128, 87, 255, 0); }
}

/* HIGH-FASHION EDITORIAL ITALIC TYPOGRAPHY ACCENT */
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  text-transform: none;
  padding: 0 0.12em;
  line-height: 0.9;
  vertical-align: baseline;
  display: inline-block;
}

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

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   6. HERO SECTION (EXACT ORIONIX HERO ARCHITECTURE MATCHING SCREENSHOT)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FAF8F5; /* Warm Off-White Orionix Canvas Background */
  overflow: hidden;
}

.hero-full-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.hero-title-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orionix-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.2vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111111;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  line-height: 1.25;
}

.hero-title-inner {
  display: inline-block;
  transform: translateY(102%);
  opacity: 0;
}

.title-highlight-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 40px;
  padding: 4px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  margin-top: 6px;
}

/* FLOATING RICH TEXT TOOLBAR WIDGET FROM SCREENSHOT */
/* INTERACTIVE RICH TEXT TOOLBAR WIDGET WITH HEADING 1-5 SELECTOR */
.orionix-toolbar-widget {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-top: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  pointer-events: auto;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #333333;
  z-index: 50;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orionix-toolbar-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.toolbar-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.toolbar-btn:hover, .toolbar-btn.active {
  background: rgba(128, 87, 255, 0.12);
  color: var(--accent-purple);
}

.toolbar-dropdown-wrapper {
  position: relative;
}

.toolbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  min-width: 120px;
}

.toolbar-dropdown-wrapper.open .toolbar-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  background: transparent;
  border: none;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: #333333;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover, .dropdown-item.active {
  background: var(--accent-purple);
  color: #FFFFFF;
}

.color-menu {
  flex-direction: row !important;
  min-width: auto !important;
  gap: 8px !important;
  padding: 8px 12px !important;
}

.color-item {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-item:hover {
  transform: scale(1.25);
}

.color-default { background: #111111; }
.color-purple { background: linear-gradient(135deg, #5878FF 0%, #8057FF 100%); }
.color-cyan { background: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%); }
.color-gold { background: linear-gradient(135deg, #FF6B4A 0%, #F5576C 100%); }

.toolbar-divider {
  color: #DDDDDD;
}

.font-italic { font-style: italic; font-weight: 700; }
.font-underline { text-decoration: underline; font-weight: 700; }
.bold-a { font-weight: 800; }

/* DYNAMIC HEADING SIZE CLASSES FOR HEADINGS 1 TO 5 */
.orionix-title.h-size-1 { font-size: clamp(3rem, 6.2vw, 6rem) !important; }
.orionix-title.h-size-2 { font-size: clamp(2.5rem, 5.2vw, 5rem) !important; }
.orionix-title.h-size-3 { font-size: clamp(2.2rem, 4.4vw, 4.2rem) !important; }
.orionix-title.h-size-4 { font-size: clamp(1.8rem, 3.6vw, 3.5rem) !important; }
.orionix-title.h-size-5 { font-size: clamp(1.5rem, 2.8vw, 2.8rem) !important; }

/* TEXT MODIFIERS */
.orionix-title.force-italic { font-style: italic !important; }
.orionix-title.force-underline { text-decoration: underline !important; }

.orionix-title.theme-color-purple { color: var(--accent-purple) !important; }
.orionix-title.theme-color-cyan { color: var(--accent-cyan) !important; }
.orionix-title.theme-color-gold { color: #FF6B4A !important; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  pointer-events: auto;
}

/* BOTTOM HUD BAR MATCHING SCREENSHOT */
.orionix-hero-bottom-bar {
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 180px 1fr 240px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #555555;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .orionix-hero-bottom-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
}

.bottom-time-hud {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #333333;
}

.bottom-subtext-center {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #444444;
  text-align: center;
  line-height: 1.5;
}

.bottom-email-hud {
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #111111;
  text-decoration: none;
  text-align: right;
  transition: color 0.2s ease;
}

.bottom-email-hud:hover {
  color: var(--accent-purple);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  z-index: 10;
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.badge-roi { top: 160px; left: 40px; }
.badge-status { bottom: 120px; right: 40px; }
.badge-reel { top: 50%; right: 40px; transform: translateY(-50%); cursor: pointer; }
.badge-reel:hover { transform: translateY(-50%) scale(1.05); }

.badge-icon, .reel-play-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--iridescent-gradient); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
}

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

.badge-content { display: flex; flex-direction: column; text-align: left; }
.badge-val { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 800; color: var(--text-primary); }
.badge-lbl { font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.1em; }

/* --------------------------------------------------------------------------
   7. SECTIONS GENERAL STYLING
   -------------------------------------------------------------------------- */
section {
  padding: 80px 0;
  position: relative;
}

.section-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-meta { margin-bottom: 12px; }
.section-num { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; color: var(--accent-purple); }
.section-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 3.8vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; color: var(--text-primary); }
.section-description { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; line-height: 1.6; margin-bottom: 32px; }
.center-text { text-align: center; margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   8. SECTION 01: VIEWPORT-FIT STAGE & ULTRA-ATTRACTIVE FLOATING 3D ARTIFACTS
   -------------------------------------------------------------------------- */
.system-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
}

.system-center-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px auto;
}

.system-center-header .section-title {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin-bottom: 10px;
}

.system-center-header .section-description {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.system-stage-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ULTRA-ATTRACTIVE FLOATING 3D ARTIFACTS AROUND CENTER CARD */
.floating-3d-artifact {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 10;
  pointer-events: auto;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease, filter 0.6s ease;
  will-change: transform, opacity, filter;
  cursor: pointer;
}

.artifact-left-top { top: -10px; left: -120px; }
.artifact-right-top { top: 0px; right: -120px; }
.artifact-left-bottom { bottom: 30px; left: -130px; }
.artifact-right-bottom { bottom: 20px; right: -130px; }

/* Inactive ambient blur & floating state */
.floating-3d-artifact {
  opacity: 0.45;
  filter: blur(5px) grayscale(20%);
  transform: scale(0.85);
}

/* Active sharp focus state with vibrant neon aura & 3D tilt elevation */
.floating-3d-artifact.active, .floating-3d-artifact:hover {
  opacity: 1.0;
  filter: blur(0px) grayscale(0%) drop-shadow(0 20px 45px rgba(128, 87, 255, 0.45));
  transform: scale(1.18) translateY(-10px);
}

.artifact-3d-inner {
  position: relative;
  width: 100%;
  height: 100%;
  animation: floatArtifact 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.svg-artifact {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

@keyframes floatArtifact {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.artifact-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.75;
  z-index: -1;
  transition: opacity 0.5s ease, scale 0.5s ease;
}

.blue-purple-glow { background: radial-gradient(circle, #5878FF 0%, #8057FF 60%, transparent 100%); }
.cyan-glow { background: radial-gradient(circle, #00F2FE 0%, #5878FF 60%, transparent 100%); }
.pink-glow { background: radial-gradient(circle, #EE72D9 0%, #8057FF 60%, transparent 100%); }
.purple-glow { background: radial-gradient(circle, #8057FF 0%, #00F2FE 60%, transparent 100%); }

.floating-3d-artifact.active .artifact-glow {
  opacity: 0.95;
  transform: translate(-50%, -50%) scale(1.3);
}

/* CENTER STACKED CARDS STAGE VIEWPORT FIT */
.system-center-cards-wrapper {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 380px;
}

.nina-capability-card {
  position: absolute;
  top: 0; left: 50%;
  width: 100%;
  height: 100%;
  /* Default state: waiting below screen stage */
  transform: translateX(-50%) translateY(120%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  will-change: opacity, transform;
}

/* Active Card: Pinned in crisp focus in center of stage */
.nina-capability-card.active {
  opacity: 1.0;
  transform: translateX(-50%) translateY(0%) scale(1.0);
  pointer-events: auto;
  z-index: 5;
  border-color: var(--accent-purple);
  box-shadow: 0 30px 90px rgba(128, 87, 255, 0.18);
}

/* Previous Card: Slides physical up and out of viewport */
.nina-capability-card.exit-up {
  opacity: 0;
  transform: translateX(-50%) translateY(-130%) scale(0.92);
  pointer-events: none;
  z-index: 1;
}

.card-top-hud {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.hud-cap-code {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-purple);
}

.hud-cap-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  background: var(--bg-main);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
}

.nina-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.nina-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.nina-included-box {
  margin-bottom: 20px;
}

.included-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.included-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.included-pill {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
}

.nina-card-footer {
  margin-top: auto;
}

.cap-explore-btn {
  width: 100%;
  padding: 12px;
  font-size: 0.8rem;
}

/* BOTTOM LIVE HUD NAVIGATION */
.nina-bottom-hud {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.hud-dots-navigation {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hud-step-dot {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hud-step-dot.active, .hud-step-dot:hover {
  background: var(--bg-dark);
  color: #FFFFFF;
  border-color: var(--accent-purple);
  box-shadow: 0 6px 20px rgba(128, 87, 255, 0.3);
  transform: scale(1.1);
}

.hud-progress-line {
  width: 200px;
  height: 4px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.hud-line-fill {
  height: 100%;
  width: 25%;
  background: var(--iridescent-gradient);
  transition: width 0.4s ease;
}

/* --------------------------------------------------------------------------
   9. SECTION 02: DUAL-ROW INFINITE HORIZONTAL MARQUEE CARDS SHOWCASE
   -------------------------------------------------------------------------- */
.web-experiences-section { padding-bottom: 60px; }

.marquee-gallery-wrapper {
  width: 100vw; margin-left: calc(-50vw + 50%); overflow: hidden;
  display: flex; flex-direction: column; gap: 28px; padding: 40px 0; position: relative;
}

.marquee-gallery-wrapper:hover .marquee-track { animation-play-state: paused; }
.marquee-track { display: flex; gap: 28px; width: max-content; will-change: transform; }
.marquee-left { animation: marqueeScrollLeft 35s linear infinite; }
.marquee-right { animation: marqueeScrollRight 35s linear infinite; }

@keyframes marqueeScrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeScrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.gallery-project-card {
  width: 420px; height: 320px; background: #FFFFFF; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04); position: relative; text-decoration: none;
}

.gallery-project-card:hover {
  transform: translateY(-8px) scale(1.02); border-color: var(--accent-purple);
  box-shadow: 0 24px 50px rgba(128, 87, 255, 0.15);
}

.card-browser-head { height: 38px; background: #F8F7F4; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; padding: 0 16px; gap: 6px; }
.card-domain { margin-left: auto; font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); }
.card-body-preview { flex: 1; position: relative; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: #FFFFFF; overflow: hidden; }

.luxury-stranger { background: url('../../public/projects/strangersons.png') center/cover no-repeat; }
.dealnology-bg { background: url('../../public/projects/dealnology.png') center/cover no-repeat; }
.quranguide-bg { background: url('../../public/projects/quranguide.png') center/cover no-repeat; }
.toolwallet-bg { background: url('../../public/projects/toolwallet.png') center/cover no-repeat; }
.india60s-bg { background: url('../../public/projects/india60s.png') center/cover no-repeat; }
.baseliner-bg { background: url('../../public/projects/baseliner.png') center/cover no-repeat; }
.citymall-bg { background: url('../../public/projects/citymall.png') center top/cover no-repeat; }
.lumapush-bg { background: url('../../public/projects/lumapush.png') center/cover no-repeat; }
.resorcia-bg { background: url('../../public/projects/resorcia.png') center top/cover no-repeat; }

/* Dark overlay for ALL screenshot cards so text remains readable */
.luxury-stranger::before, .dealnology-bg::before, .quranguide-bg::before,
.toolwallet-bg::before, .india60s-bg::before,
.baseliner-bg::before, .citymall-bg::before, .lumapush-bg::before, .resorcia-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}

.card-overlay-info { position: relative; z-index: 2; }
.proj-tag { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.14em; color: var(--accent-cyan); display: block; margin-bottom: 8px; }
.card-overlay-info h4 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.card-overlay-info p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.8); line-height: 1.4; margin-bottom: 16px; }
.visit-btn { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; color: #FFFFFF; letter-spacing: 0.1em; display: inline-block; transition: transform 0.2s ease; }
.gallery-project-card:hover .visit-btn { transform: translateX(6px); color: var(--accent-cyan); }

/* --------------------------------------------------------------------------
   10. INTERACTIVE BRAND LOGO BALL PLAYGROUND (MATTER.JS PHYSICS)
   -------------------------------------------------------------------------- */
.playground-section {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}

.playground-header {
  margin-bottom: 24px;
}

.light-meta .section-num { color: var(--accent-cyan); }
.light-title { color: var(--text-light); }
.light-desc { color: var(--text-light-muted); }

.ball-playground-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 580px;
  background: #07070A;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  touch-action: pan-y;
}

.physics-ball-canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;
}

/* --------------------------------------------------------------------------
   10.5 DUAL TILTED KINETIC RIBBON TAPES CROSS SHOWCASE
   -------------------------------------------------------------------------- */
.tilted-ribbon-showcase {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  pointer-events: auto;
}

.ribbon-tape {
  position: absolute;
  width: 130vw;
  left: -15vw;
  height: 58px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  user-select: none;
  white-space: nowrap;
}

.tape-black {
  background: #101014;
  color: #FFFFFF;
  transform: rotate(-3.5deg);
  top: 40px;
  z-index: 2;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  border-top: 1px solid rgba(128, 87, 255, 0.35);
  border-bottom: 1px solid rgba(128, 87, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tape-gold {
  background: var(--iridescent-gradient);
  color: #FFFFFF;
  transform: rotate(3.2deg);
  top: 75px;
  z-index: 4;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 20px 50px rgba(128, 87, 255, 0.45);
}

.ribbon-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  will-change: transform;
}

.track-left {
  animation: marqueeTapeLeft 28s linear infinite;
}

.track-right {
  animation: marqueeTapeRight 28s linear infinite;
}

@keyframes marqueeTapeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeTapeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  transition: transform 0.2s ease;
}

.ribbon-item:hover {
  transform: scale(1.05);
}

.ribbon-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.ribbon-star {
  color: var(--accent-purple);
  font-size: 1.2rem;
  margin: 0 4px;
}

.tape-gold .ribbon-star {
  color: #111111;
}

/* --------------------------------------------------------------------------
   11. SECTION 08: AWWWARDS ROTARY ORBIT SHOWCASE CONTAINER
   -------------------------------------------------------------------------- */
.rotary-showcase-wrapper {
  display: grid; grid-template-columns: 200px 1fr 280px; gap: 40px; align-items: center;
  background: #FFFFFF; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 60px 48px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03); min-height: 500px;
  position: relative; overflow: hidden;
}

.rotary-left-column { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; }
.rotary-arc-container { position: relative; width: 100%; height: 100%; }
.rotary-svg-arc { width: 100%; height: 100%; overflow: visible; }
.rotary-red-indicator {
  position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--accent-red);
  box-shadow: 0 0 14px var(--accent-red); transform: translate(-50%, -50%);
  transition: top 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10; pointer-events: none;
}
.rotary-nodes-list { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding: 10px 0; }
.orbit-node { background: none; border: none; font-family: var(--font-serif); font-style: italic; font-size: 1.8rem; color: var(--text-muted); cursor: pointer; padding: 4px 8px; transition: color 0.3s ease, transform 0.3s ease; outline: none; }
.orbit-node.active, .orbit-node:hover { color: var(--text-primary); font-family: var(--font-heading); font-style: normal; font-weight: 800; font-size: 2.2rem; transform: translateX(12px); }

.rotary-center-column { display: flex; flex-direction: column; justify-content: center; }
.rotary-stage-card { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.rotary-stage-card.transitioning { opacity: 0; transform: translateY(20px); }
.rotary-stage-num { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; color: var(--accent-purple); display: block; margin-bottom: 12px; }
.rotary-stage-title { font-family: var(--font-heading); font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.rotary-stage-desc { font-size: 1.2rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 32px; max-width: 580px; }
.rotary-stage-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.rotary-tag { font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; padding: 8px 18px; background: var(--bg-main); border: 1px solid var(--border-light); border-radius: var(--radius-pill); color: var(--text-primary); }
.stage-step-bar { width: 100%; max-width: 480px; height: 4px; background: var(--bg-secondary); border-radius: 4px; overflow: hidden; }
.step-progress-fill { height: 100%; width: 16.66%; background: var(--iridescent-gradient); transition: width 0.4s ease; }

/* PURE VISUAL 3D HOLOGRAM ORBITAL SCULPTURE (ZERO TEXT) */
.rotary-right-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hologram-stage-container {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  pointer-events: auto;
  cursor: pointer;
}

.hologram-backdrop-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--iridescent-gradient);
  opacity: 0.28;
  filter: blur(40px);
  animation: pulseGlow 4s infinite ease-in-out alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.85); opacity: 0.2; }
  100% { transform: scale(1.15); opacity: 0.38; }
}

/* 3D TRIPLE ORBIT RINGS */
.orbit-ring-3d {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.6s ease;
}

.ring-alpha {
  width: 240px;
  height: 240px;
  border: 2px dashed rgba(128, 87, 255, 0.45);
  transform: rotateX(65deg) rotateY(-15deg) rotateZ(0deg);
  animation: spinRingAlpha 16s linear infinite;
}

.ring-beta {
  width: 200px;
  height: 200px;
  border: 2px solid rgba(0, 242, 254, 0.5);
  transform: rotateX(45deg) rotateY(35deg) rotateZ(0deg);
  animation: spinRingBeta 12s linear reverse infinite;
}

.ring-gamma {
  width: 160px;
  height: 160px;
  border: 1.5px dotted rgba(238, 114, 217, 0.6);
  transform: rotateX(75deg) rotateY(-45deg) rotateZ(0deg);
  animation: spinRingGamma 20s linear infinite;
}

@keyframes spinRingAlpha {
  0% { transform: rotateX(65deg) rotateY(-15deg) rotateZ(0deg); }
  100% { transform: rotateX(65deg) rotateY(-15deg) rotateZ(360deg); }
}

@keyframes spinRingBeta {
  0% { transform: rotateX(45deg) rotateY(35deg) rotateZ(0deg); }
  100% { transform: rotateX(45deg) rotateY(35deg) rotateZ(360deg); }
}

@keyframes spinRingGamma {
  0% { transform: rotateX(75deg) rotateY(-45deg) rotateZ(0deg); }
  100% { transform: rotateX(75deg) rotateY(-45deg) rotateZ(360deg); }
}

/* CENTRAL PRISMATIC SHADER CORE SPHERE */
.prismatic-core-sphere {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #8057FF 45%, #101014 95%);
  box-shadow: 0 16px 40px rgba(128, 87, 255, 0.45), inset 0 -8px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  z-index: 5;
}

.hologram-stage-container:hover .prismatic-core-sphere {
  transform: scale(1.12);
  box-shadow: 0 24px 60px rgba(0, 242, 254, 0.55), inset 0 -8px 20px rgba(0, 0, 0, 0.5);
}

.sphere-specular-arc {
  position: absolute;
  top: 10px;
  left: 14px;
  width: 40px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  filter: blur(2px);
  transform: rotate(-35deg);
}

/* ORBITING SATELLITE 3D GLASS ORBS */
.hologram-satellite {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #00F2FE 70%, #5878FF 100%);
  box-shadow: 0 6px 18px rgba(0, 242, 254, 0.4);
  transition: transform 0.5s ease;
}

.sat-1 {
  width: 22px;
  height: 22px;
  animation: orbitSat1 8s linear infinite;
}

.sat-2 {
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #EE72D9 70%, #8057FF 100%);
  animation: orbitSat2 11s linear reverse infinite;
}

.sat-3 {
  width: 26px;
  height: 26px;
  background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #5878FF 70%, #101014 100%);
  animation: orbitSat3 14s linear infinite;
}

.sat-4 {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #FF6B4A 70%, #EE72D9 100%);
  animation: orbitSat4 9s linear reverse infinite;
}

@keyframes orbitSat1 {
  0% { transform: rotate(0deg) translate(110px) rotate(0deg); }
  100% { transform: rotate(360deg) translate(110px) rotate(-360deg); }
}

@keyframes orbitSat2 {
  0% { transform: rotate(90deg) translate(90px) rotate(-90deg); }
  100% { transform: rotate(450deg) translate(90px) rotate(-450deg); }
}

@keyframes orbitSat3 {
  0% { transform: rotate(180deg) translate(125px) rotate(-180deg); }
  100% { transform: rotate(540deg) translate(125px) rotate(-540deg); }
}

@keyframes orbitSat4 {
  0% { transform: rotate(270deg) translate(75px) rotate(-270deg); }
  100% { transform: rotate(630deg) translate(75px) rotate(-630deg); }
}

/* --------------------------------------------------------------------------
   12. LUXURY GLASS TAGS & SHOWCASE BOXES
   -------------------------------------------------------------------------- */
.tags-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.pill-tag {
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 500; padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border: 1px solid var(--border-light);
  border-radius: var(--radius-pill); color: var(--text-primary); box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.pill-tag:hover {
  border-color: var(--accent-purple); color: var(--accent-purple);
  transform: translateY(-3px); box-shadow: 0 10px 25px rgba(128, 87, 255, 0.12);
}

.seo-disclaimer-box { display: flex; align-items: center; gap: 12px; padding: 16px 24px; background: rgba(128, 87, 255, 0.06); border: 1px solid rgba(128, 87, 255, 0.2); border-radius: var(--radius-md); font-size: 0.9rem; color: var(--text-secondary); }
.info-icon { font-weight: bold; color: var(--accent-purple); }

/* --------------------------------------------------------------------------
   13. SECTION 05 & 10: WORKFLOW SEQUENCE
   -------------------------------------------------------------------------- */
.workflow-sequence, .active-sequence-box { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; flex-wrap: wrap; }
.workflow-step, .seq-item {
  background: #FFFFFF; border: 1px solid var(--border-light); border-radius: var(--radius-md);
  padding: 22px 24px; display: flex; align-items: center; gap: 14px; flex: 1; min-width: 220px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.03); transition: all 0.3s ease; font-family: var(--font-heading);
  font-weight: 700; font-size: 0.95rem; line-height: 1.3;
}
.workflow-step.active, .workflow-step:hover, .seq-item:hover { border-color: var(--accent-purple); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(128, 87, 255, 0.12); }

/* --------------------------------------------------------------------------
   14. SECTION 09: SEARCH FOUNDATIONS & 11: PACKAGES
   -------------------------------------------------------------------------- */
.foundations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.foundation-card { background: #FFFFFF; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 24px; display: flex; align-items: center; gap: 16px; font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; }
.f-num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--accent-purple); }

/* --------------------------------------------------------------------------
   14. ORIONIX ULTRA-LUXURY PRICING & PLANS GRID (SECTION 11)
   -------------------------------------------------------------------------- */
.working-together-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.orionix-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
  align-items: stretch;
}

.orionix-price-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  position: relative;
}

.orionix-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(128, 87, 255, 0.12);
}

.dark-plan-card.featured-scale-card {
  background: #101014;
  border: 1px solid rgba(128, 87, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.dark-plan-card.featured-scale-card:hover {
  box-shadow: 0 28px 70px rgba(128, 87, 255, 0.3);
}

.plan-emblem-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.plan-emblem-icon svg {
  width: 100%;
  height: 100%;
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.plan-title.dark-title {
  color: #FFFFFF;
}

.plan-subtitle {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.plan-subtitle.dark-sub {
  color: #A0A0AB;
}

.plan-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.plan-divider.dark-divider {
  background: rgba(255, 255, 255, 0.12);
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #222222;
}

.plan-features-list.dark-features li {
  color: #EEEEEE;
}

.feature-bullet {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-bullet svg {
  width: 100%;
  height: 100%;
}

.plan-card-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
}

.price-amount.dark-price {
  color: #FFFFFF;
}

.price-period {
  font-size: 0.88rem;
  color: #666666;
  font-weight: 500;
}

.price-period.dark-period {
  color: #A0A0AB;
}

.plan-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dark-plan-btn {
  background: #111111;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dark-plan-btn:hover {
  background: var(--accent-purple);
  color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(128, 87, 255, 0.4);
  transform: translateY(-2px);
}

.white-plan-btn {
  background: #FFFFFF;
  color: #111111;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.white-plan-btn:hover {
  background: var(--accent-cyan);
  color: #111111;
  box-shadow: 0 12px 28px rgba(0, 242, 254, 0.4);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   15. SECTION 06: WHY GROWTHNOLOGY (VERTICAL EXPANDING ACCORDION STAGE)
   -------------------------------------------------------------------------- */
.vertical-accordion-section {
  padding: 100px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.vertical-accordion-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
}

.accordion-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.accordion-left-col .section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.accordion-left-col .section-description {
  margin-bottom: 32px;
}

.start-project-btn {
  margin-top: 8px;
}

.vertical-slats-container {
  display: flex;
  height: 480px;
  gap: 16px;
  width: 100%;
}

.vertical-slat-item {
  position: relative;
  flex: 1;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.75s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.vertical-slat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--iridescent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.vertical-slat-item:not(.active):hover {
  border-color: var(--accent-purple);
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(128, 87, 255, 0.12);
}

.vertical-slat-item.active {
  flex: 3.5;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F5 100%);
  border-color: var(--accent-purple);
  box-shadow: 0 24px 60px rgba(128, 87, 255, 0.18);
  cursor: default;
}

.vertical-slat-item.active::before {
  opacity: 1;
}

/* COLLAPSED VERTICAL HEADER (WHEN SLAT IS NOT ACTIVE) */
.slat-collapsed-header {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.vertical-slat-item.active .slat-collapsed-header {
  opacity: 0;
  pointer-events: none;
}

.slat-num {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-purple);
  transition: transform 0.3s ease;
}

.vertical-slat-item:hover .slat-num {
  transform: scale(1.2);
}

.slat-vertical-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.vertical-slat-item:hover .slat-vertical-title {
  color: var(--accent-purple);
}

/* EXPANDED CONTENT (WHEN SLAT IS ACTIVE) */
.slat-expanded-content {
  padding: 44px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.vertical-slat-item.active .slat-expanded-content {
  opacity: 1;
  transform: translateX(0);
}

.slat-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-purple);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0;
}

.slat-expanded-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
  opacity: 0;
}

.slat-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
  opacity: 0;
}

.slat-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
}

.vertical-slat-item.active .slat-badge {
  animation: slatFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.vertical-slat-item.active .slat-expanded-title {
  animation: slatFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.vertical-slat-item.active .slat-desc {
  animation: slatFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.vertical-slat-item.active .slat-tags {
  animation: slatFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

@keyframes slatFadeUp {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

.slat-tags span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   16. SECTION 07: SELECTED CONCEPTS (PROJECTS)
   -------------------------------------------------------------------------- */
.projects-grid { display: flex; flex-direction: column; gap: 60px; }
.project-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: #FFFFFF; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; transition: border-color 0.3s ease; }
.project-card:hover { border-color: var(--accent-purple); }
.project-media-box { width: 100%; height: 360px; border-radius: var(--radius-md); overflow: hidden; }
.project-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform 0.4s ease; }
.project-card:hover .project-img-placeholder { transform: scale(1.03); }
.luxury-bg { background: linear-gradient(135deg, #101014 0%, #2A1B4E 100%); }
.health-bg { background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%); }
.estate-bg { background: linear-gradient(135deg, #1A1C20 0%, #343A40 100%); }
.project-badge { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: #FFFFFF; letter-spacing: 0.06em; }
.project-header-line { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.proj-num { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700; color: var(--accent-purple); }
.proj-category { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; }
.project-title { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.project-summary { color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.project-tags { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-muted); margin-bottom: 28px; }
.project-link { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-primary); transition: color 0.2s ease; }
.project-link:hover { color: var(--accent-purple); }

/* --------------------------------------------------------------------------
   17. FAQ 2-COLUMN SPLIT GRID STAGE (MATCHING REFERENCE SCREENSHOT)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   17. FAQ FULL-WIDTH STACKED LIST STAGE (MATCHING NEW REFERENCE SCREENSHOT)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 100px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-light);
}

.faq-stacked-list {
  display: flex;
  flex-direction: column;
  max-width: 980px;
  margin: 56px auto 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-list-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  transition: background 0.35s ease;
}

.faq-list-row:hover, .faq-list-row[open] {
  background: linear-gradient(90deg, rgba(128, 87, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.faq-row-header {
  padding: 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.faq-row-header::-webkit-details-marker {
  display: none;
}

.faq-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-purple);
  opacity: 0.85;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-list-row:hover .faq-num, .faq-list-row[open] .faq-num {
  transform: scale(1.15);
  color: var(--accent-purple);
}

.faq-row-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.faq-list-row:hover .faq-row-title, .faq-list-row[open] .faq-row-title {
  color: var(--accent-purple);
  transform: translateX(4px);
}

.faq-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--iridescent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(128, 87, 255, 0.35);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.faq-list-row:hover .faq-action-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 28px rgba(128, 87, 255, 0.55);
}

.btn-symbol {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-list-row[open] .btn-symbol {
  transform: rotate(45deg);
}

.faq-row-answer {
  padding: 0 16px 32px 64px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 840px;
  animation: faqAnswerFade 0.35s ease forwards;
}

.faq-row-answer p {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-purple);
}

@keyframes faqAnswerFade {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   18. SECTION 09: SEARCH VISIBILITY & FOUNDATIONS (EXACT ORIONIX FRAMELESS STAGE)
   -------------------------------------------------------------------------- */
.seo-visibility-section {
  padding: 120px 0;
  background: #FAF8F5; /* Warm Off-White Orionix Canvas Background */
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.orionix-sphere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 48px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .orionix-sphere-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}

@media (max-width: 640px) {
  .orionix-sphere-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.orionix-sphere-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent; /* No White Card Container - Frameless Orionix Style */
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.orionix-sphere-card:hover {
  transform: translateY(-6px);
}

.sphere-icon-bubble {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07), inset 0 2px 6px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.orionix-sphere-card:hover .sphere-icon-bubble {
  transform: scale(1.14) translateY(-2px);
  box-shadow: 0 22px 45px rgba(128, 87, 255, 0.22);
}

.sphere-svg {
  width: 44px;
  height: 44px;
}

.sphere-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.orionix-sphere-card:hover .sphere-card-title {
  color: var(--accent-purple);
}

.sphere-card-desc {
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  max-width: 320px;
}

/* --------------------------------------------------------------------------
   19. SECTION 13: CONTACT FORM & DARK CTA
   -------------------------------------------------------------------------- */
.dark-cta-card {
  background: var(--bg-dark); color: var(--text-light); border-radius: var(--radius-lg);
  padding: 80px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.cta-header .light-meta .section-num { color: var(--accent-cyan); }
.cta-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 3.8vw, 3.8rem); font-weight: 800; line-height: 1.1; color: var(--text-light); margin-bottom: 20px; }
.cta-subtitle { color: var(--text-light-muted); font-size: 1.1rem; line-height: 1.6; margin-bottom: 36px; }
.direct-email-hud { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-light-muted); letter-spacing: 0.12em; }
.email-link { color: var(--accent-cyan); text-decoration: underline; }

.growth-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; color: var(--text-light-muted); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-dark); border-radius: var(--radius-sm); padding: 14px 16px; color: var(--text-light); outline: none; transition: border-color 0.2s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-purple); }
.form-group option { background: var(--bg-dark); color: var(--text-light); }
.submit-btn { margin-top: 12px; width: 100%; padding: 16px; }

/* --------------------------------------------------------------------------
   19. ULTRA-LUXURY ANIMATED FOOTER
   -------------------------------------------------------------------------- */
.luxury-animated-footer {
  background: #08080C;
  color: var(--text-light);
  padding: 0 0 40px 0;
  position: relative;
  overflow: hidden;
}

/* KINETIC INFINITE MARQUEE STRIP */
.footer-marquee-strip {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--iridescent-gradient);
  padding: 14px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(128, 87, 255, 0.35);
  margin-bottom: 80px;
}

.footer-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  white-space: nowrap;
  animation: marqueeTapeLeft 22s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.m-star {
  color: #00F2FE;
  font-size: 1rem;
}

/* AMBIENT FLOATING GLOW ORBS IN FOOTER */
.footer-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.25;
}

.orb-1 {
  width: 400px; height: 400px;
  background: #8057FF;
  top: 10%; left: -100px;
  animation: floatOrb1 14s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px; height: 500px;
  background: #00F2FE;
  bottom: 0%; right: -150px;
  animation: floatOrb2 18s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(80px) scale(1.2); }
}

@keyframes floatOrb2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-100px) scale(1.15); }
}

/* TOP HUD STATUS ROW IN FOOTER */
.footer-hud-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
  margin-bottom: 60px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

.hud-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: #FFFFFF;
}

.status-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00E676;
  box-shadow: 0 0 10px #00E676;
  animation: pulseDot 2s infinite ease-in-out;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 242, 254, 0.3);
  transition: all 0.3s ease;
}

.back-to-top-btn:hover {
  background: var(--accent-cyan);
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
  transform: translateY(-3px);
}

/* FOOTER ANIMATED LINK HOVER EFFECT */
.footer-animated-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light-muted) !important;
  transition: all 0.3s ease !important;
  font-size: 0.92rem;
  text-decoration: none;
}

.link-arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: var(--accent-cyan);
}

.footer-animated-link:hover {
  color: #FFFFFF !important;
  transform: translateX(8px);
}

.footer-animated-link:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* GIANT SHIMMERING TYPOGRAPHY BACKGROUND */
.animated-giant-text {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 13rem);
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(128, 87, 255, 0.4) 50%, rgba(0, 242, 254, 0.25) 100%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  color: transparent;
  letter-spacing: 0.06em;
  user-select: none;
  margin-bottom: 40px;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.animated-giant-text:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 30px rgba(128, 87, 255, 0.3));
}

.footer-container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 80px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; letter-spacing: 0.08em; margin-bottom: 8px; text-decoration: none; color: #FFFFFF; display: inline-flex; align-items: center; gap: 8px; }
.footer-logo-img { height: 32px; width: auto; object-fit: contain; }
.footer-tagline { font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent-cyan); letter-spacing: 0.15em; margin-bottom: 16px; }
.footer-desc { color: var(--text-light-muted); font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.footer-heading { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em; color: var(--text-light-muted); display: block; margin-bottom: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom-line { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-dark); padding-top: 32px; font-size: 0.82rem; color: var(--text-light-muted); }
.footer-legal { display: flex; gap: 24px; }

/* --------------------------------------------------------------------------
   20. SECTION 10: DESIGN ARTICLES — THEME-MATCHED DARK PREMIUM
   -------------------------------------------------------------------------- */
.articles-section {
  background: var(--bg-main);
  padding: 120px 0;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.articles-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(128, 87, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.articles-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.articles-section-header .section-meta {
  margin-bottom: 12px;
}

.articles-section-header .section-num {
  color: var(--accent-purple);
}

.articles-display-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.1;
}

.articles-display-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ARTICLES GRID — ASYMMETRIC 2-COLUMN */
.articles-dynamic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* BASE ARTICLE CARD — GLASS DARK */
.article-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(128, 87, 255, 0.15);
  border-color: var(--accent-purple);
}

/* CARD VARIANT: TEAL ACCENT */
.teal-card {
  background: linear-gradient(145deg, rgba(0, 242, 254, 0.06) 0%, var(--bg-card) 100%);
  border-color: rgba(0, 242, 254, 0.18);
}
.teal-card:hover { border-color: var(--accent-cyan); }

/* CARD VARIANT: OFF-WHITE SUBTLE */
.offwhite-card {
  background: linear-gradient(145deg, rgba(128, 87, 255, 0.04) 0%, var(--bg-card) 100%);
  border-color: rgba(128, 87, 255, 0.15);
}
.offwhite-card:hover { border-color: var(--accent-purple); }

/* CARD VARIANT: FULL-WIDTH BANNER */
.wide-banner-card {
  grid-column: 1 / -1;
  grid-template-columns: 1.3fr 1fr;
  padding: 44px 48px;
  background: linear-gradient(145deg, rgba(238, 114, 217, 0.04) 0%, var(--bg-card) 100%);
  border-color: rgba(238, 114, 217, 0.15);
}
.wide-banner-card:hover { border-color: var(--accent-pink); }

/* CARD VARIANT: HALF-WIDTH */
.half-width-card {
  background: linear-gradient(145deg, rgba(88, 120, 255, 0.04) 0%, var(--bg-card) 100%);
  border-color: rgba(88, 120, 255, 0.15);
}
.half-width-card:hover { border-color: var(--accent-blue); }

/* CARD VARIANT: BLUE ACCENT */
.blue-card {
  background: linear-gradient(145deg, rgba(0, 242, 254, 0.05) 0%, rgba(128, 87, 255, 0.03) 50%, var(--bg-card) 100%);
  border-color: rgba(0, 242, 254, 0.18);
}
.blue-card:hover { border-color: var(--accent-cyan); }

.article-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.article-card:hover .article-card-title {
  color: var(--accent-purple);
}

.article-card-snippet {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 400px;
}

/* READ ARTICLE PILL — IRIDESCENT GRADIENT */
.article-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--iridescent-gradient);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(128, 87, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-read-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(128, 87, 255, 0.5);
}

.btn-arrow-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.article-read-btn:hover .btn-arrow-icon {
  background: rgba(255, 255, 255, 0.35);
  transform: translate(2px, 2px);
}

/* GRAPHIC THUMBNAIL — GLASS CONTAINER */
.article-graphic-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--border-light);
}

.graphic-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 10;
}

.badge-chip {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(128, 87, 255, 0.2);
  color: var(--accent-purple);
  border: 1px solid rgba(128, 87, 255, 0.2);
  backdrop-filter: blur(6px);
}

.badge-chip.dark-badge {
  background: rgba(0, 242, 254, 0.12);
  color: var(--accent-cyan);
  border-color: rgba(0, 242, 254, 0.2);
}

.badge-chip.blue-badge {
  background: rgba(88, 120, 255, 0.15);
  color: var(--accent-blue);
  border-color: rgba(88, 120, 255, 0.2);
}

/* DARK TEAL GRAPHIC (ARTICLE 1) */
.dark-teal-graphic {
  background: linear-gradient(160deg, #0D1A1A 0%, #162020 100%);
  border-color: rgba(0, 242, 254, 0.1);
}

.graphic-brand-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-light-muted);
  padding: 8px;
}

.logo-item-text { opacity: 0.8; color: #FFFFFF; transition: opacity 0.3s ease; }
.article-card:hover .logo-item-text { opacity: 1; }
.logo-item-text.highlight-gemini { color: var(--accent-cyan); opacity: 1; }

/* DARK CMS GRAPHIC (ARTICLE 2) */
.dark-cms-graphic {
  background: linear-gradient(160deg, #12121A 0%, #1A1A25 100%);
  border-color: rgba(128, 87, 255, 0.1);
}

.cms-icon-matrix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 2rem;
  color: var(--text-light-muted);
  height: 100%;
}

.wp-emblem {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.article-card:hover .wp-emblem {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
}

/* PHOTO THUMBS */
.thumb-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.article-card:hover .thumb-photo {
  opacity: 0.9;
}

/* COLOR WHEEL (ARTICLE 5) */
.color-wheel-graphic {
  background: linear-gradient(160deg, #0A1028 0%, #101830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(0, 242, 254, 0.1);
}

.color-wheel-circle {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.article-card:hover .color-wheel-circle {
  transform: scale(1.1) rotate(15deg);
}

.wheel-sector { position: absolute; width: 50%; height: 50%; }
.wheel-sector.s1 { top: 0; left: 0; background: var(--accent-purple); }
.wheel-sector.s2 { top: 0; right: 0; background: var(--accent-cyan); }
.wheel-sector.s3 { bottom: 0; left: 0; background: var(--accent-pink); }
.wheel-sector.s4 { bottom: 0; right: 0; background: var(--accent-blue); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .articles-dynamic-grid { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; padding: 28px 22px; }
  .wide-banner-card { grid-column: span 1; grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .floating-3d-artifact { display: none; }
  .system-center-cards-wrapper { height: auto; }
  .nina-capability-card { position: relative; top: 0; left: 0; transform: none !important; opacity: 1 !important; margin-bottom: 24px; }
  .project-card, .dark-cta-card, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .dark-cta-card { padding: 40px 24px; }
  .floating-badge { display: none !important; }
  .gallery-project-card { width: 320px; height: 280px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-hud-clock { display: none; }
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  
  /* Fix tilted ribbon overflow and horizontal scroll on mobile */
  .tilted-ribbon-showcase {
    width: 100% !important;
    margin-left: 0 !important;
    overflow: hidden !important;
    max-width: 100% !important;
  }
  .ribbon-tape {
    width: 150% !important;
    left: -25% !important;
  }

  /* Contact form dark CTA card - stack vertically */
  .dark-cta-card {
    grid-template-columns: 1fr !important;
    padding: 40px 20px !important;
    gap: 32px !important;
  }
  .cta-title {
    font-size: 2rem !important;
  }

  /* Section containers padding */
  .section-container {
    padding: 0 16px !important;
  }

  /* Footer marquee strip fix */
  .footer-marquee-strip {
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* Footer grid stack */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 0 16px !important;
  }

  /* Marquee gallery */
  .marquee-gallery-wrapper {
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* Hero section text */
  .hero-subtitle {
    font-size: 0.9rem !important;
  }

  /* Any full-bleed viewport-width element */
  [style*="100vw"] {
    max-width: 100% !important;
  }
}

@media (max-width: 500px) {
  /* Hide logo text on small screens to save space and prevent header overflow */
  .brand-text {
    display: none !important;
  }
  .navbar {
    padding: 0 16px !important;
  }
  .nav-cta {
    padding: 8px 16px !important;
    font-size: 0.72rem !important;
  }
  .hero-title {
    font-size: 2.2rem !important;
  }
  .section-title {
    font-size: 1.8rem !important;
  }
  .dark-cta-card {
    padding: 28px 16px !important;
  }
}

/* International Telephone Input width fix */
.iti {
  width: 100%;
}

/* Fix intl-tel-input dropdown list contrast and visibility */
.iti__country-list {
  background-color: #FFFFFF !important;
  color: #111111 !important;
  border: 1px solid #D8D5D0 !important;
  font-family: var(--font-body) !important;
}
.iti__country {
  color: #111111 !important;
}
.iti__country-name, .iti__dial-code {
  color: #111111 !important;
  font-size: 0.85rem !important;
}
.iti__country.iti__highlight {
  background-color: #ECE9E3 !important;
}

/* ---- MOBILE HAMBURGER NAVIGATION ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* Open state for hamburger animation */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(244, 242, 238, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(-20px);
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--text-primary);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.03em;
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-nav-link:hover {
  color: var(--accent);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 900px) {
  .rotary-showcase-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 30px 20px;
    gap: 30px;
    height: auto;
    min-height: auto;
  }
  .rotary-left-column {
    height: 320px;
    max-width: 320px;
    margin: 0 auto;
  }
  .rotary-right-column {
    display: none; /* Hide hologram on smaller screens to save space */
  }
}

/* ---- COMPREHENSIVE MOBILE RESPONSIVENESS FIXES ---- */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100%;
  }
  
  /* 2. Stack why growthnology vertically */
  .why-growthnology, .vertical-accordion, .why-section, .why-grid {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
  }
  .vertical-accordion-item, .vertical-accordion-panel {
    width: 100% !important;
    flex: none !important;
  }

  /* 3. Rotary showcase wrapper */
  .rotary-showcase-wrapper {
    overflow-x: hidden;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* 4. Section Containers Padding */
  .section-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* 5. Nina / Capability Cards */
  .nina-cards, .capability-cards, .capability-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  .nina-card, .capability-card {
    width: 100% !important;
  }

  /* 6. Sphere Grid */
  .orionix-sphere-grid {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }

  /* 7. Footer Grid */
  .footer-grid, footer .grid {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }

  /* 8. Pricing Grid */
  .orionix-pricing-grid, .pricing-grid {
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 24px !important;
  }
}
