/* ═══════════════════════════════════════════════════════════
   OmnicWorld — Premium Corporate Design System v2
   Redesign: Refined palette, Outfit + Inter dual typography,
   premium cards, mesh gradients, refined motion.
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  /* Core Palette */
  --cream: #FAF8F5;
  --cream-rgb: 250, 248, 245;
  --purple: #3D1A78;
  --purple-rgb: 61, 26, 120;
  --purple-deep: #2B0F5E;
  --purple-mid: #5A2D9E;
  --purple-glow: #6B3FA0;
  --purple-light: #9B6FD4;
  --black: #0A0A0A;
  --black-rgb: 10, 10, 10;
  --white: #FFFFFF;

  /* Secondary Accent — Warm Gold */
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-rgb: 201, 168, 76;

  /* Neutrals */
  --gray-50: #F7F5F2;
  --gray-100: #F0EDE9;
  --gray-200: #E0DBD4;
  --gray-300: #B5AFA7;
  --gray-600: #6B6560;
  --gray-800: #2A2724;

  /* Typography */
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.5s var(--ease-out-expo);
  --transition-fast: 0.25s var(--ease-out-expo);

  /* Shadows — Multi-layer */
  --shadow-sm: 0 1px 2px rgba(var(--black-rgb), 0.04), 0 4px 12px rgba(var(--black-rgb), 0.03);
  --shadow-md: 0 2px 4px rgba(var(--black-rgb), 0.04), 0 8px 24px rgba(var(--black-rgb), 0.06), 0 24px 48px rgba(var(--black-rgb), 0.04);
  --shadow-lg: 0 4px 8px rgba(var(--black-rgb), 0.04), 0 16px 40px rgba(var(--black-rgb), 0.06), 0 48px 80px rgba(var(--black-rgb), 0.06);
  --shadow-purple: 0 4px 12px rgba(var(--purple-rgb), 0.12), 0 16px 40px rgba(var(--purple-rgb), 0.18);
  --shadow-glow: 0 0 40px rgba(var(--purple-rgb), 0.2), 0 0 80px rgba(var(--purple-rgb), 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

input {
  font-family: inherit;
}

::selection {
  background: rgba(var(--purple-rgb), 0.15);
  color: var(--purple);
}

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  z-index: 9999;
  width: 0%;
  transition: none;
}

/* ─── Utility ─── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0.4);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.8);
    box-shadow: 0 0 0 6px rgba(var(--gold-rgb), 0);
  }
}

.section-eyebrow-light {
  color: var(--purple-light);
}

.section-eyebrow-light::before {
  background: var(--gold-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 24px;
}

.section-title-light {
  color: var(--cream);
}

.text-accent {
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent-light {
  background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 560px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  box-shadow: var(--shadow-purple);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(var(--purple-rgb), 0.25), 0 24px 56px rgba(var(--purple-rgb), 0.2);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--purple-rgb), 0.08);
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 5vw, 64px);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(var(--cream-rgb), 0.85);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(var(--black-rgb), 0.06);
  box-shadow: 0 4px 30px rgba(var(--black-rgb), 0.04);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  z-index: 10;
}

.logo-mark {
  height: 80px;
  width: auto;
  display: flex;
  align-items: center;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition-fast), height var(--transition-fast), transform var(--transition-fast);
  transform: scale(1.15);
  /* Make it bigger without changing container size */
}

.navbar.scrolled .logo-mark {
  filter: none;
  height: 65px;
  transform: scale(1.1);
}

.logo-text {
  letter-spacing: -0.02em;
}

/* ─── Dropdown ─── */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 12px 0;
  z-index: 1001;
  border: 1px solid rgba(var(--black-rgb), 0.05);
}

.dropdown:hover>.dropdown-content {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.nav-links .dropdown-content a {
  color: var(--gray-800);
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.navbar.scrolled .nav-links .dropdown-content a {
  color: var(--gray-800);
}

.nav-links .dropdown-content a::after {
  display: none;
}

.nav-links .dropdown-content a:hover,
.navbar.scrolled .nav-links .dropdown-content a:hover {
  background-color: rgba(var(--purple-rgb), 0.04);
  color: var(--purple);
}

/* ─── Nested Dropdown ─── */
.dropdown-submenu {
  position: relative;
}

.dropdown-subcontent {
  display: none;
  position: absolute;
  top: -12px;
  left: 100%;
  background-color: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 12px 0;
  z-index: 1002;
  border: 1px solid rgba(var(--black-rgb), 0.05);
}

.dropdown-submenu:hover>.dropdown-subcontent {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-light), var(--gold));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple-light);
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--purple);
}

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

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: var(--shadow-purple);
}

/* ─── Mobile Toggle ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  width: 28px;
  height: 20px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out-expo);
  position: absolute;
  left: 2px;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 9px;
}

.nav-toggle span:nth-child(3) {
  top: 18px;
}

.nav-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
  background: var(--black);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
  background: var(--black);
}

.navbar.scrolled .nav-toggle span {
  background: var(--black);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Mesh gradient orbs for hero background */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: rgba(var(--purple-rgb), 0.2);
  top: -20%;
  left: -10%;
  animation: meshFloat1 12s ease-in-out infinite;
}

.hero::after {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: rgba(var(--gold-rgb), 0.08);
  bottom: -15%;
  right: -10%;
  animation: meshFloat2 15s ease-in-out infinite;
}

@keyframes meshFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(8%, 12%) scale(1.05);
  }

  66% {
    transform: translate(-5%, 5%) scale(0.95);
  }
}

@keyframes meshFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-10%, -8%) scale(1.08);
  }

  66% {
    transform: translate(6%, -4%) scale(0.96);
  }
}

/* Three.js background container */
.hero-three-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
}

.hero-three-bg canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  padding: 40px 0;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 24px;
}

.headline-accent {
  background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(var(--cream-rgb), 0.6);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero .btn-ghost {
  border-color: rgba(var(--cream-rgb), 0.2);
  color: var(--cream);
}

.hero .btn-ghost:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  box-shadow: 0 4px 20px rgba(var(--purple-rgb), 0.12);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  display: inline;
}

.proof-suffix {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
}

.proof-label {
  font-size: 13px;
  color: rgba(var(--cream-rgb), 0.45);
  font-weight: 500;
  margin-top: 2px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(var(--cream-rgb), 0.15), transparent);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(var(--cream-rgb), 0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(var(--cream-rgb), 0.3), transparent);
  animation: scrollBounce 2.5s var(--ease-out-expo) infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.3;
  }
}

/* Hero Visual (Tesseract canvas) */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  min-height: 600px;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
      rgba(var(--purple-rgb), 0.5) 0%,
      rgba(var(--gold-rgb), 0.08) 40%,
      transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

/* ─── Target & Services ─── */
.target-services {
  padding: 96px 0;
  position: relative;
}

.ts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ts-about {
  padding-top: 20px;
}

.target-badges {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(var(--purple-rgb), 0.15);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  background: rgba(var(--purple-rgb), 0.03);
  transition: all var(--transition);
}

.badge:hover {
  border-color: var(--purple);
  background: rgba(var(--purple-rgb), 0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(var(--purple-rgb), 0.1);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
}

/* Services Card — Premium glass card */
.ts-services-card {
  position: relative;
  perspective: 800px;
}

.services-card-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition);
}

.services-card-inner:hover {
  transform: translateY(-8px);
}

.services-card-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.3), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.services-card-inner:hover .services-card-glow {
  opacity: 1;
}

.services-card-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(var(--purple-rgb), 0.08);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 2;
}

.services-card-inner:hover .services-card-border {
  border-color: rgba(var(--purple-rgb), 0.3);
  box-shadow: inset 0 0 60px rgba(var(--purple-rgb), 0.04), 0 0 80px rgba(var(--purple-rgb), 0.06);
}

.services-card-content {
  position: relative;
  z-index: 3;
  background: rgba(var(--cream-rgb), 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 48px;
  border-radius: var(--radius-lg);
}

.services-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.08), rgba(var(--gold-rgb), 0.06));
  border-radius: var(--radius-md);
  color: var(--purple);
  margin-bottom: 24px;
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.services-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.services-mini-list {
  margin-bottom: 32px;
}

.services-mini-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 2.3;
}

.services-mini-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  opacity: 0.7;
}

.services-cta {
  width: 100%;
  justify-content: center;
}

/* ─── Process Section ─── */
.process-section {
  padding: 96px 0;
  position: relative;
  background: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

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

/* Connecting line behind cards */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--gold), var(--purple), transparent);
  opacity: 0.25;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
  box-shadow: var(--shadow-purple);
  position: relative;
  transition: all var(--transition);
}

.process-step:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.process-step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(var(--purple-rgb), 0.12);
}

.process-step-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-md);
}

.process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.process-step:hover .process-step-image img {
  transform: scale(1.06);
}

.process-step-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.process-step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 320px;
  margin: 0 auto;
}

/* ─── Value Proposition ─── */
.value-prop {
  position: relative;
  padding: 96px 0;
  background: var(--black);
  overflow: hidden;
}

.vp-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vp-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--purple-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--purple-rgb), 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.vp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.vp-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(var(--purple-rgb), 0.12);
  top: -150px;
  right: -100px;
  animation: orbFloat1 10s ease-in-out infinite;
}

.vp-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(var(--gold-rgb), 0.06);
  bottom: -100px;
  left: -100px;
  animation: orbFloat2 13s ease-in-out infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-40px, 30px);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -40px);
  }
}

#vpCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.vp-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.vp-header .section-desc {
  margin: 0 auto;
  color: rgba(var(--cream-rgb), 0.55);
}

.vp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.vp-card {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.vp-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(var(--purple-rgb), 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(var(--purple-rgb), 0.12);
}

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

.vp-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.12), rgba(var(--gold-rgb), 0.06));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
}

.vp-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.15), rgba(var(--gold-rgb), 0.08));
  border-radius: var(--radius-sm);
  color: var(--purple-light);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.vp-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.vp-card p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(var(--cream-rgb), 0.5);
  position: relative;
  z-index: 1;
}

/* ─── Newsletter ─── */
.newsletter {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle radial gradient decoration */
.newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(var(--purple-rgb), 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Dot pattern decoration */
.newsletter::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(var(--purple-rgb), 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
  pointer-events: none;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-content .section-eyebrow {
  justify-content: center;
}

.newsletter-content .section-title {
  text-align: center;
}

.newsletter-desc {
  margin: 0 auto 40px;
  text-align: center;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-wrap {
  display: flex;
  gap: 12px;
  padding: 6px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.newsletter-input-wrap:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(var(--purple-rgb), 0.08), 0 8px 32px rgba(var(--purple-rgb), 0.06);
}

.newsletter-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 15px;
  background: transparent;
  color: var(--black);
  min-width: 0;
}

.newsletter-input-wrap input::placeholder {
  color: var(--gray-300);
}

.newsletter-btn {
  flex-shrink: 0;
  padding: 12px 28px;
}

.newsletter-note {
  font-size: 13px;
  color: var(--gray-300);
  margin-top: 16px;
}

/* ─── Footer ─── */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 0;
  position: relative;
}

/* Gold-purple gradient top border */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--purple) 30%, var(--gold) 50%, var(--purple) 70%, transparent 95%);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px clamp(24px, 5vw, 64px) 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(var(--cream-rgb), 0.06);
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  filter: invert(1);
  mix-blend-mode: screen;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(var(--cream-rgb), 0.4);
  max-width: 280px;
  margin-bottom: 24px;
}

/* Social links row in footer */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(var(--cream-rgb), 0.1);
  color: rgba(var(--cream-rgb), 0.4);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  background: rgba(var(--purple-rgb), 0.1);
  transform: translateY(-2px);
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--cream-rgb), 0.3);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(var(--cream-rgb), 0.55);
  line-height: 2.2;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-col a:hover {
  color: var(--cream);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 13px;
  color: rgba(var(--cream-rgb), 0.25);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(var(--cream-rgb), 0.25);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--cream);
}

/* ─── Scroll Reveal Animations ─── */
[data-scroll] {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

[data-scroll="fade-up"] {
  transform: translateY(48px);
}

[data-scroll="fade-right"] {
  transform: translateX(-48px);
}

[data-scroll="fade-left"] {
  transform: translateX(48px);
}

[data-scroll].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── Hero Background Image ─── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), var(--black));
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */

@media (max-width: 1024px) {
  .hero-text {
    max-width: 100%;
  }

  .ts-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .page-hero {
    padding: 140px 0 60px 0;
    min-height: 50vh;
  }

  .page-hero--service {
    min-height: 55vh;
    padding: 160px 0 80px 0;
  }

  .hero-stats-row {
    gap: 24px;
  }

  .hero-3d-container {
    width: 100%;
    opacity: 0.35;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile menu overlay */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--cream);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 5;
    animation: menuSlideIn 0.4s var(--ease-out-expo);
  }

  @keyframes menuSlideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links.open a {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
  }

  .nav-links.open a:hover {
    color: var(--purple);
  }

  .hero-headline {
    font-size: clamp(28px, 7vw, 44px);
  }

  .hero-proof {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--cream-rgb), 0.15), transparent);
  }

  .services-card-content {
    padding: 32px;
  }

  .newsletter-input-wrap {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .newsletter-btn {
    border-radius: 50px;
    justify-content: center;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ═══════════════════════ PAGE-SPECIFIC STYLES ═══════════════════════ */

/* Page Hero (subpages) */
.page-hero {
  padding: 180px 0 100px 0;
  background: var(--black);
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Particle Canvas Layer */
.hero-particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Background image with overlay */
.page-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.12;
}

.page-hero .hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlays for depth */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(var(--purple-rgb), 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(var(--gold-rgb), 0.06) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 1;
  pointer-events: none;
}

.page-hero .section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero .page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  max-width: 720px;
}

.page-hero .hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: left;
}

.page-hero .hero-sub {
  margin-left: 0;
  text-align: left;
  color: rgba(var(--cream-rgb), 0.6);
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
}

.page-hero .hero-eyebrow {
  color: var(--purple-light);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.page-hero .hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2.5s ease-in-out infinite;
}

/* Service Detail Hero (taller) */
.page-hero--service {
  min-height: 70vh;
  padding: 200px 0 120px 0;
}

.page-hero--service .hero-headline {
  font-size: clamp(32px, 5vw, 52px);
}

/* Floating badge in service heroes */
.hero-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(var(--purple-rgb), 0.2);
  border: 1px solid rgba(var(--purple-rgb), 0.3);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-tier-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Hero stats row */
.hero-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.hero-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(var(--cream-rgb), 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Services Grid (services.html) */
.services-section {
  padding: 80px 0 120px;
}

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

.service-full-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-full-card:hover {
  border-color: rgba(var(--purple-rgb), 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-full-card:hover::before {
  transform: scaleX(1);
}

.service-full-card .services-icon {
  margin-bottom: 20px;
}

.service-full-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-full-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
}

.service-full-card .service-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.service-full-card .service-features li {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 2;
  padding-left: 22px;
  position: relative;
}

.service-full-card .service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.1), rgba(var(--gold-rgb), 0.08));
  border: 1.5px solid var(--purple);
}

.service-full-card .service-features li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 5px;
  height: 8px;
  border-right: 1.5px solid var(--purple);
  border-bottom: 1.5px solid var(--purple);
}

@media (max-width: 1024px) {
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-full-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page */
.about-section {
  padding: 80px 0 120px;
}

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

.about-grid+.about-grid {
  margin-top: 120px;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse>* {
  direction: ltr;
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.06), rgba(var(--purple-rgb), 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-photo {
  background: none;
}

.about-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-visual-photo:hover img {
  transform: scale(1.04);
}

.about-visual-pattern {
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(var(--purple-rgb), 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(var(--gold-rgb), 0.06) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-icon {
  font-size: 80px;
  opacity: 0.25;
  color: var(--purple);
}

/* Parallax Images */
.parallax-img {
  will-change: transform;
  transition: transform 0.1s linear;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
}

.about-text p+p {
  margin-top: 16px;
}

/* Values Grid */
.values-section {
  padding: 120px 0;
  background: var(--gray-50);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--purple-rgb), 0.1);
}

.value-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.07), rgba(var(--gold-rgb), 0.05));
  border-radius: var(--radius-md);
  color: var(--purple);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
}

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

  .about-grid.reverse {
    direction: ltr;
  }

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

/* Contact Page */
.contact-section {
  padding: 80px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info-card {
  padding: 32px;
  background: rgba(var(--purple-rgb), 0.02);
  border: 1px solid rgba(var(--purple-rgb), 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(var(--purple-rgb), 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.08), rgba(var(--gold-rgb), 0.04));
  border-radius: var(--radius-sm);
  color: var(--purple);
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--black);
  transition: all var(--transition-fast);
  outline: none;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(var(--purple-rgb), 0.06);
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* CTA Banner (reusable) */
.cta-banner {
  padding: 120px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(var(--purple-rgb), 0.1);
  filter: blur(120px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.04);
  filter: blur(100px);
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(var(--cream-rgb), 0.5);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  font-size: 16px;
  padding: 16px 40px;
}

/* Tier Blocks */
.services-tier-section {
  padding: 60px 0;
}

.tier-block {
  margin-bottom: 80px;
}

.tier-header {
  margin-bottom: 40px;
  text-align: left;
}

.tier-header .badge {
  display: inline-block;
  margin-bottom: 16px;
  background: rgba(var(--purple-rgb), 0.1);
  color: var(--purple);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

.tier-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.tier-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 800px;
}

.services-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--gray-600);
}

.services-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-meta strong {
  color: var(--black);
}

.service-target {
  margin-top: 24px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.service-target strong {
  color: var(--purple);
}

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

/* ─── Three.js 3D Containers ─── */
.hero-3d-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
  opacity: 0.7;
}

.hero-3d-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Section 3D Divider */
.section-3d-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

.section-3d-divider canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ─── Service Page Image Styles ─── */

/* Full-width image break between sections */
.service-image-break {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin: 0;
}

.service-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
  transition: transform 8s ease-out;
}

.service-image-break:hover img {
  transform: scale(1.05);
}

.service-image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      var(--black) 0%,
      transparent 25%,
      transparent 75%,
      var(--black) 100%);
  pointer-events: none;
}

/* Inline content image */
.service-inline-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
  height: 280px;
}

.service-inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.1);
  transition: transform 0.8s var(--ease-out-expo);
}

.service-inline-image:hover img {
  transform: scale(1.03);
}

.service-inline-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.15), transparent 70%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* Process visual card */
.process-visual-card {
  background: rgba(var(--purple-rgb), 0.04);
  border: 1px solid rgba(var(--purple-rgb), 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all var(--transition);
}

.process-visual-card:hover {
  border-color: rgba(var(--purple-rgb), 0.2);
}

.process-visual-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  filter: brightness(0.6) saturate(1.3);
}

.process-visual-card .process-text {
  flex: 1;
}

@media (max-width: 768px) {
  .process-visual-card {
    flex-direction: column;
  }

  .process-visual-card img {
    width: 100%;
    height: 180px;
  }

  .service-image-break {
    height: 250px;
  }
}

/* Case Study image header */
.case-study-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}

.case-study-header img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.6) saturate(1.2);
}

@media (max-width: 768px) {
  .case-study-header {
    grid-template-columns: 1fr;
  }
}

/* ─── Services Page ─── */

/* Hero variant for services */
.svc-hero {
  min-height: 56vh;
}

.services-tier-section {
  padding: 48px 0 72px;
  position: relative;
  overflow: hidden;
}

.services-tier-section::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.04) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.services-tier-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.04) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.services-tier-section .section-inner {
  position: relative;
  z-index: 1;
}

.tier-block {
  margin-bottom: 24px;
}

.tier-header {
  margin-bottom: 28px;
}

.tier-badge {
  display: inline-block;
  background: rgba(var(--purple-rgb), 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 12px;
  border: 1px solid rgba(var(--purple-rgb), 0.15);
}

.dynamic-title {
  background: linear-gradient(to right, var(--purple), var(--gold), var(--purple));
  background-size: 200% auto;
  color: var(--purple);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dynamic-title-shine 4s linear infinite;
  display: block;
}

.dynamic-title-light {
  background: linear-gradient(to right, var(--purple-light), var(--gold-light), var(--white), var(--purple-light));
  background-size: 200% auto;
  color: var(--gold-light);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dynamic-title-shine 4s linear infinite;
  display: block;
}

.dynamic-card-title {
  background: linear-gradient(to right, var(--gray-900), var(--purple), var(--gray-900));
  background-size: 200% auto;
  color: var(--gray-900);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dynamic-title-shine 6s linear infinite;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dynamic-card-title:hover {
  transform: translateX(4px);
}

@keyframes dynamic-title-shine {
  from {
    background-position: 0% center;
  }

  to {
    background-position: 200% center;
  }
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ── Service Card ── */
.service-full-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(var(--purple-rgb), 0.03));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 28px 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--purple-rgb), 0.12);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-light), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-full-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--purple-rgb), 0.2);
  box-shadow: 0 12px 40px rgba(var(--purple-rgb), 0.12);
  background: rgba(255, 255, 255, 0.9);
}

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

/* ── Icon Box (top of card) ── */
.service-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.08), rgba(var(--gold-rgb), 0.08));
  border: 1px solid rgba(var(--purple-rgb), 0.12);
  border-radius: 11px;
  color: var(--purple);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.service-full-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(var(--purple-rgb), 0.25);
}

/* ── Meta ── */
.services-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 14px;
  font-weight: 500;
}

.services-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.services-meta span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Card Typography ── */
.service-full-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
  letter-spacing: -0.02em;
}

.service-full-card p {
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 20px;
  font-size: 14px;
}

.service-features {
  flex-grow: 1;
  margin-bottom: 24px;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.5;
  margin-bottom: 10px;
  transition: transform 0.4s ease-out, color 0.4s ease;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-light);
}

.service-full-card:hover .service-features li {
  transform: translateX(4px);
}

.service-full-card:hover .service-features li:nth-child(1) {
  transition-delay: 0.04s;
}

.service-full-card:hover .service-features li:nth-child(2) {
  transition-delay: 0.08s;
}

.service-full-card:hover .service-features li:nth-child(3) {
  transition-delay: 0.12s;
}

.service-full-card:hover .service-features li:nth-child(4) {
  transition-delay: 0.16s;
}

/* ── Card CTA ── */
.service-full-card .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  background: rgba(var(--purple-rgb), 0.05);
  color: var(--purple);
  transition: all var(--transition);
}

.service-full-card:hover .btn {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  box-shadow: var(--shadow-purple);
}

/* ── Tier Visual (image + mini particle canvas under tier title) ── */
.tier-visual {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 180px;
  position: relative;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
}

.tier-image {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.tier-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.tier-visual:hover .tier-image img {
  transform: scale(1.08);
}

.tier-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent 60%,
      rgba(var(--purple-rgb), 0.25) 100%);
  pointer-events: none;
}

.tier-particle-canvas {
  width: 200px;
  min-width: 200px;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(var(--purple-rgb), 0.06) 0%,
      rgba(var(--gold-rgb), 0.03) 100%);
  display: block;
}

/* ── Responsive ── */
@media (max-width: 768px) {

  .target-services,
  .process-section,
  .value-prop,
  .newsletter {
    padding: 64px 0;
  }

  .services-tier-section {
    padding: 32px 0 48px;
  }

  .tier-block {
    margin-bottom: 16px;
  }

  .service-full-card {
    padding: 24px 20px;
  }

  .tier-visual {
    height: 140px;
  }

  .tier-particle-canvas {
    width: 100px;
    min-width: 100px;
  }

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






/* HERO GALAXY CANVAS */
.hero-galaxy-canvas {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}