/* ============================================
   USA WEB CODERS — NEON LIME / DARK EDITION
   Cloned color system: dark charcoal + lime accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
  /* Dark Charcoal Palette */
  --bg-void: #0c0c0c;
  --bg-deep: #0a0a0a;
  --bg-surface: #131313;
  --bg-elevated: #181818;
  --bg-glass: rgba(19, 19, 19, 0.75);
  --bg-glass-light: rgba(255,255,255,0.03);

  /* Single Accent System — Neon Lime */
  --gold: #CFFF45;
  --gold-light: #DFFF7A;
  --gold-dim: rgba(207, 255, 69, 0.10);
  --gold-glow: rgba(207, 255, 69, 0.22);
  --electric: #8A8F87;
  --electric-dim: rgba(138, 143, 135, 0.10);
  --jade: #CFFF45;
  --jade-dim: rgba(207, 255, 69, 0.10);
  --crimson: #8A8F87;

  /* Text Scale */
  --text-white: #FAFAF7;
  --text-bright: #E4E5E0;
  --text-body: #A4A6A0;
  --text-muted: #6E706B;
  --text-ghost: rgba(164, 166, 160, 0.4);

  /* Borders */
  --border-subtle: rgba(255,255,255,0.07);
  --border-default: rgba(207,255,69,0.18);
  --border-bright: rgba(207,255,69,0.4);
  --border-glass: rgba(255,255,255,0.09);

  /* Typography */
  --font-serif: 'Sora', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Geometry */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.4s var(--ease-out);
  --transition-fast: all 0.2s var(--ease-in-out);

  /* Legacy aliases (older inline styles reference these names) */
  --text-primary: var(--text-white);
  --text-secondary: var(--text-body);
  --font-display: var(--font-serif);
  --neon-blue: var(--gold);
  --neon-green: var(--jade);
  --neon-red: var(--electric);
  --card-bg: var(--bg-elevated);
  --border-color: var(--border-default);
  --bg-card: var(--bg-elevated);
  --border: var(--border-default);
}

.card {
  box-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 12px 32px rgba(0,0,0,0.3);
}

.neon-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 4px;
  margin-bottom: 20px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg-void);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── AMBIENT GLOW LAYERS ── */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: driftOrb 20s ease-in-out infinite alternate;
}

.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(207,255,69,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(148,163,184,0.03) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation-delay: -10s;
}

@keyframes driftOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.1); }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover { color: var(--gold-light); }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }
.section-sm { padding: 72px 0; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.btn-primary {
  background: var(--gold);
  color: #0c0c0c;
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px var(--gold-glow);
  color: #0c0c0c;
}

.btn-outline {
  background: transparent;
  color: var(--text-bright);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--bg-glass);
  border-color: var(--border-bright);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled::before {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border-default);
}

.navbar.scrolled { padding: 16px 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: var(--transition-fast);
}

.logo span {
  color: var(--gold);
  font-style: italic;
}

.logo:hover { color: var(--text-white); opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text-bright);
  transition: var(--transition);
  transform-origin: center;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

/* ── PHOTO HERO (Glumeberg clone) ── */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.72) 38%, rgba(8,8,8,0.35) 65%, rgba(8,8,8,0.15) 100%);
}
.hero-content--photo {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-content--photo h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-white);
  margin-bottom: 24px;
}
.hero-highlight {
  background: var(--gold);
  color: #0c0c0c;
  padding: 4px 16px;
  border-radius: 8px;
  display: inline-block;
}
.hero-content--photo .hero-sub {
  font-size: 16px;
  color: var(--text-bright);
  max-width: 520px;
  margin-bottom: 36px;
}

.clients-strip { padding: 36px 0; border-bottom: 1px solid var(--border-subtle); }
.clients-row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.clients-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; opacity: 0.55; }
.clients-logos span {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .clients-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .clients-logos { gap: 22px; }
}

/* Subtle grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(207,255,69,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,255,69,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Diagonal decorative lines */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  right: 20%;
  animation: scanLine 4s ease-in-out infinite;
}

.hero-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(148,163,184,0.08), transparent);
  right: 60%;
  animation: scanLine 6s ease-in-out infinite reverse;
  animation-delay: 2s;
}

@keyframes scanLine {
  0%, 100% { opacity: 0; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(207,255,69,0.07);
  border: 1px solid var(--border-default);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--jade);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--jade); }
  50% { opacity: 0.6; box-shadow: 0 0 20px var(--jade); }
}

.hero h1 {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 8px;
  color: var(--text-white);
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.7;
  margin: 32px 0 48px;
  letter-spacing: 0.01em;
}

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

/* Marquee strip */
.hero-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  padding: 14px 0;
  position: relative;
  background: rgba(207,255,69,0.02);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item .sep {
  color: var(--gold);
  font-size: 16px;
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.stat-num span {
  color: var(--gold);
  font-style: italic;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── GLASS CARDS ── */
.card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  border-color: var(--border-default);
  background: rgba(15, 22, 40, 0.85);
  transform: translateY(-6px);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px var(--border-default),
    0 0 60px var(--gold-dim);
}

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

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.service-card {
  background: var(--bg-surface);
  border: none;
  border-radius: 0;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  background: var(--bg-elevated);
  transform: none;
  box-shadow: none;
}

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

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--gold-light);
  border: 1px solid var(--border-default);
  transition: var(--transition);
}
.service-icon svg { width: 26px; height: 26px; }
.industries-grid { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card:hover .service-icon {
  background: rgba(207,255,69,0.25);
  border-color: var(--border-bright);
  box-shadow: 0 0 30px var(--gold-dim);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text-white);
  font-family: var(--font-serif);
}

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

.service-card .card-num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.1em;
}

/* ── SECTION HEADING ── */
.section-heading { margin-bottom: 64px; }
.section-heading h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.05;
}
.section-heading p {
  color: var(--text-body);
  font-size: 17px;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}
.section-heading.center { text-align: center; }
.section-heading.center p { margin: 0 auto; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  z-index: 0;
}

.step {
  padding: 0 32px;
  position: relative;
  z-index: 1;
  padding-top: 56px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold-glow);
  position: absolute;
  top: 24px;
  left: 32px;
  animation: pulseDot 3s infinite;
}

.step:first-child .step-dot { left: 0; }

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.step h3 {
  font-size: 19px;
  color: var(--text-white);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.step p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-surface);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border-subtle);
}

.portfolio-card:hover {
  border-color: var(--border-default);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out), filter 0.4s;
  filter: brightness(0.65) saturate(0.7);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.06);
  filter: brightness(0.8) saturate(1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.92) 0%, transparent 60%);
}

.portfolio-info {
  padding: 24px 28px;
  position: relative;
}

.portfolio-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.portfolio-info h3 {
  font-size: 19px;
  color: var(--text-white);
  font-family: var(--font-serif);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(17,20,42,0.04), 0 12px 32px rgba(17,20,42,0.06);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-serif);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border-default);
  background: var(--bg-elevated);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card > p {
  color: var(--text-bright);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
  font-family: var(--font-serif);
}

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

.author-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), rgba(207,255,69,0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #0c0c0c;
  font-family: var(--font-sans);
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--gold-dim);
}

.author-name {
  font-weight: 600;
  color: var(--text-white);
  font-size: 15px;
  font-family: var(--font-sans);
}

.author-title {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(17,20,42,0.04), 0 12px 32px rgba(17,20,42,0.06);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-default), transparent);
  transition: opacity 0.4s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-default);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 60px var(--gold-dim);
}

.pricing-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 1;
}

.pricing-card.featured {
  border-color: var(--border-bright);
  background: linear-gradient(160deg, rgba(207,255,69,0.06) 0%, var(--bg-surface) 60%);
  box-shadow: 0 0 80px var(--gold-dim);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 1;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--border-default);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--text-white);
  margin: 20px 0;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-price sup {
  font-size: 26px;
  vertical-align: top;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 400;
}

.pricing-price .period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.pricing-desc {
  color: var(--text-body);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.7;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: var(--transition-fast);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-bright);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold-light);
}
.contact-icon svg { width: 22px; height: 22px; }

.contact-info-item h4 {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-item p { color: var(--text-bright); font-size: 15px; font-family: var(--font-sans); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 180px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(207,255,69,0.07) 0%, transparent 100%);
  pointer-events: none;
}

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

.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.05;
}

.page-hero p {
  color: var(--text-body);
  font-size: 18px;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-default), transparent);
  margin: 0 32px;
}

/* ── FOOTER ── */
.footer-connect {
  background: var(--gold);
  padding: 64px 0 36px;
  text-align: center;
}
.footer-connect h2 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 84px);
  color: #0c0c0c;
  letter-spacing: -0.01em;
  margin: 0;
}

footer {
  background: var(--gold);
  border-top: 1px solid rgba(12,12,12,0.12);
  padding: 36px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: rgba(12,12,12,0.65);
  font-size: 14px;
  line-height: 1.75;
  margin: 20px 0 28px;
  max-width: 280px;
  font-weight: 400;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0c0c0c;
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }

.footer-col ul a {
  color: rgba(12,12,12,0.65);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col ul a:hover { color: #0c0c0c; }

.footer-bottom {
  border-top: 1px solid rgba(12,12,12,0.15);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(12,12,12,0.6);
}

.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(12,12,12,0.6);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-legal a:hover { color: #0c0c0c; }

footer .logo, footer .logo span { color: #0c0c0c; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.tech-tag {
  background: rgba(12,12,12,0.06);
  border: 1px solid rgba(12,12,12,0.15);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(12,12,12,0.65);
  transition: var(--transition-fast);
  letter-spacing: 0.05em;
}
.tech-tag:hover { border-color: rgba(12,12,12,0.35); color: #0c0c0c; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--border-default);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition-fast);
  font-style: normal;
}

.faq-item.open .faq-toggle {
  background: var(--gold-dim);
  border-color: var(--border-bright);
}

.faq-item.open .faq-toggle::after { content: '−'; }
.faq-toggle::after { content: '+'; }

.faq-answer {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-top: 20px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gold);
  border: none;
  border-radius: var(--radius-xl);
  padding: 72px 72px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner::before { display: none; }

.cta-banner h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: #0c0c0c;
  margin-bottom: 20px;
}

.cta-banner p {
  color: rgba(12,12,12,0.75);
  font-size: 17px;
  margin-bottom: 0;
  font-weight: 400;
  max-width: 560px;
}

.cta-banner .section-label { color: rgba(12,12,12,0.6); }
.cta-banner .section-label::before { background: #0c0c0c; opacity: 0.4; }

.cta-content { flex: 1; }

.cta-spin-badge {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1.5px dashed rgba(12,12,12,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  animation: spinBadge 12s linear infinite;
}

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

.cta-spin-badge .cta-spin-core {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinBadgeReverse 12s linear infinite;
}

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

.cta-spin-core svg { width: 20px; height: 20px; color: var(--gold); }

.cta-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; margin-top: 28px; }
.cta-banner .btn-primary { background: #0c0c0c; color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.cta-banner .btn-outline { border-color: rgba(12,12,12,0.35); color: #0c0c0c; }
.cta-banner .btn-outline:hover { background: rgba(12,12,12,0.08); }

/* ── NEON LINE ── */
.neon-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
  width: 80px;
}

/* ── POLICY PAGES ── */
.policy-hero {
  padding: 180px 0 80px;
  background: radial-gradient(ellipse 60% 40% at 50% -5%, rgba(207,255,69,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.policy-body { padding: 80px 0; max-width: 800px; }

.policy-body h2 {
  font-size: 24px;
  color: var(--text-white);
  margin: 52px 0 18px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-serif);
}

.policy-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.policy-body p { color: var(--text-body); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.policy-body ul { color: var(--text-body); padding-left: 28px; margin-bottom: 16px; }
.policy-body ul li { margin-bottom: 10px; font-size: 15px; line-height: 1.7; }
.policy-body strong { color: var(--text-bright); }

/* ── ABOUT PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border-default);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--gold-dim);
}

.team-avatar {
  width: 84px; height: 84px;
  background: linear-gradient(135deg, var(--gold), rgba(207,255,69,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: #0c0c0c;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px var(--gold-dim);
}

.team-card h3 {
  font-size: 19px;
  color: var(--text-white);
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

.team-card p {
  font-size: 12px;
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .step { padding: 36px 24px; border-left: 1px solid var(--border-default); }
  .step-dot { top: 0; left: -5px; }
}

@media (max-width: 768px) {
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(30px);
    padding: 120px 48px 48px;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 28px;
    font-family: var(--font-serif);
    color: var(--text-white);
    letter-spacing: -0.01em;
  }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }
  .nav-cta { display: none; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 52px 32px; flex-direction: column; text-align: center; }
  .cta-banner .cta-content { text-align: center; }
  .cta-actions { justify-content: center; }
  .cta-banner p { max-width: 100%; }
  .hero h1 { font-size: 44px; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  a, button, .btn { cursor: pointer; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--border-default); }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  filter: blur(4px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  will-change: transform, opacity, filter;
}

.fade-up.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* Staggered children */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Hover micro-interactions */
.card, .service-card, .pricing-card, .testimonial-card, .team-card {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.card:hover, .team-card:hover {
  transform: translateY(-6px);
}
.btn { transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out); }
.btn:active { transform: scale(0.96); }

/* Parallax hero image */
.hero-photo-bg img { transition: transform 0.2s linear; }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--electric));
  z-index: 9999;
  transform-origin: left;
  transition: transform 0.1s linear;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ============================================
   HERO V2 — PREMIUM REDESIGN
   ============================================ */

/* Override hero layout for split design */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  position: relative;
  padding-top: 0;
  overflow: hidden;
}

.hero > .container {
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  z-index: 3;
}

/* Radial spotlight from top */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(207,255,69,0.09) 0%, rgba(207,255,69,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Hero heading — dramatic sizing */
.hero h1 {
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 0;
  color: var(--text-white);
  letter-spacing: -0.04em;
}

.hero-h1-accent {
  -webkit-text-stroke: 1.5px var(--gold);
  color: transparent;
  display: inline-block;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
  line-height: 1.0;
  margin-top: 4px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-body);
  max-width: 500px;
  line-height: 1.75;
  margin: 36px 0 44px;
  letter-spacing: 0.01em;
}

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

/* ── FLOATING VISUAL PANEL ── */
.hero-visual-panel {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  z-index: 4;
  animation: hvpFloat 6s ease-in-out infinite;
}

@keyframes hvpFloat {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-14px); }
}

.hvp-inner {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(207,255,69,0.16);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 40px 100px rgba(17,20,42,0.12),
    0 0 0 1px rgba(17,20,42,0.03),
    0 0 80px rgba(207,255,69,0.06);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hvp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hvp-blob--1 {
  width: 200px; height: 200px;
  background: rgba(207,255,69,0.12);
  top: -60px; right: -60px;
}

.hvp-blob--2 {
  width: 160px; height: 160px;
  background: rgba(148,163,184,0.07);
  bottom: -40px; left: -40px;
}

.hvp-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,20,42,0.06);
  border-radius: 14px;
  padding: 16px 18px;
  position: relative;
  box-shadow: 0 8px 30px rgba(17,20,42,0.10);
}

.hvp-card--1 {
  border-color: rgba(207,255,69,0.18);
}

.hvp-card--2 {
  border-color: rgba(148,163,184,0.12);
}

.hvp-card-dot {
  width: 7px; height: 7px;
  background: var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--jade);
  position: absolute;
  top: 14px; right: 14px;
  animation: pulseDot 2s infinite;
}

.hvp-card-dot--blue {
  background: var(--electric);
  box-shadow: 0 0 10px var(--electric);
}

.hvp-card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 6px;
}

.hvp-card--2 .hvp-card-label {
  color: var(--electric);
}

.hvp-card-title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-white);
  margin-bottom: 12px;
  font-weight: 600;
}

.hvp-card-bar {
  height: 4px;
  background: rgba(17,20,42,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.hvp-card-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  position: relative;
  animation: barGlow 2.5s ease-in-out infinite alternate;
}

.hvp-card--2 .hvp-card-bar span {
  background: linear-gradient(90deg, #94A3B8, #CBD5E1);
}

@keyframes barGlow {
  from { box-shadow: none; }
  to { box-shadow: 0 0 12px rgba(207,255,69,0.6); }
}

.hvp-card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hvp-card-meta em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.hvp-card--2 .hvp-card-meta em {
  color: var(--electric);
}

.hvp-stat-row {
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
}

.hvp-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hvp-stat span {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-white);
  font-weight: 700;
  line-height: 1;
}

/* ── MARQUEE — FULL WIDTH FIXED ── */
.hero-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  padding: 16px 0;
  position: relative;
  z-index: 3;
  background: rgba(207,255,69,0.025);
  /* Edge fade masks */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item .sep {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.5;
}

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

/* ── STATS BAR ── */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  padding: 40px 0 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stats > div:not(.stat-divider) {
  flex: 1;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
  flex: none !important;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-num span {
  color: var(--gold);
  font-style: italic;
  font-size: 0.7em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── RESPONSIVE — hero visual panel ── */
@media (max-width: 1100px) {
  .hero-visual-panel {
    display: none;
  }
  .hero > .container {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 52px; letter-spacing: -0.03em; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stats > div:not(.stat-divider) { flex: 1 1 40%; padding: 16px; }
  .stat-divider { display: none; }
  .hero-stats-bar { padding: 32px 0 48px; }
}

/* ── FOOTER SOCIAL BUTTONS ── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
  background: var(--bg-elevated);
}

.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(207,255,69,0.08);
  transform: translateY(-2px);
}

/* ── HERO PHOTO BG RESIZE ── */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.7);
  transform: scale(1.05);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0.6) 100%);
}

/* ── PROFESSIONAL FONT SYSTEM — DM Sans + Playfair Display ── */
:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

/* ── INDUSTRY ICON SVG (replaces emoji) ── */
.ind-icon-svg {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(207,255,69,0.08);
  border: 1px solid rgba(207,255,69,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.ind-card:hover .ind-icon-svg {
  background: rgba(207,255,69,0.16);
  transform: scale(1.05);
}

/* ── HERO left-align fix ── */
.hero-content--photo {
  text-align: left !important;
}
.hero-content--photo .hero-sub,
.hero-content--photo .hero-actions,
.hero-content--photo .scroll-indicator {
  text-align: left !important;
}

/* ── STATS BAR — professional type ── */
.stat-num {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

/* ── SECTION LABELS — mono for professionalism ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── HEADINGS — Playfair ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
}

/* ── BODY / UI TEXT — DM Sans ── */
body, p, li, a, button, input, textarea, select,
.btn, .nav-links a, .footer-links a,
.stat-label, .result-label, .result-desc,
.why-check p, .faq-a-v2, .clients-eyebrow,
.tech-eyebrow, .tech-pill, .author-title,
.svc-link, .m-item {
  font-family: var(--font-sans);
}

/* ── MONO ELEMENTS ── */
.svc-num, .pstep-dot, .hero-badge,
.uwc-tab__num, .hfc-label {
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════════════════
   CREATIVE TOOLKIT — TOOLS SECTION
═══════════════════════════════════════════════════════════ */
.uwc-tools-section {
  position: relative;
  background: #0c0c0c;
  padding: 90px 0;
  overflow: hidden;
}
.uwc-tools-torus-wrap {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.uwc-tools-container { position: relative; z-index: 1; }
.uwc-tools-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.uwc-tools-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CFFF45;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.uwc-tools-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  color: #FAFAF7;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.uwc-tools-heading span {
  color: #CFFF45;
  font-style: italic;
}
.uwc-tools-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #CFFF45;
  color: #0c0c0c;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
  box-shadow: 0 0 0 0 rgba(207,255,69,0);
}
.uwc-tools-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 8px 40px rgba(207,255,69,0.3);
}

/* Tools grid */
.uwc-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.uwc-tool-card {
  position: relative;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  cursor: default;
  overflow: hidden;
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.uwc-tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(207,255,69,0.05) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .4s ease;
}
.uwc-tool-card:hover {
  border-color: rgba(207,255,69,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(207,255,69,0.07);
}
.uwc-tool-card:hover::before { opacity: 1; }
.uwc-tool-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s ease;
}
.uwc-tool-card:hover .uwc-tool-logo { transform: scale(1.08) rotate(-3deg); }
.uwc-tool-logo.uwc-logo-ps  { background: #001d26; border-radius: 10px; }
.uwc-tool-logo.uwc-logo-ai  { background: #300;    border-radius: 10px; }
.uwc-tool-logo.uwc-logo-next{ background: #111;    border-radius: 10px; }
.uwc-tool-info h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: #FAFAF7;
  margin: 0 0 5px;
}
.uwc-tool-info p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #7a7a7a;
  line-height: 1.5;
  margin: 0;
}
.uwc-tool-glow {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207,255,69,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.uwc-tool-card:hover .uwc-tool-glow { opacity: 1; }

@media (max-width: 1024px) { .uwc-tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  {
  .uwc-tools-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .uwc-tools-header { flex-direction: column; align-items: flex-start; }
  .uwc-tools-torus-wrap { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   HOW WE BUILD — ORBITAL PROCESS SECTION
═══════════════════════════════════════════════════════════ */
.uwc-process-orbital {
  background: #0c0c0c;
  padding: 90px 0;
  overflow: hidden;
}
.uwc-process-header { margin-bottom: 56px; }
.uwc-process-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Orbital diagram */
.uwc-orbital-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uwc-orbital {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}
.uwc-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.uwc-orbit-ring--outer {
  width: 100%; height: 100%;
  animation: uwcSpin 22s linear infinite;
  border-color: rgba(207,255,69,0.12);
  border-style: dashed;
}
.uwc-orbit-ring--inner {
  width: 72%; height: 72%;
  animation: uwcSpin 14s linear infinite reverse;
  border-color: rgba(255,255,255,0.07);
}
@keyframes uwcSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Center image circle */
.uwc-orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52%; height: 52%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(207,255,69,0.2);
  box-shadow: 0 0 60px rgba(207,255,69,0.1), inset 0 0 30px rgba(0,0,0,0.4);
}
.uwc-orbit-center img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Orbiting icons — positioned on the outer ring */
.uwc-orbit-icon {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%; left: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: border-color .3s, box-shadow .3s;
  cursor: default;
}
.uwc-orbit-icon:hover {
  border-color: rgba(207,255,69,0.5);
  box-shadow: 0 0 20px rgba(207,255,69,0.2);
}
/* Place icons at correct angles on outer ring (radius = 50% = 210px from center)
   We use translate(-50%,-50%) to center, then individual offsets */
.uwc-orbit-icon--1 { animation: uwcOrbit1 22s linear infinite; }
.uwc-orbit-icon--2 { animation: uwcOrbit2 22s linear infinite; }
.uwc-orbit-icon--3 { animation: uwcOrbit3 22s linear infinite; }
.uwc-orbit-icon--4 { animation: uwcOrbit4 22s linear infinite; }
.uwc-orbit-icon--5 { animation: uwcOrbit5 22s linear infinite; }
.uwc-orbit-icon--6 { animation: uwcOrbit6 22s linear infinite; }

/* Each icon counter-rotates so it stays upright */
.uwc-orbit-icon--1 svg, .uwc-orbit-icon--2 svg,
.uwc-orbit-icon--3 svg, .uwc-orbit-icon--4 svg,
.uwc-orbit-icon--5 svg, .uwc-orbit-icon--6 svg {
  animation: uwcSpinReverse 22s linear infinite;
}

@keyframes uwcOrbit1 {
  from { transform: translate(-50%,-50%) rotate(0deg)   translateX(210px) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(210px) rotate(-360deg); }
}
@keyframes uwcOrbit2 {
  from { transform: translate(-50%,-50%) rotate(60deg)  translateX(210px) rotate(-60deg); }
  to   { transform: translate(-50%,-50%) rotate(420deg) translateX(210px) rotate(-420deg); }
}
@keyframes uwcOrbit3 {
  from { transform: translate(-50%,-50%) rotate(120deg) translateX(210px) rotate(-120deg); }
  to   { transform: translate(-50%,-50%) rotate(480deg) translateX(210px) rotate(-480deg); }
}
@keyframes uwcOrbit4 {
  from { transform: translate(-50%,-50%) rotate(180deg) translateX(210px) rotate(-180deg); }
  to   { transform: translate(-50%,-50%) rotate(540deg) translateX(210px) rotate(-540deg); }
}
@keyframes uwcOrbit5 {
  from { transform: translate(-50%,-50%) rotate(240deg) translateX(210px) rotate(-240deg); }
  to   { transform: translate(-50%,-50%) rotate(600deg) translateX(210px) rotate(-600deg); }
}
@keyframes uwcOrbit6 {
  from { transform: translate(-50%,-50%) rotate(300deg) translateX(210px) rotate(-300deg); }
  to   { transform: translate(-50%,-50%) rotate(660deg) translateX(210px) rotate(-660deg); }
}
@keyframes uwcSpinReverse { to { transform: rotate(-360deg); } }

/* Spinning contact badge */
.uwc-orbit-contact-badge {
  position: absolute;
  top: -10px; right: -60px;
}
.uwc-badge-link { text-decoration: none; display: block; }
.uwc-badge-ring {
  position: relative;
  width: 120px; height: 120px;
  background: #CFFF45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: uwcSpinBadge 8s linear infinite;
  box-shadow: 0 0 40px rgba(207,255,69,0.4);
}
.uwc-badge-ring svg { position: absolute; top: 0; left: 0; }
.uwc-badge-ring:hover { animation-play-state: paused; }
.uwc-badge-center {
  width: 40px; height: 40px;
  background: #0c0c0c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@keyframes uwcSpinBadge { to { transform: rotate(360deg); } }

/* Process steps — accordion */
.uwc-process-steps { display: flex; flex-direction: column; }
.uwc-pstep {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.uwc-pstep:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.uwc-pstep-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  color: #FAFAF7;
  padding: 22px 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
  transition: color .25s ease;
}
.uwc-pstep-header:hover { color: #CFFF45; }
.uwc-pstep-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: #CFFF45;
  font-weight: 600;
  min-width: 28px;
}
.uwc-pstep-title {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.uwc-pstep-icon {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: transform .3s ease, color .3s ease;
  line-height: 1;
}
.uwc-pstep.is-open .uwc-pstep-icon {
  transform: rotate(45deg);
  color: #CFFF45;
}
.uwc-pstep-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0.16, 1, 0.3, 1), padding .45s ease;
}
.uwc-pstep-body p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #7a7a7a;
  line-height: 1.75;
  padding: 0 8px 22px 44px;
  margin: 0;
}
.uwc-pstep.is-open .uwc-pstep-body { max-height: 200px; }

@media (max-width: 900px) {
  .uwc-process-body { grid-template-columns: 1fr; }
  .uwc-orbital { width: 320px; height: 320px; }
  .uwc-orbit-icon--1 { animation-name: uwcOrbitSm1; }
  .uwc-orbit-icon--2 { animation-name: uwcOrbitSm2; }
  .uwc-orbit-icon--3 { animation-name: uwcOrbitSm3; }
  .uwc-orbit-icon--4 { animation-name: uwcOrbitSm4; }
  .uwc-orbit-icon--5 { animation-name: uwcOrbitSm5; }
  .uwc-orbit-icon--6 { animation-name: uwcOrbitSm6; }
  @keyframes uwcOrbitSm1 {
    from { transform: translate(-50%,-50%) rotate(0deg)   translateX(160px) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg) translateX(160px) rotate(-360deg); }
  }
  @keyframes uwcOrbitSm2 {
    from { transform: translate(-50%,-50%) rotate(60deg)  translateX(160px) rotate(-60deg); }
    to   { transform: translate(-50%,-50%) rotate(420deg) translateX(160px) rotate(-420deg); }
  }
  @keyframes uwcOrbitSm3 {
    from { transform: translate(-50%,-50%) rotate(120deg) translateX(160px) rotate(-120deg); }
    to   { transform: translate(-50%,-50%) rotate(480deg) translateX(160px) rotate(-480deg); }
  }
  @keyframes uwcOrbitSm4 {
    from { transform: translate(-50%,-50%) rotate(180deg) translateX(160px) rotate(-180deg); }
    to   { transform: translate(-50%,-50%) rotate(540deg) translateX(160px) rotate(-540deg); }
  }
  @keyframes uwcOrbitSm5 {
    from { transform: translate(-50%,-50%) rotate(240deg) translateX(160px) rotate(-240deg); }
    to   { transform: translate(-50%,-50%) rotate(600deg) translateX(160px) rotate(-600deg); }
  }
  @keyframes uwcOrbitSm6 {
    from { transform: translate(-50%,-50%) rotate(300deg) translateX(160px) rotate(-300deg); }
    to   { transform: translate(-50%,-50%) rotate(660deg) translateX(160px) rotate(-660deg); }
  }
  .uwc-orbit-contact-badge { top: auto; bottom: -20px; right: -20px; }
}

/* ═══════════════════════════════════════════════════════════
   GLUMEBERG-STYLE FOOTER — LIME GREEN
═══════════════════════════════════════════════════════════ */
/* Hide old footer styles when new wrap is present */
.uwc-footer-wrap .footer-connect,
.uwc-footer-wrap footer { all: unset; }

.uwc-footer-wrap {
  background: #0c0c0c;
  padding: 0 24px 40px;
}
.uwc-footer-connect {
  background: #CFFF45;
  border-radius: 24px;
  padding: 64px 56px 40px;
  overflow: hidden;
  position: relative;
}
.uwc-footer-connect::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  pointer-events: none;
}
.uwc-footer-connect-heading {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 800;
  color: #0c0c0c;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 32px;
  text-transform: uppercase;
}
.uwc-footer-connect-divider {
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin-bottom: 44px;
}
.uwc-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
}

/* Brand col */
.uwc-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}
.uwc-logo-icon {
  width: 44px; height: 44px;
  background: #0c0c0c;
  color: #CFFF45;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 22px;
}
.uwc-logo-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: #0c0c0c;
}
.uwc-logo-name strong { font-weight: 900; }
.uwc-logo-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
}
.uwc-footer-brand p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(0,0,0,0.65);
  margin: 0 0 24px;
  max-width: 260px;
}
.uwc-footer-socials { display: flex; gap: 12px; }
.uwc-footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c0c0c;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.uwc-footer-social:hover { background: #0c0c0c; color: #CFFF45; transform: translateY(-2px); }

/* Footer columns */
.uwc-footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0c0c0c;
  margin: 0 0 22px;
}
.uwc-footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.uwc-footer-col ul li { margin-bottom: 14px; }
.uwc-footer-col ul a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  text-decoration: none;
  transition: color .2s ease;
}
.uwc-footer-col ul a:hover { color: #0c0c0c; }

/* Contact list */
.uwc-footer-contact-list { list-style: none; padding: 0; margin: 0; }
.uwc-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(0,0,0,0.65);
}
.uwc-footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; stroke: rgba(0,0,0,0.6); }
.uwc-footer-address span { line-height: 1.6; }

/* Bottom bar */
.uwc-footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.15);
  margin-top: 44px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.uwc-footer-bottom p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  margin: 0;
}
.uwc-footer-legal { display: flex; gap: 24px; }
.uwc-footer-legal a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  text-decoration: none;
  transition: color .2s ease;
}
.uwc-footer-legal a:hover { color: #0c0c0c; }

@media (max-width: 1024px) {
  .uwc-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .uwc-footer-connect { padding: 48px 36px 36px; }
}
@media (max-width: 640px) {
  .uwc-footer-inner { grid-template-columns: 1fr; }
  .uwc-footer-connect-heading { font-size: clamp(36px, 10vw, 60px); }
  .uwc-footer-connect { padding: 36px 24px 28px; border-radius: 16px; }
  .uwc-footer-wrap { padding: 0 12px 28px; }
  .uwc-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   ULTRA MOBILE RESPONSIVENESS PASS — HOMEPAGE + FOOTER
   (Additive fixes, does not alter desktop behavior)
════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 72px 0; }
  .section-sm { padding: 44px 0; }

  /* Hero */
  .hero-title-animated { font-size: clamp(34px, 11vw, 52px); line-height: 1.04; letter-spacing: -0.02em; }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .scroll-indicator { margin-top: 32px; }
  .geo-triangle, .geo-dot-grid { display: none; }
  .geo-circle { width: 280px; height: 280px; top: -80px; right: -80px; }
  .geo-ring { width: 180px; height: 180px; }
  .hero-particle-canvas { opacity: 0.3; }

  /* Stats bar */
  .hero-stats { flex-wrap: wrap; gap: 20px 0; }
  .hero-stats > .stat-item { flex: 1 1 46%; padding: 0 10px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 26px; }

  /* Clients strip */
  .clients-logo-row { gap: 18px; flex-wrap: wrap; justify-content: flex-start; }
  .client-logo-item { font-size: 13px; }

  /* Services tabs */
  #uwc-services .uwc-svc-heading { font-size: clamp(24px, 7vw, 32px); }
  #uwc-services .uwc-tab { padding: 16px 16px; }
  #uwc-services .uwc-tab__title { font-size: 14px; }
  #uwc-services .uwc-svc-display { min-height: 280px; }
  #uwc-services .uwc-display-card { left: 14px; right: 14px; bottom: 14px; padding: 20px 18px; }

  /* Orbital process — extra small tier */
  .uwc-orbital { width: 240px; height: 240px; }
  .uwc-orbit-icon { width: 34px; height: 34px; }
  .uwc-orbit-icon svg { width: 14px; height: 14px; }
  .uwc-orbit-icon--1 { animation-name: uwcOrbitXs1; }
  .uwc-orbit-icon--2 { animation-name: uwcOrbitXs2; }
  .uwc-orbit-icon--3 { animation-name: uwcOrbitXs3; }
  .uwc-orbit-icon--4 { animation-name: uwcOrbitXs4; }
  .uwc-orbit-icon--5 { animation-name: uwcOrbitXs5; }
  .uwc-orbit-icon--6 { animation-name: uwcOrbitXs6; }
  @keyframes uwcOrbitXs1 { from { transform: translate(-50%,-50%) rotate(0deg)   translateX(115px) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg) translateX(115px) rotate(-360deg); } }
  @keyframes uwcOrbitXs2 { from { transform: translate(-50%,-50%) rotate(60deg)  translateX(115px) rotate(-60deg); } to { transform: translate(-50%,-50%) rotate(420deg) translateX(115px) rotate(-420deg); } }
  @keyframes uwcOrbitXs3 { from { transform: translate(-50%,-50%) rotate(120deg) translateX(115px) rotate(-120deg); } to { transform: translate(-50%,-50%) rotate(480deg) translateX(115px) rotate(-480deg); } }
  @keyframes uwcOrbitXs4 { from { transform: translate(-50%,-50%) rotate(180deg) translateX(115px) rotate(-180deg); } to { transform: translate(-50%,-50%) rotate(540deg) translateX(115px) rotate(-540deg); } }
  @keyframes uwcOrbitXs5 { from { transform: translate(-50%,-50%) rotate(240deg) translateX(115px) rotate(-240deg); } to { transform: translate(-50%,-50%) rotate(600deg) translateX(115px) rotate(-600deg); } }
  @keyframes uwcOrbitXs6 { from { transform: translate(-50%,-50%) rotate(300deg) translateX(115px) rotate(-300deg); } to { transform: translate(-50%,-50%) rotate(660deg) translateX(115px) rotate(-660deg); } }
  .uwc-orbit-contact-badge { bottom: -10px; right: -6px; }
  .uwc-badge-ring { width: 90px; height: 90px; }
  .uwc-badge-center { width: 30px; height: 30px; }
  .uwc-process-header { margin-bottom: 36px; }

  /* Tools grid */
  .uwc-tools-grid { grid-template-columns: 1fr !important; }

  /* Industries */
  .industries-grid-v2 { grid-template-columns: 1fr !important; }

  /* Testimonials */
  .testi-card { padding: 28px 22px; }

  /* FAQ */
  .faq-q-v2 span { font-size: 15px; }

  /* Footer connect block */
  .uwc-footer-connect-heading { font-size: clamp(28px, 12vw, 44px); margin-bottom: 24px; }
  .uwc-footer-connect { padding: 28px 18px 22px; border-radius: 14px; }
  .uwc-footer-wrap { padding: 0 10px 22px; }
  .uwc-footer-brand p { max-width: 100%; font-size: 13px; }
  .uwc-footer-contact-list li { font-size: 13px; }
  .uwc-footer-legal { gap: 16px; flex-wrap: wrap; }
}

@media (max-width: 360px) {
  .hero-title-animated { font-size: 30px; }
  .uwc-orbital { width: 210px; height: 210px; }
  .hero-stats > .stat-item { flex: 1 1 100%; }
}
