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

:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.2);
  --accent: #e5e5e5;
  --accent-warm: #f97316;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2 {
  font-family: 'Anton', sans-serif;
  color: var(--text);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 400;
  text-transform: uppercase;
}
h3, h4 {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 700;
}

a { color: var(--text); text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 88%;
  max-width: 1800px;
  margin: 0 auto;
}

[data-speed] { will-change: transform; }

/* ========== CURSOR ========== */
.cursor-active, .cursor-active * { cursor: none !important; }
.cursor {
  width: 16px; height: 16px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.4s var(--ease), height 0.4s var(--ease), background 0.4s var(--ease);
}
.cursor.hovering {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.5);
}
@media (pointer: coarse) { .cursor { display: none; } }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 0;
  mix-blend-mode: difference;
  transition: padding 0.5s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.scrolled { padding: 16px 0; background: rgba(10,10,12,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); mix-blend-mode: normal; }
.nav.nav-hidden { transform: translateY(-100%); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 28px; }
.logo-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 2vw, 1.9rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.logo-ugo {
  color: var(--text);
}
.logo-media {
  background: linear-gradient(135deg, #ffffff, #f97316, #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links .btn-nav {
  opacity: 1;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 24px;
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s;
}
.nav-links .btn-nav:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.nav-links .btn-nav::after { display: none; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span { display: block; width: 24px; height: 1px; background: var(--text); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 999;
  flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 6%;
}
.mobile-close {
  background: none; border: 1px solid var(--border); color: var(--text);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.mobile-close:hover { border-color: var(--accent-warm); background: rgba(249,115,22,0.08); }
.mobile-tiles {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; padding: 20px 6% 40px;
  flex: 1; align-content: center;
}
.mobile-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 36px 16px;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  text-decoration: none; color: var(--text);
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.mobile-tile::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(249,115,22,0.1), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.mobile-tile:hover, .mobile-tile:active {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.mobile-tile:hover::before, .mobile-tile:active::before { opacity: 1; }
.mobile-tile-icon {
  font-size: 2rem; position: relative; z-index: 1;
}
.mobile-tile-label {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.02em; position: relative; z-index: 1;
  color: var(--text);
}
.mobile-tile--cta {
  border-color: rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.06);
}
.mobile-tile--cta .mobile-tile-label {
  color: var(--accent-warm);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 0 0 clamp(60px, 8vh, 120px);
  position: relative; overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-aurora {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-aurora .blob {
  position: absolute; border-radius: 50%;
  filter: blur(140px); opacity: 0.4;
}
.hero-aurora .blob-1 { width: 50vw; height: 50vw; background: #1a1a2e; top: -15%; right: -10%; }
.hero-aurora .blob-2 { width: 40vw; height: 40vw; background: #f97316; bottom: -10%; left: -5%; opacity: 0.12; }
.hero-aurora .blob-3 { width: 30vw; height: 30vw; background: #ffffff; top: 40%; left: 35%; opacity: 0.04; }

.hero-content { position: relative; z-index: 2; width: 100%; opacity: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; color: var(--text-dim);
  margin-bottom: clamp(32px, 4vh, 64px);
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400;
}
.hero-badge .dot {
  width: 6px; height: 6px; background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 12px #22c55e;
}

.hero h1 {
  font-size: clamp(3rem, 8.5vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: clamp(32px, 4vh, 48px);
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #ffffff, #f97316, #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: clamp(32px, 4vh, 48px);
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute; bottom: 48px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--text-dim); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-indicator .scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* Page Hero */
.page-hero {
  padding: clamp(160px, 20vh, 240px) 0 clamp(80px, 10vh, 140px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 70%);
  filter: blur(80px);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 70%);
  filter: blur(80px);
}
.page-hero .section-label { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 70%;
  position: relative; z-index: 1;
  margin-bottom: 24px;
}
.page-hero p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-dim); max-width: 520px;
  line-height: 1.8; font-weight: 300; position: relative; z-index: 1;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.5s var(--ease);
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { color: var(--bg); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(255,255,255,0.1); }
.btn-outline {
  background: transparent; color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-outline:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
.btn-glow {
  background: #f97316;
  color: #000 !important;
  position: relative;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 30px rgba(249,115,22,0.3), 0 0 60px rgba(249,115,22,0.1);
}
.btn-glow::after {
  content: ''; position: absolute; inset: -4px; border-radius: 100px;
  background: #f97316;
  filter: blur(20px); opacity: 0.35;
  z-index: -1;
  transition: opacity 0.5s;
}
.btn-glow:hover {
  color: #000 !important; transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(249,115,22,0.5), 0 0 80px rgba(249,115,22,0.2);
}
.btn-glow:hover::after { opacity: 0.6; }
.btn-dark { background: var(--text); color: var(--bg); }
.btn-dark:hover { color: var(--bg); }

/* ========== SECTIONS ========== */
section { padding: clamp(100px, 14vh, 200px) 0; position: relative; }

.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-warm); margin-bottom: 24px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 28px;
  line-height: 1.05;
}
.section-subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-dim); max-width: 500px;
  line-height: 1.8; font-weight: 300;
}
.section-header { margin-bottom: clamp(60px, 8vh, 100px); }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ========== MARQUEE ========== */
.marquee {
  overflow: hidden; padding: 40px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track { display: flex; gap: 60px; animation: marquee 25s linear infinite; }
.marquee-track span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.4rem); font-weight: 500;
  color: var(--text-muted); white-space: nowrap; text-transform: uppercase;
}
.marquee-track .dot-sep { color: var(--accent-warm); font-size: 0.5rem; display: flex; align-items: center; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========== SERVICES BENTO ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  padding: clamp(32px, 3vw, 56px);
  background: var(--bg);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: background 0.5s var(--ease);
}
.service-card:hover { background: rgba(255,255,255,0.02); }
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.08), transparent 60%);
  opacity: 0; transition: opacity 0.5s;
}
.service-card:hover { border-color: var(--border-hover); }
.service-card:hover::before { opacity: 1; }

/* Service cards with video/image backgrounds */
.service-card--video,
.service-card--img {
  position: relative; overflow: hidden;
}
.service-card--video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card--img {
  background-size: cover; background-position: center;
}
.service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.75) 0%, rgba(10,10,12,0.92) 100%);
  z-index: 1;
}
.service-card__content { position: relative; z-index: 2; display: flex; flex-direction: column; flex: 1; }
.service-card h3 {
  font-family: 'Anton', sans-serif; font-size: 1.4rem; margin-bottom: 12px; font-weight: 400; text-transform: uppercase;
  position: relative; z-index: 1; letter-spacing: -0.01em;
}
.service-card p {
  color: var(--text-dim); font-size: 0.88rem;
  line-height: 1.7; margin-bottom: 20px;
  position: relative; z-index: 1; font-weight: 300;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; position: relative; z-index: 1; }
.service-tags span {
  font-size: 0.7rem; padding: 4px 12px;
  border-radius: 100px; background: rgba(255,255,255,0.03);
  color: var(--text-dim); border: 1px solid var(--border);
  letter-spacing: 0.02em;
}

/* ========== APPROACH ========== */
.approach { border-top: 1px solid var(--border); }
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.approach-card {
  padding: clamp(40px, 4vw, 64px);
  border-right: 1px solid var(--border);
}
.approach-card:last-child { border-right: none; }
.approach-number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 5vw, 6rem); font-weight: 600;
  color: rgba(255,255,255,0.08);
  line-height: 1; margin-bottom: 32px;
}
.approach-card h3 { font-size: 1.15rem; margin-bottom: 16px; font-weight: 600; }
.approach-card p { color: var(--text-dim); font-size: 0.88rem; font-weight: 300; line-height: 1.7; }

/* ========== BIG TEXT SECTION ========== */
.big-text {
  padding: clamp(120px, 16vh, 240px) 0;
  text-align: center;
}
.big-text h2 {
  font-size: clamp(2.5rem, 7vw, 7rem);
  letter-spacing: -0.05em;
  line-height: 1.0;
  max-width: 1100px;
  margin: 0 auto;
}
.big-text h2 em {
  font-style: italic;
  color: var(--text-dim);
}
.big-text-sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-dim);
  margin: 32px auto 40px;
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
}
.big-text .btn { margin-top: 0; }

/* ========== WORK / CASE STUDIES ========== */
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.work-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  display: flex; align-items: flex-end;
  transition: transform 0.6s var(--ease);
  cursor: pointer; text-decoration: none;
  border: 1px solid var(--border);
  background: var(--bg);
}
.work-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 80px rgba(124, 58, 237, 0.12);
}
.work-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 1s var(--ease), filter 0.8s var(--ease);
  filter: brightness(0.45) saturate(0.7);
}
.work-card:hover .work-card-bg {
  transform: scale(1.06);
  filter: brightness(0.3) saturate(0.8);
}
.work-card-bg .work-letter { display: none; }
.work-card-content {
  position: relative; z-index: 1; padding: 32px; width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.work-card-content h3 { font-size: 1.3rem; margin-bottom: 4px; font-weight: 600; }
.work-card-content span {
  color: var(--text-dim); font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ========== FEATURE GRID ========== */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px); align-items: center;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }
.feature-content .section-subtitle { margin-bottom: 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.88rem; color: var(--text-dim); font-weight: 300;
}
.feature-list li .check { color: var(--accent-warm); font-size: 1rem; margin-top: 3px; }
.feature-visual {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  border: 1px solid var(--border);
  transition: border-color 0.5s, box-shadow 0.5s;
}
.feature-visual:hover {
  border-color: var(--border-hover);
  box-shadow: 0 16px 60px rgba(249,115,22,0.1);
}
.feature-visual-graphic {
  width: 100%; height: 100%;
  background: #111; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}

/* ========== CONSULTING ========== */
.consulting-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px); align-items: center;
}
.consulting-content .section-subtitle { margin-bottom: 36px; }
.consulting-steps { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.consulting-steps li { display: flex; gap: 16px; align-items: flex-start; }
.step-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.step-text h4 { font-size: 1rem; margin-bottom: 4px; font-weight: 600; }
.step-text p { color: var(--text-dim); font-size: 0.85rem; font-weight: 300; }

.consulting-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card {
  padding: 36px 24px; border-radius: var(--radius);
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  text-align: center; transition: border-color 0.5s var(--ease);
}
.stat-card:hover { border-color: var(--border-hover); box-shadow: 0 0 40px rgba(249,115,22,0.08); }
.stat-card:nth-child(even) { transform: translateY(20px); }
.stat-card .stat-number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem); font-weight: 600;
  color: var(--accent-warm);
  line-height: 1; margin-bottom: 8px;
}
.stat-card p { color: var(--text-dim); font-size: 0.78rem; }

/* ========== TESTIMONIALS ========== */
.testimonials { border-top: 1px solid var(--border); }
.testimonials .section-label { color: var(--accent-warm); }
.testimonial-track {
  display: flex; gap: 16px; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.testimonial-scroll { display: flex; gap: 16px; animation: scroll 50s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.testimonial-scroll:hover { animation-play-state: paused; }
.testimonial-card {
  min-width: 380px; max-width: 380px; padding: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  flex-shrink: 0;
}
.testimonial-stars { color: #fbbf24; font-size: 0.8rem; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-card blockquote {
  font-size: 0.88rem; line-height: 1.7; color: var(--text-dim);
  margin-bottom: 24px; font-style: normal; font-weight: 300;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.7rem; color: white;
}
.testimonial-author span { font-weight: 500; font-size: 0.82rem; }

/* ========== CONTACT ========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 100px); }
.contact-info-cards { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.contact-info-card {
  display: flex; align-items: center; gap: 16px; padding: 20px;
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); transition: border-color 0.3s;
}
.contact-info-card:hover { border-color: rgba(255,255,255,0.15); }
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: var(--radius-sm);
  background: rgba(249,115,22,0.06); border: 1px solid rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-card a { color: var(--text-dim); font-weight: 400; font-size: 0.88rem; transition: color 0.3s; }
.contact-info-card a:hover { color: var(--text); }
.contact-info-card small {
  display: block; color: var(--text-muted); font-size: 0.68rem;
  margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
}
.contact-form {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(32px, 3vw, 48px);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 500;
  color: var(--text-dim); margin-bottom: 8px; letter-spacing: 0.04em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.88rem; font-family: inherit;
  background: rgba(255,255,255,0.02); color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s; outline: 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(--accent-warm);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; background: var(--text); color: var(--bg);
  padding: 16px 36px; border: none; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all 0.5s var(--ease);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(255,255,255,0.08); }

/* ========== CTA ========== */
.cta-banner {
  padding: clamp(100px, 14vh, 200px) 0;
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08), rgba(255, 255, 255, 0.03) 40%, transparent 70%);
  filter: blur(80px);
}
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.cta-banner p {
  color: var(--text-dim); font-size: 1rem;
  margin-bottom: 40px; max-width: 440px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1; font-weight: 300;
}
.cta-banner .btn { position: relative; z-index: 1; }

/* ========== FOOTER ========== */
.footer { border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-brand img { height: 28px; margin-bottom: 20px; opacity: 0.8; }
.footer-brand .logo-text {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.3rem;
  opacity: 0.8;
}
.footer-brand p { font-size: 0.82rem; color: var(--text-dim); max-width: 260px; line-height: 1.7; font-weight: 300; }
.footer h4 {
  font-size: 0.7rem; font-weight: 500; margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--text);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-dim); font-size: 0.82rem; font-weight: 300; transition: color 0.3s; }
.footer ul a:hover { color: var(--text); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: border-color 0.3s;
}
.footer-social a:hover { border-color: var(--accent-warm); background: rgba(249,115,22,0.08); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 32px;
  display: flex; justify-content: center; align-items: center;
  font-size: 0.72rem; color: var(--text-dim); font-weight: 300;
}
.footer-bottom a { color: var(--text-dim); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--text); }

/* ========== SCROLL ANIMATIONS (fallback) ========== */

/* ========== BG helpers ========== */
.bg-light { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }


/* ========== CONTACT HERO SPLIT ========== */
.contact-hero .container { max-width: 1800px; }
.contact-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: center;
}
.contact-hero-text { position: relative; z-index: 1; }
.contact-hero-map {
  position: relative; z-index: 1;
  opacity: 0.85;
}
.contact-hero-map svg {
  width: 100%;
  height: auto;
}
.map-container {
  position: relative;
  width: 100%;
}
.map-svg {
  width: 100%;
  height: auto;
  opacity: 0.35;
  filter: brightness(1.2);
}
.map-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.map-dot-core {
  display: block;
  width: 12px; height: 12px;
  background: #f97316;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 12px rgba(249,115,22,0.6);
}
.map-dot-ping {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: rgba(249,115,22,0.4);
  border-radius: 50%;
  z-index: 1;
  animation: map-ping 2s ease-out infinite;
}
@keyframes map-ping {
  0% { width: 12px; height: 12px; opacity: 0.6; }
  100% { width: 40px; height: 40px; opacity: 0; }
}
.map-dot-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .contact-hero-split { grid-template-columns: 1fr; }
  .contact-hero-map { margin-top: -20px; }
}


/* ========== RAISED WORK CARD ========== */
.work-card--raised {
  transform: translateY(-40px);
}
.work-card--raised:hover {
  transform: translateY(-48px);
}

/* ========== CLIENT LOGOS ========== */
.client-logos {
  padding: 80px 0 64px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.client-logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 5vw, 80px);
  flex-wrap: wrap;
}
.client-logos-track img {
  height: clamp(36px, 4vw, 56px);
  width: auto;
  object-fit: contain;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity 0.4s var(--ease);
}
.client-logos-track img:hover {
  opacity: 0.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .consulting-layout, .contact-layout, .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { border-right: none; border-bottom: 1px solid var(--border); }
  .approach-card:last-child { border-bottom: none; }
  .work-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 300px; max-width: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: 160px 0 80px; }
  .scroll-indicator { display: none; }
  .stat-card:nth-child(even) { transform: none; }
  .consulting-visual { grid-template-columns: 1fr 1fr; }
  .hero { align-items: center; padding-top: 120px; padding-bottom: 60px; }
}

/* Disable hover glow on cards with backgrounds */
.service-card--video:hover::before,
.service-card--img:hover::before {
  opacity: 0 !important;
}
.service-card--video:hover,
.service-card--img:hover {
  background: transparent;
}

/* ========== MOBILE IMPROVEMENTS ========== */
@media (max-width: 768px) {
  .section-title {
    max-width: 100% !important;
    font-size: clamp(2.6rem, 11vw, 3.5rem);
    text-align: left !important;
  }
  .section-header.center {
    text-align: left;
  }
  .section-header.center .section-subtitle {
    margin: 0;
  }
  .page-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    max-width: 100% !important;
    text-align: left !important;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 15vw, 5.5rem);
  }
}
