/* =====================================================
   Eternal Enterprise Technologies
   Firecrawl-inspired white theme + 3D + rich animations
   All original sections & data preserved
   ===================================================== */

/* --- RESET & VARIABLES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --orange: #e65100;
  --orange-dark: #bf360c;
  --gradient: linear-gradient(135deg, #e65100 0%, #f57c00 50%, #ef6c00 100%);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s var(--ease);
}

html { scroll-behavior: smooth; }

/* --- DARK THEME --- */
[data-theme="dark"] {
  --white: #0f1117;
  --gray-50: #161922;
  --gray-100: #1e2230;
  --gray-200: #2a2f3e;
  --gray-300: #3d4455;
  --gray-400: #6b7280;
  --gray-500: #9ca3af;
  --gray-600: #c9cdd5;
  --gray-700: #e2e5ea;
  --gray-800: #f0f1f3;
  --gray-900: #f9fafb;
}
[data-theme="dark"] body { background: #0f1117; color: #e2e5ea; }
[data-theme="dark"] .nav { background: rgba(15,17,23,0.85); border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .nav.is-scrolled { background: rgba(15,17,23,0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
[data-theme="dark"] .mobile-menu { background: #0f1117; }
[data-theme="dark"] .mobile-menu__nav a:hover { background: #1e2230; }
[data-theme="dark"] .nav__burger { background: #1e2230; border-color: #3d4455; }
[data-theme="dark"] .nav__burger:hover { background: #2a2f3e; }
[data-theme="dark"] .nav__burger span { background: #e2e5ea; }
[data-theme="dark"] .nav__links a:hover { background: rgba(255,255,255,0.05); }
[data-theme="dark"] .grid-pattern {
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
}
[data-theme="dark"] .svc-card,
[data-theme="dark"] .ind-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .feat-card,
[data-theme="dark"] .proc-card,
[data-theme="dark"] .vtimeline__card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .contact-form {
  background: #161922; border-color: #2a2f3e;
}
[data-theme="dark"] .why-grid { background: #161922; border-color: #2a2f3e; }
[data-theme="dark"] .why-card { border-color: #1e2230 !important; }
[data-theme="dark"] .feat-card { border-color: #1e2230 !important; }
[data-theme="dark"] .svc-card:hover,
[data-theme="dark"] .ind-card:hover,
[data-theme="dark"] .why-card:hover,
[data-theme="dark"] .feat-card:hover,
[data-theme="dark"] .vtimeline__card:hover,
[data-theme="dark"] .product-card:hover { border-color: var(--orange); }
[data-theme="dark"] .hero__stats { background: rgba(22,25,34,0.9); border-color: #2a2f3e; }
[data-theme="dark"] .stat:not(:last-child)::after { background: #2a2f3e; }
[data-theme="dark"] .stat:hover { background: rgba(30,34,48,0.8); }
[data-theme="dark"] .stat__icon { background: linear-gradient(135deg, rgba(230, 81, 0, 0.15), rgba(245, 124, 0, 0.2)); }
[data-theme="dark"] .stat b { background: linear-gradient(135deg, #f9fafb 0%, #e2e5ea 100%); -webkit-background-clip: text; background-clip: text; }
[data-theme="dark"] .stat:nth-child(1), [data-theme="dark"] .stat:nth-child(2) { border-bottom-color: #2a2f3e; }
[data-theme="dark"] .trusted { border-color: #2a2f3e; }
[data-theme="dark"] .trusted__label { border-right-color: #2a2f3e; }
[data-theme="dark"] .marquee-item img { filter: grayscale(100%) invert(1); opacity: 0.5; }
[data-theme="dark"] .marquee-item:hover img { filter: grayscale(0%) invert(0); opacity: 1; }
[data-theme="dark"] .btn--primary { background: var(--orange); }
[data-theme="dark"] .btn--primary:hover { background: var(--orange-dark); }
[data-theme="dark"] .btn--ghost { border-color: #2a2f3e; color: #e2e5ea; background: #161922; }
[data-theme="dark"] .btn--outline { border-color: #3d4455; color: #e2e5ea; }
[data-theme="dark"] .footer { border-top-color: #2a2f3e; }
[data-theme="dark"] .footer__cta { background: #161922; border-color: #2a2f3e; }
[data-theme="dark"] .footer__bottom { border-top-color: #2a2f3e; }
[data-theme="dark"] .faq-item { border-bottom-color: #2a2f3e; }
[data-theme="dark"] .section--alt { background: #161922; }
[data-theme="dark"] .vtimeline__line { background: #2a2f3e; }
[data-theme="dark"] .fverse__ring { border-color: #2a2f3e; }
[data-theme="dark"] .fverse__planet span { background: #161922; border-color: #2a2f3e; color: #e2e5ea; }
[data-theme="dark"] .fverse__planet--outer span { background: #1e2230; color: #9ca3af; }
[data-theme="dark"] .tech-chip { background: #161922; border-color: #2a2f3e; color: #c9cdd5; }
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea { background: #1e2230; border-color: #2a2f3e; color: #e2e5ea; }
[data-theme="dark"] .eyebrow-pill { background: rgba(230,81,0,0.1); border-color: rgba(230,81,0,0.3); color: #c9cdd5; }
[data-theme="dark"] .tagline-pill { background: rgba(230,81,0,0.06); border-color: rgba(230,81,0,0.2); color: #9ca3af; }
[data-theme="dark"] .partner-badge { background: #161922; border-color: #2a2f3e; color: #c9cdd5; }
[data-theme="dark"] .nav__brand .logo-light { display: none; }
[data-theme="dark"] .nav__brand .logo-dark { display: block; }
.nav__brand .logo-dark { display: none; }
[data-theme="dark"] .footer__brand .logo-light { display: none; }
[data-theme="dark"] .footer__brand .logo-dark { display: block; }
.footer__brand .logo-dark { display: none; }
[data-theme="dark"] .whatsapp-btn { box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
[data-theme="dark"] .totop { background: #161922; border-color: #2a2f3e; color: #9ca3af; }
[data-theme="dark"] .mouse-glow { background: radial-gradient(circle, rgba(230,81,0,0.04) 0%, transparent 70%); }
[data-theme="dark"] .velocity-text { -webkit-text-stroke: 1px rgba(255,255,255,0.06); color: rgba(255,255,255,0.03); }
[data-theme="dark"] .velocity-text .highlight { -webkit-text-stroke: 1px rgba(230,81,0,0.4); }
[data-theme="dark"] .velocity-text-wrap { border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .floating-shape--sphere { background: radial-gradient(circle at 30% 30%, rgba(230,81,0,0.08), rgba(230,81,0,0.02)); }
[data-theme="dark"] .morph-blob { opacity: 0.04; }
[data-theme="dark"] .noise-overlay { opacity: 0.02; }

/* --- THEME TOGGLE BUTTON --- */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200); background: var(--white);
  color: var(--gray-600); cursor: pointer;
  transition: all 0.3s var(--ease);
}
.theme-toggle:hover { border-color: var(--orange); color: var(--orange); transform: rotate(15deg); }
.theme-icon--moon { display: none; }
[data-theme="dark"] .theme-icon--sun { display: none; }
[data-theme="dark"] .theme-icon--moon { display: block; }
[data-theme="dark"] .theme-toggle { background: #1e2230; border-color: #3d4455; color: #f59e0b; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; overflow: hidden; }

/* --- KEYFRAMES --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slideMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}
@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(4px) rotate(-0.5deg); }
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin3d {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,81,0,0.15); }
  50% { box-shadow: 0 0 0 12px rgba(230,81,0,0); }
}

/* --- ANIMATIONS --- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-back);
  transition-delay: var(--delay, 0s);
}
.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- SCROLL-DRIVEN PARALLAX LAYERS --- */
.parallax-section {
  position: relative;
  overflow: hidden;
}
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}
.parallax-layer--slow { --parallax-speed: 0.3; }
.parallax-layer--medium { --parallax-speed: 0.6; }
.parallax-layer--fast { --parallax-speed: 0.9; }

/* --- 3D FLIP CARDS on hover --- */
.flip-card-3d {
  perspective: 1200px;
  transform-style: preserve-3d;
}
.flip-card-3d .svc-card,
.flip-card-3d .feat-card {
  transition: transform 0.8s var(--ease-back), box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* --- SPLIT TEXT ANIMATION --- */
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px) rotateX(-90deg);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease-back);
  transition-delay: var(--char-delay, 0s);
}
.split-text.is-visible .char {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
.split-text .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

/* --- MORPHING BLOB --- */
@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%; }
  75% { border-radius: 60% 30% 60% 40% / 70% 50% 40% 60%; }
}
.morph-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient);
  opacity: 0.035;
  filter: blur(100px);
  animation: morphBlob 12s ease-in-out infinite;
  pointer-events: none;
  will-change: border-radius;
}
.morph-blob--2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(147,51,234,0.2));
  animation-delay: -4s;
  animation-duration: 15s;
}
.morph-blob--3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(59,130,246,0.15));
  animation-delay: -8s;
  animation-duration: 18s;
}

/* --- SCROLL VELOCITY TEXT --- */
@keyframes scrollVelocityText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.velocity-text-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.velocity-text-wrap::before,
.velocity-text-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.velocity-text-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}
.velocity-text-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}
[data-theme="dark"] .velocity-text-wrap::before {
  background: linear-gradient(90deg, #0f1117 0%, transparent 100%);
}
[data-theme="dark"] .velocity-text-wrap::after {
  background: linear-gradient(270deg, #0f1117 0%, transparent 100%);
}
.velocity-text {
  display: inline-flex;
  gap: 60px;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-100);
  -webkit-text-stroke: 1px var(--gray-300);
  will-change: transform;
  animation: scrollVelocityText 20s linear infinite;
}
.velocity-text span {
  flex-shrink: 0;
  white-space: nowrap;
}
.velocity-text .highlight {
  -webkit-text-stroke: 1px var(--orange);
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="dark"] .velocity-text {
  color: var(--gray-100);
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
}

/* --- STAGGERED GRID SCALE REVEAL --- */
.anim-scale-in {
  opacity: 0;
  transform: scale(0.8) rotate(-2deg);
  transition: opacity 0.6s var(--ease), transform 0.7s var(--ease-back);
  transition-delay: var(--delay, 0s);
}
.anim-scale-in.is-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* --- SLIDE-IN FROM SIDES --- */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-80px) rotate(-3deg);
  transition: opacity 0.7s var(--ease), transform 0.8s var(--ease-back);
  transition-delay: var(--delay, 0s);
}
.anim-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}
.anim-slide-right {
  opacity: 0;
  transform: translateX(80px) rotate(3deg);
  transition: opacity 0.7s var(--ease), transform 0.8s var(--ease-back);
  transition-delay: var(--delay, 0s);
}
.anim-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

/* --- 3D ROTATE-IN --- */
.anim-rotate-in {
  opacity: 0;
  transform: perspective(1000px) rotateY(-15deg) translateZ(-50px);
  transition: opacity 0.8s var(--ease), transform 1s var(--ease-back);
  transition-delay: var(--delay, 0s);
}
.anim-rotate-in.is-visible {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg) translateZ(0);
}

/* --- FLOATING 3D SHAPES (decorative) --- */
@keyframes float3d {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-20px) rotateX(10deg) rotateY(15deg); }
  50% { transform: translateY(-10px) rotateX(-5deg) rotateY(-10deg); }
  75% { transform: translateY(-25px) rotateX(8deg) rotateY(-5deg); }
}
@keyframes float3d2 {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateZ(0deg); }
  33% { transform: translateY(-15px) rotateX(-10deg) rotateZ(5deg); }
  66% { transform: translateY(-30px) rotateX(12deg) rotateZ(-8deg); }
}
.floating-shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.floating-shape--cube {
  width: 60px; height: 60px;
  border: 2px solid rgba(230,81,0,0.15);
  border-radius: 12px;
  animation: float3d 8s ease-in-out infinite;
  transform-style: preserve-3d;
}
.floating-shape--sphere {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(230,81,0,0.12), rgba(230,81,0,0.03));
  animation: float3d2 10s ease-in-out infinite;
}
.floating-shape--ring {
  width: 80px; height: 80px;
  border: 3px solid rgba(59,130,246,0.1);
  border-radius: 50%;
  animation: float3d 12s ease-in-out infinite reverse;
}
.floating-shape--triangle {
  width: 0; height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 43px solid rgba(230,81,0,0.08);
  animation: float3d2 9s ease-in-out infinite;
}
.floating-shape--donut {
  width: 50px; height: 50px;
  border: 6px solid rgba(147,51,234,0.1);
  border-radius: 50%;
  animation: float3d 7s ease-in-out infinite;
  animation-delay: -3s;
}
[data-theme="dark"] .floating-shape--cube { border-color: rgba(230,81,0,0.1); }
[data-theme="dark"] .floating-shape--ring { border-color: rgba(59,130,246,0.08); }
[data-theme="dark"] .floating-shape--triangle { border-bottom-color: rgba(230,81,0,0.06); }
[data-theme="dark"] .floating-shape--donut { border-color: rgba(147,51,234,0.08); }

/* --- SCROLL-TRIGGERED PROGRESS RINGS --- */
.stat-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.stat-ring svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}
.stat-ring circle {
  fill: none;
  stroke-width: 4;
}
.stat-ring .ring-bg {
  stroke: var(--gray-200);
}
.stat-ring .ring-progress {
  stroke: url(#ringGradient);
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.5s var(--ease);
}
.stat-ring.is-visible .ring-progress {
  stroke-dashoffset: var(--progress, 0);
}
.stat-ring__value {
  position: absolute;
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
}

/* --- MAGNETIC HOVER CARD GLOW BORDER --- (disabled) */

/* --- HORIZONTAL SCROLL SECTION --- */
.hscroll-section {
  position: relative;
  overflow: hidden;
}
.hscroll-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.1s linear;
}
.hscroll-card {
  flex-shrink: 0;
  width: 320px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-back);
  transform-style: preserve-3d;
}
.hscroll-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px) scale(1.02);
}

/* --- TYPEWRITER CURSOR --- */
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--orange);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- SMOOTH REVEAL LINE --- (disabled - was covering headings) */

/* --- SCROLL-LINKED OPACITY (for decorative elements) --- */
.scroll-fade {
  opacity: var(--scroll-opacity, 1);
  transform: translateY(var(--scroll-y, 0px));
  will-change: opacity, transform;
}

/* --- GLITCH TEXT EFFECT on hover --- */
.glitch-hover {
  position: relative;
}
.glitch-hover:hover {
  animation: glitchText 0.3s ease-in-out;
}
@keyframes glitchText {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

/* --- NOISE TEXTURE OVERLAY --- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* --- ELASTIC BOUNCE for stats --- */
@keyframes elasticBounce {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.08); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}
.anim-elastic {
  opacity: 0;
  transform: scale(0.3);
  transition: none;
}
.anim-elastic.is-visible {
  animation: elasticBounce 0.8s var(--ease-back) forwards;
  animation-delay: var(--delay, 0s);
}

/* --- MOUSE GLOW (follows cursor) --- */
.mouse-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,81,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s;
}

/* --- PARTICLES --- */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
  pointer-events: none;
}

/* --- GRADIENT TEXT --- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-orange { color: #2d95f0; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  transition: all 0.4s var(--ease-back); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn--primary { background: var(--gray-900); color: var(--white); box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--gray-700); box-shadow: var(--shadow-lg); }
.btn--ghost { color: var(--gray-700); border: 1px solid var(--gray-200); background: var(--white); }
.btn--ghost:hover { border-color: var(--gray-300); background: var(--gray-50); }
.btn--outline { color: var(--gray-700); border: 1px solid var(--gray-300); }
.btn--outline:hover { border-color: var(--orange); background: rgba(230,81,0,0.03); }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: auto; width: 140px; object-fit: contain; transition: transform 0.3s var(--ease); }
.nav__brand:hover img { transform: scale(1.04); }
.nav__links { display: flex; gap: 6px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease); position: relative;
}
.nav__links a:hover { color: var(--gray-900); background: var(--gray-50); }
.nav__links a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px;
  background: var(--gradient); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; gap: 10px; align-items: center; }
.nav__burger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; cursor: pointer;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
}
.nav__burger:hover { background: var(--gray-100); border-color: var(--gray-300); }
.nav__burger span {
  display: block; height: 2px; width: 18px; background: var(--gray-700);
  border-radius: 2px; transition: all 0.35s var(--ease);
}
.nav__burger span + span { margin-top: 5px; }
.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile-right { display: none; align-items: center; gap: 10px; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  display: flex; flex-direction: column;
  padding: 88px 24px 32px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), visibility 0.35s, transform 0.35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__nav {
  display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.mobile-menu__nav a {
  font-size: 17px; font-weight: 500; color: var(--gray-700);
  padding: 16px 18px; border-radius: 12px;
  transition: all 0.25s var(--ease);
  position: relative;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a:active { background: var(--gray-50); color: var(--gray-900); }
.mobile-menu__nav a::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0; border-radius: 3px; background: var(--gradient);
  transition: height 0.3s var(--ease);
}
.mobile-menu__nav a:hover::before { height: 24px; }
.mobile-menu__cta {
  margin-top: auto; width: 100%; justify-content: center;
  padding: 16px 24px; font-size: 15px; border-radius: 14px;
}

/* ===== HERO ===== */
.hero {
  position: relative; padding: 160px 0 100px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 30s linear infinite;
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(100px);
  animation: pulse 8s ease-in-out infinite; will-change: transform;
}
.hero__glow--1 { width: 600px; height: 600px; background: rgba(230,81,0,0.12); top: -200px; right: -150px; }
.hero__glow--2 { width: 500px; height: 500px; background: rgba(59,130,246,0.08); bottom: -150px; left: -150px; animation-delay: 4s; }

.hero__content { position: relative; text-align: center; max-width: 860px; margin: 0 auto; z-index: 1; }
.hero__eyebrow { margin-bottom: 16px; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 24px; border-radius: 100px;
  background: rgba(230,81,0,0.06); border: 1px solid rgba(230,81,0,0.2);
  font-size: 12px; font-weight: 600; color: var(--gray-700);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  animation: breathe 2s ease-in-out infinite;
}
.hero__partner { margin-bottom: 16px; }
.partner-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 20px 8px 8px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--gray-200);
  font-size: 15px; color: var(--gray-700); box-shadow: var(--shadow-sm);
}
.partner-badge .partner-svg { width: 90px; height: auto; flex-shrink: 0; border-radius: 5px; }
.partner-badge img { height: 32px; width: auto; border-radius: 5px; }
.partner-badge b { color: var(--gray-900); font-weight: 700; }
.hero__tagline { margin-bottom: 32px; }
.tagline-pill {
  display: inline-flex; padding: 10px 24px; border-radius: 100px;
  background: rgba(230,81,0,0.04); border: 1px solid rgba(230,81,0,0.15);
  font-size: 13px; font-weight: 500; color: var(--gray-600);
  letter-spacing: 0.03em; text-transform: uppercase;
}
.hero__badge { margin-bottom: 28px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--gray-700);
  box-shadow: var(--shadow-sm); animation: breathe 3s ease-in-out infinite;
}
.badge svg { color: var(--orange); }
.hero__title {
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--gray-900); margin-bottom: 24px;
  word-wrap: break-word; overflow-wrap: break-word;
}
.hero__subtitle {
  font-size: 18px; line-height: 1.7; color: var(--gray-500);
  max-width: 640px; margin: 0 auto 40px;
}
.hero__cta { display: flex; gap: 12px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: 0; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.hero__stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 81, 0, 0.03) 0%, transparent 50%, rgba(230, 81, 0, 0.02) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.stat {
  text-align: center;
  padding: 28px 20px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}
.stat:hover {
  background: var(--gray-50);
}
.stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(230, 81, 0, 0.08), rgba(245, 124, 0, 0.12));
  color: var(--orange);
  margin-bottom: 12px;
}
.stat b {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ===== TRUSTED / MARQUEE ===== */
.trusted {
  padding: 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center;
}
.trusted .container { padding: 0; max-width: 100%; width: 100%; display: flex; align-items: center; }
.trusted__label {
  flex-shrink: 0; padding: 24px 32px; font-size: 14px; color: var(--gray-500);
  border-right: 1px solid var(--gray-200); min-width: 200px; text-align: left; margin: 0;
}
.trusted__label strong { color: var(--orange); }
.marquee-wrap {
  overflow: hidden; flex: 1; max-width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content; padding: 20px 0;
  animation: slideMarquee 45s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; justify-content: center;
  white-space: nowrap;
  transition: opacity 0.3s, transform 0.3s;
}
.marquee-item img {
  height: 32px; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}
.marquee-item:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--gray-50); }
.section--in-view { }
.section-counter { font-size: 12px; font-weight: 500; color: var(--gray-400); letter-spacing: 0.05em; margin-bottom: 20px; }
.section-header { margin-bottom: 56px; }
.section-tag { display: block; font-size: 13px; font-weight: 500; color: var(--gray-400); margin-bottom: 12px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.2;
  letter-spacing: -0.02em; color: var(--gray-900); margin-bottom: 14px;
}
.section-header p { font-size: 16px; color: var(--gray-500); max-width: 520px; line-height: 1.7; }

/* ===== SECTION CUT CLIP EFFECTS ===== */
/* Orbit section: cut from bottom */
#tech {
  clip-path: polygon(0 0%, 100% 0%, 100% 94%, 0 100%);
}

/* Icons section: cut from top */
#media-lab {
  clip-path: polygon(0 6%, 100% 0%, 100% 100%, 0 100%);
  margin-top: -6%;
}

/* ===== PRODUCTS RUNWAY (Frappe Gallery) ===== */
.products-runway {
  overflow: hidden; max-width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  margin-top: 40px;
}
.products-track {
  display: flex; gap: 20px; width: max-content; margin-top: 50px;
  animation: slideMarquee 40s linear infinite;
}
.products-track:hover { animation-play-state: paused; }
.product-card {
  width: 100px; flex-shrink: 0; text-align: center;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 10px; transition: all 0.4s var(--ease-back);
  transform-style: preserve-3d;
}
.product-card:hover {
  border-color: var(--orange); box-shadow: var(--shadow-lg);
  transform: scale(1.05) translateY(-4px);
}
.product-card img {
  width: 56px; height: 56px; object-fit: contain; border-radius: 6px; margin: 0 auto 6px;
}
.product-card figcaption {
  font-size: 10px; font-weight: 600; color: var(--gray-700);
}

/* ===== CORE EXPERTISE STRIP ===== */
.expertise { padding: 80px 0 60px; }
.expertise-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.exp-item {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0;
  position: relative;
  transition: all 0.4s var(--ease);
  cursor: default;
  z-index: 1;
}
.exp-item:hover {
  z-index: 10;
  transform: translateY(-8px);
}
.exp-item__ico {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 20px;
  color: var(--orange);
  box-shadow: 0 8px 32px rgba(230,81,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(230,81,0,0.08);
  transition: all 0.5s var(--ease-back);
  position: relative;
  overflow: hidden;
}
.exp-item__ico::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #bf360c 0%, #e65100 50%, #d84315 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  border-radius: inherit;
}
.exp-item:hover .exp-item__ico {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 40px rgba(191,54,12,0.2), 0 4px 12px rgba(191,54,12,0.1);
  border-color: transparent;
}
.exp-item:hover .exp-item__ico::before { opacity: 1; }
.exp-item:hover .exp-item__ico svg { position: relative; z-index: 1; color: var(--white); stroke: var(--white); }
.exp-item__ico svg { width: 30px; height: 30px; transition: all 0.4s var(--ease); }
.exp-item h4 {
  font-size: 15px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 8px; line-height: 1.3;
  transition: color 0.3s var(--ease);
}
.exp-item:hover h4 { color: var(--orange-dark); }
.exp-item__tags {
  font-size: 13px; color: var(--gray-400); line-height: 1.8;
}
.exp-item__line {
  width: 24px; height: 2px;
  background: var(--gradient);
  margin: 14px auto 0;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-back);
}
.exp-item:hover .exp-item__line { transform: scaleX(1); }

[data-theme="dark"] .exp-item__ico { background: #1e2230; border-color: rgba(230,81,0,0.15); box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(230,81,0,0.05); }
[data-theme="dark"] .exp-item:hover .exp-item__ico { box-shadow: 0 16px 40px rgba(230,81,0,0.2), 0 4px 12px rgba(0,0,0,0.3); }

/* ===== SERVICES — BENTO GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.svc-card {
  position: relative; overflow: hidden;
  padding: 36px 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  transition: all 0.5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
/* First card spans 2 columns for bento effect */
.svc-card:nth-child(1) { grid-column: span 2; }
.svc-card:nth-child(4) { grid-column: span 2; }

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px -15px rgba(230,81,0,0.12), 0 8px 24px -8px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.svc-card__ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(230,81,0,0.06);
  border-radius: 14px;
  color: var(--orange);
  margin-bottom: 20px;
  transition: all 0.5s var(--ease-back);
}
.svc-card:hover .svc-card__ico {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(230,81,0,0.3);
}
.svc-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* Card shine effect */
.card-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(230,81,0,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.svc-card:hover .card-shine { opacity: 1; }

/* ===== INDUSTRIES — FLOWING CHIPS ===== */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ind-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  transition: all 0.4s var(--ease-back);
  cursor: default;
}
.ind-card:hover {
  border-color: var(--orange);
  background: rgba(230,81,0,0.03);
  box-shadow: 0 8px 24px -8px rgba(230,81,0,0.15);
  transform: translateY(-3px) scale(1.03);
}
.ind-card__ico {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(230,81,0,0.06);
  border-radius: 50%;
  color: var(--orange);
  flex-shrink: 0;
  transition: all 0.4s var(--ease-back);
}
.ind-card:hover .ind-card__ico {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-10deg);
}
.ind-card h4 { font-size: 14px; font-weight: 600; color: var(--gray-800); margin: 0; }
.ind-card__sub { display: none; }

/* ===== WHY — EDITORIAL LIST ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
}
.why-card {
  padding: 32px 28px;
  border-bottom: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
  position: relative;
}
.why-card:nth-child(even) { border-right: none; }
.why-card:nth-last-child(-n+2) { border-bottom: none; }

.why-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--gradient);
  border-radius: 0 3px 3px 0;
  transition: height 0.5s var(--ease);
}
.why-card:hover::after { height: 100%; }
.why-card:hover {
  background: rgba(230,81,0,0.015);
}
.why-card__num {
  font-size: 11px; font-weight: 700; margin-bottom: 12px; display: inline-block;
  padding: 4px 10px;
  background: rgba(230,81,0,0.06);
  border-radius: 6px;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.why-card:hover .why-card__num {
  background: var(--orange);
  color: var(--white);
}
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ===== PROCESS GRID ===== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proc-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: all 0.4s var(--ease-back); position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
}
.proc-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--gradient); transition: height 0.6s var(--ease); border-radius: 0 2px 2px 0;
}
.proc-card:hover::before { height: 100%; }
.proc-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); }
.proc-card__num {
  font-size: 40px; font-weight: 800; margin-bottom: 16px; display: block;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.3; transition: opacity 0.3s;
}
.proc-card:hover .proc-card__num { opacity: 0.7; }
.proc-card h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.proc-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== PROCESS - VERTICAL TIMELINE (white bg) ===== */
.section-header--center { text-align: center; }
.section-header--center .eyebrow-pill { margin-bottom: 24px; }
.section-header--center h2 { margin-bottom: 60px; }

.vtimeline {
  position: relative; max-width: 700px; margin: 0 auto; padding-left: 60px;
}
.vtimeline__line {
  position: absolute; left: 28px; top: 0; bottom: 0; width: 2px;
  background: var(--gray-200);
}
.vtimeline__progress {
  width: 100%; background: var(--gradient);
  height: 0; transition: height 1.5s var(--ease);
}
.vtimeline__item {
  position: relative; margin-bottom: 40px;
}
.vtimeline__dot {
  position: absolute; left: -46px; top: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(230,81,0,0.1), 0 4px 12px rgba(230,81,0,0.2);
  z-index: 2;
}
.vtimeline__dot span {
  font-size: 13px; font-weight: 700; color: var(--white);
}
.vtimeline__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px 32px;
  transition: all 0.4s var(--ease);
}
.vtimeline__card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateX(6px);
}
.vtimeline__card h4 {
  font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px;
}
.vtimeline__card p {
  font-size: 14px; color: var(--gray-500); line-height: 1.7;
}

/* ===== FEATURES — HORIZONTAL ROWS ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
  position: relative;
}
.feat-card:nth-child(odd) { border-right: 1px solid var(--gray-100); }
.feat-card:nth-last-child(-n+2) { border-bottom: none; }

.feat-card:hover {
  background: rgba(230,81,0,0.02);
}
.feat-card__ico {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(230,81,0,0.06);
  border-radius: 12px;
  color: var(--orange);
  flex-shrink: 0;
  transition: all 0.4s var(--ease-back);
}
.feat-card:hover .feat-card__ico {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}
.feat-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.feat-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ===== TECH MARQUEE ===== */
.tech-marquee-wrap {
  overflow: hidden; margin-top: 40px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.tech-marquee {
  display: flex; gap: 12px; width: max-content;
  animation: slideMarquee 30s linear infinite;
}
.tech-marquee:hover { animation-play-state: paused; }
.tech-chip {
  padding: 10px 20px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--gray-600);
  white-space: nowrap; transition: all 0.3s var(--ease);
}
.tech-chip:hover {
  border-color: var(--orange); color: var(--orange);
  box-shadow: 0 2px 10px rgba(230,81,0,0.15); transform: scale(1.08);
}

/* ===== FRAPPEVERSE ORBIT ===== */
@keyframes orbitSpin { 0% { transform: rotate(var(--start)) translateX(var(--orbit)) rotate(calc(-1 * var(--start))); } 100% { transform: rotate(calc(var(--start) + 360deg)) translateX(var(--orbit)) rotate(calc(-1 * (var(--start) + 360deg))); } }

.fverse {
  position: relative; width: 100%; height: 500px; margin: 120px auto 60px; margin-bottom: 100px;
  display: flex; align-items: center; justify-content: center;
}
.fverse__center {
  text-align: center; z-index: 2; position: relative;
}
.fverse__title {
  display: block; font-size: 20px; font-weight: 800; color: var(--gray-900);
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fverse__sub { display: block; font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.fverse__ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  border: 1px dashed var(--gray-200); transform: translate(-50%, -50%);
}
.fverse__ring--1 { width: 400px; height: 400px; }
.fverse__ring--2 { width: 640px; height: 640px; }
.fverse__planet {
  position: absolute; top: 50%; left: 50%;
  margin-top: -16px; margin-left: -16px;
  animation: orbitSpin var(--speed) linear infinite;
}
.fverse__planet span {
  display: inline-block; padding: 6px 14px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--gray-700);
  white-space: nowrap; box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.fverse__planet:hover span { border-color: var(--orange); color: var(--orange); box-shadow: var(--shadow); transform: scale(1.1); }
.fverse__planet--outer span { background: var(--gray-50); color: var(--gray-500); font-size: 11px; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item__q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 0; font-size: 15px; font-weight: 600;
  color: var(--gray-900); text-align: left; cursor: pointer; transition: all var(--transition);
}
.faq-item__q:hover { color: var(--orange); padding-left: 8px; }
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gray-400); border-radius: 1px; transition: all 0.4s var(--ease-back);
}
.faq-icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-icon::after { width: 2px; height: 12px; top: 4px; left: 9px; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-icon::before { background: var(--orange); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item__a p { padding-bottom: 22px; font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 14px; }
.contact-info > p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list strong { font-size: 12px; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-list span, .contact-list a { font-size: 15px; color: var(--gray-800); }
.contact-list a:hover { color: var(--orange); }

.contact-form {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); font-size: 14px; font-family: var(--font);
  color: var(--gray-800); background: var(--gray-50); transition: all 0.3s var(--ease); outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(230,81,0,0.08);
  background: var(--white); transform: scale(1.01);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray-400); }
.contact-form select { color: var(--gray-400); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-legal { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 4px; }

/* ===== FOOTER ===== */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--gray-100); }
.footer__cta {
  text-align: center; padding: 60px 40px; margin-bottom: 60px;
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.footer__cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(230,81,0,0.05) 0%, transparent 60%);
}
.footer__cta h3 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--gray-900); margin-bottom: 24px; position: relative; }
.footer__cta .btn { position: relative; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand img { height: auto; width: 140px; object-fit: contain; margin-bottom: 14px; }
.footer__brand p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.footer__grid > div:not(.footer__brand) h4 {
  font-size: 12px; font-weight: 600; color: var(--gray-900);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px;
}
.footer__grid > div:not(.footer__brand) a {
  display: block; font-size: 14px; color: var(--gray-500); padding: 3px 0; transition: all 0.3s var(--ease);
}
.footer__grid > div:not(.footer__brand) a:hover { color: var(--orange); padding-left: 6px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--gray-100);
}
.footer__bottom > span { font-size: 13px; color: var(--gray-400); }
.footer__socials { display: flex; gap: 16px; }
.footer__socials a { color: var(--gray-400); transition: all 0.3s var(--ease); }
.footer__socials a:hover { color: var(--orange); transform: scale(1.2) translateY(-2px); }

/* ===== WHATSAPP / TOTOP ===== */
.whatsapp-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%; background: transparent;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3); transition: all 0.3s var(--ease-back);
  animation: float 4s ease-in-out infinite;
}
.whatsapp-btn svg { width: 60px; height: 60px; }
.whatsapp-btn:hover { transform: scale(1.15); box-shadow: 0 8px 25px rgba(37,211,102,0.5); }

.totop {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(20px);
  transition: all 0.4s var(--ease-back); color: var(--gray-600);
}
.totop.is-visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.totop:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card:nth-child(1), .svc-card:nth-child(4) { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card:nth-child(odd) { border-right: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

.nav__mobile-right { display: none; align-items: center; gap: 10px; }

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none !important; }
  .nav__mobile-right { display: flex !important; align-items: center; gap: 10px; }
  .nav__mobile-right .nav__burger { display: flex !important; }
  .nav__inner { height: 60px; padding: 0 16px; }
  .nav__brand img { width: 110px; }
  .mobile-menu { padding-top: 76px; padding-left: 20px; padding-right: 20px; }
  .mobile-menu__nav a { font-size: 16px; padding: 14px 16px; }
  .hero { padding: 100px 0 50px; }
  .hero__content { text-align: center; max-width: 100%; padding: 0 16px; }
  .hero__title { font-size: 26px; line-height: 1.2; }
  .hero__subtitle { font-size: 14px; margin-bottom: 24px; }
  .hero__eyebrow .eyebrow-pill { font-size: 9px; padding: 6px 12px; letter-spacing: 0.05em; }
  .hero__partner .partner-badge { font-size: 12px; padding: 6px 12px 6px 6px; gap: 8px; }
  .hero__partner .partner-badge img { height: 22px; }
  .hero__tagline .tagline-pill { font-size: 9px; padding: 6px 12px; }
  .hero__cta { flex-direction: column; align-items: center; gap: 10px; }
  .hero__cta .btn { justify-content: center; font-size: 13px; padding: 12px 20px; width: 100%; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .stat { padding: 20px 16px; }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(1)::after, .stat:nth-child(3)::after { height: 60%; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--gray-200); }
  .stat b { font-size: 28px; }
  .stat span { font-size: 11px; }
  .stat__icon { width: 34px; height: 34px; margin-bottom: 8px; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 22px; }
  .section-header p { font-size: 14px; }
  .section-counter { font-size: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 24px 20px; }
  .svc-card:nth-child(1), .svc-card:nth-child(4) { grid-column: span 1; }
  .svc-card h3 { font-size: 15px; }
  .svc-card p { font-size: 13px; }
  .expertise-grid { gap: 20px; }
  .exp-item { min-width: 140px; max-width: 100%; }
  .exp-item__ico { width: 56px; height: 56px; border-radius: 14px; }
  .exp-item__ico svg { width: 24px; height: 24px; }
  .exp-item h4 { font-size: 13px; }
  .exp-item__tags { font-size: 11px; }
  .industries-grid { gap: 8px; }
  .ind-card { padding: 10px 16px 10px 12px; }
  .ind-card__ico { width: 28px; height: 28px; }
  .ind-card h4 { font-size: 12px; }
  .why-grid { grid-template-columns: 1fr; border-radius: 16px; }
  .why-card { padding: 20px; border-right: none !important; }
  .why-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--gray-100); }
  .why-card:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr; }
  .vtimeline { padding-left: 46px; }
  .vtimeline__dot { left: -34px; width: 28px; height: 28px; }
  .vtimeline__dot span { font-size: 11px; }
  .vtimeline__line { left: 20px; }
  .vtimeline__card { padding: 18px 20px; }
  .vtimeline__card h4 { font-size: 15px; }
  .vtimeline__card p { font-size: 13px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card { padding: 16px 20px; }
  .feat-card:nth-child(odd) { border-right: none; }
  .feat-card h4 { font-size: 14px; }
  .feat-card p { font-size: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 20px; }
  .contact-info h2 { font-size: 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__cta { padding: 32px 20px; }
  .footer__cta h3 { font-size: 20px; }
  .mouse-glow { display: none; }
  .floating-shape { display: none; }
  .morph-blob { display: none; }
  .noise-overlay { display: none; }
  .velocity-text-wrap { padding: 24px 0; }
  .velocity-text { font-size: 36px; gap: 30px; }
  .fverse { height: 280px; }
  .fverse__ring--1 { width: 200px; height: 200px; }
  .fverse__ring--2 { width: 340px; height: 340px; }
  .fverse__planet { --orbit: 100px !important; }
  .fverse__planet span { font-size: 9px; padding: 4px 8px; }
  .fverse__planet--outer { --orbit: 170px !important; }
  .fverse__planet--outer span { font-size: 8px; padding: 3px 6px; }
  .fverse__title { font-size: 16px; }
  .fverse__sub { font-size: 10px; }
  .trusted { flex-direction: column; }
  .trusted .container { flex-direction: column; }
  .trusted__label { border-right: none; border-bottom: 1px solid var(--gray-200); min-width: auto; width: 100%; text-align: center; padding: 14px; font-size: 12px; }
  .marquee-wrap { width: 100%; }
  .marquee-item img { height: 22px; }
  .products-runway { margin-top: 20px; }
  .product-card { width: 76px; padding: 8px; }
  .product-card img { width: 36px; height: 36px; }
  .product-card figcaption { font-size: 8px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 22px; }
  .hero__stats { grid-template-columns: 1fr 1fr; padding: 0; }
  .stat b { font-size: 24px; }
  .stat__icon { width: 32px; height: 32px; }
  .stat__icon svg { width: 16px; height: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .fverse { height: 240px; }
  .fverse__ring--1 { width: 160px; height: 160px; }
  .fverse__ring--2 { width: 280px; height: 280px; }
  .fverse__planet { --orbit: 80px !important; }
  .fverse__planet--outer { --orbit: 140px !important; }
}

/* --- SEO CONTENT SECTION (visually hidden, accessible to search engines) --- */
.seo-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.seo-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}
.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: 24px;
  margin-bottom: 10px;
}
.seo-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.seo-content ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px 24px;
  margin: 12px 0;
}
.seo-content ul li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.seo-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.seo-content strong {
  color: var(--gray-800);
}