/* ============================================================
   ELEVEN11 — DESIGN SYSTEM
   Cinematic Dark Engineering
   ============================================================ */

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

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

/* === CSS VARIABLES === */
:root {
  /* SPACING (8px base) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* RADIUS */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* FONTS */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* EASING */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ACCENT (shared) */
  --accent-primary: #FF8C42;
  --accent-secondary: #8B8B9E;
  --accent-tertiary: #FF6B6B;
  --accent-gradient: linear-gradient(135deg, #FF8C42 0%, #A0A0B0 100%);
  --accent-gradient-warm: linear-gradient(135deg, #FF8C42 0%, #D97B3A 50%, #8B8B9E 100%);
  --text-accent: #FF8C42;

  /* TOGGLE */
  --toggle-bg: #1A1A2E;
  --toggle-knob: #F0F0F5;
}

/* ── DARK THEME (default) ── */
body, body.dark {
  --bg-primary: #050508;
  --bg-secondary: #0A0A12;
  --bg-tertiary: #10101C;
  --bg-glass: rgba(255,255,255,0.03);
  --text-primary: #F0F0F5;
  --text-secondary: #8B8B9E;
  --text-tertiary: #4A4A5E;
  --border-subtle: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --surface-card: rgba(255,255,255,0.02);
  --surface-card-hover: rgba(255,255,255,0.05);
  --accent-glow: 0 0 60px rgba(255,140,66,0.15);
  --nav-scrolled-bg: rgba(5,5,8,0.85);
  --toggle-bg: #1A1A2E;
  --toggle-knob: #F0F0F5;
  --noise-opacity: 0.025;
  --logo-svg-opacity: 0.6;
}

/* ── LIGHT THEME ── */
body.light {
  --bg-primary: #F5F5F0;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #EEEEE8;
  --bg-glass: rgba(0,0,0,0.02);
  --text-primary: #1A1A2E;
  --text-secondary: #5A5A6E;
  --text-tertiary: #8A8A9E;
  --border-subtle: rgba(0,0,0,0.07);
  --border-hover: rgba(0,0,0,0.14);
  --surface-card: rgba(0,0,0,0.02);
  --surface-card-hover: rgba(0,0,0,0.04);
  --accent-glow: 0 0 60px rgba(255,140,66,0.08);
  --nav-scrolled-bg: rgba(245,245,240,0.88);
  --toggle-bg: #E0E0D8;
  --toggle-knob: #1A1A2E;
  --noise-opacity: 0.015;
  --logo-svg-opacity: 0.8;
}

/* === BASE === */
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  transition: background 0.5s, color 0.5s;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--noise-opacity, 0.025);
  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)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* === TYPOGRAPHY === */
.text-hero     { font: 800 clamp(48px, 7vw, 96px)/1.0 var(--font-display); letter-spacing: -0.03em; }
.text-h1       { font: 700 clamp(36px, 4.5vw, 64px)/1.1 var(--font-display); letter-spacing: -0.02em; }
.text-h2       { font: 600 clamp(28px, 3vw, 44px)/1.15 var(--font-display); letter-spacing: -0.015em; }
.text-h3       { font: 600 clamp(20px, 2vw, 28px)/1.3 var(--font-display); }
.text-body-lg  { font: 400 18px/1.7 var(--font-body); }
.text-body     { font: 400 16px/1.7 var(--font-body); }
.text-small    { font: 500 13px/1.5 var(--font-body); letter-spacing: 0.02em; }
.text-label    { font: 600 11px/1 var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; }

h1 { font: 700 clamp(36px, 4.5vw, 64px)/1.1 var(--font-display); letter-spacing: -0.02em; }
h2 { font: 600 clamp(34px, 3.6vw, 53px)/1.15 var(--font-display); letter-spacing: -0.015em; }
h3 { font: 600 clamp(20px, 2vw, 28px)/1.3 var(--font-display); }

.gradient-text {
  color: #FF8C42;
  text-shadow: 0 0 20px rgba(255,140,66,0.4);
}

/* Vazada neon nos headings */
h2 .gradient-text,
.text-h1 .gradient-text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255,140,66,0.5);
  background: none;
  text-shadow: 0 0 30px rgba(255,140,66,0.3);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
}
h2 .gradient-text:hover,
.text-h1 .gradient-text:hover {
  -webkit-text-fill-color: #FF8C42;
  -webkit-text-stroke: 0px;
  text-shadow: 0 0 50px rgba(255,140,66,1);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-5xl) 0;
  position: relative;
}

/* === SECTION HEADER === */
.section-header {
  margin-bottom: var(--space-4xl);
  max-width: 700px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 10px/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FF8C42;
  margin-bottom: var(--space-lg);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,140,66,0.3);
  background: rgba(255,140,66,0.08);
  box-shadow: 0 0 20px rgba(255,140,66,0.12);
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF8C42;
  box-shadow: 0 0 8px #FF8C42, 0 0 20px rgba(255,140,66,0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

/* === SECTION DIVIDERS === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-subtle) 20%, var(--border-hover) 50%, var(--border-subtle) 80%, transparent 100%);
  margin: 0;
  border: none;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: #050508;
  font: 600 15px/1 var(--font-body);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255,140,66,0.4), 0 0 60px rgba(255,140,66,0.2), 0 0 100px rgba(255,100,20,0.1);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font: 500 15px/1 var(--font-body);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-secondary:hover {
  border-color: rgba(255,140,66,0.5);
  color: #FF8C42;
  box-shadow: 0 0 20px rgba(255,140,66,0.15), 0 0 40px rgba(255,140,66,0.05);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--card-accent, var(--accent-primary));
  font: 500 14px/1 var(--font-body);
  padding: 8px 0;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-ghost:hover {
  gap: 10px;
}

.btn-ghost .arrow {
  transition: transform 0.3s var(--ease-spring);
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* === CARDS === */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.5s var(--ease-out-expo);
}

.glass-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-card-hover);
  transform: translateY(-4px);
}

.product-card {
  position: relative;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  border: 1px solid var(--border-subtle);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--accent-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--accent-glow);
}

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

.feature-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.feature-card:hover {
  background: var(--surface-card-hover);
  border-color: rgba(255,140,66,0.2);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255,140,66,0.06);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

/* === TAGS === */
.tag {
  display: inline-flex;
  align-items: center;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255,255,255,0.02);
}

.tag-accent {
  border-color: rgba(var(--card-accent-rgb, 255,140,66), 0.25);
  color: var(--card-accent, var(--accent-primary));
  background: rgba(var(--card-accent-rgb, 255,140,66), 0.08);
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  padding: 12px 0;
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  z-index: 1001;
}

.nav-logo-text {
  font: 400 24px/1 'Russo One', sans-serif;
  letter-spacing: 0.01em;
  color: transparent;
  background: linear-gradient(
    135deg,
    #b0b0b8 0%,
    #e8e8ec 15%,
    #c0c0c8 30%,
    #f0f0f4 45%,
    #a8a8b0 55%,
    #d8d8dc 70%,
    #b8b8c0 85%,
    #e0e0e4 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Brushed steel sweep reflection */
.nav-logo {
  position: relative;
  overflow: hidden;
}
.nav-logo::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0.08) 60%,
    transparent 65%,
    transparent 100%
  );
  animation: steel-sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes steel-sweep {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.nav-logo-icon {
  display: inline-flex;
  align-items: center;
  position: relative;
  top: -3px;
  height: 26px;
}

.nav-logo-icon svg {
  height: 26px;
  width: auto;
  filter: drop-shadow(0 0 1px rgba(255,107,0,0.3)) brightness(1.05) contrast(1.1);
}

/* Eleven brand inline (content text) */
.eleven-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  white-space: nowrap;
}
.eleven-brand-text {
  font-family: 'Russo One', sans-serif;
  font-weight: 400;
  font-size: inherit;
  color: inherit;
}
.eleven-brand-icon {
  display: inline-flex;
  align-items: center;
  position: relative;
  top: -2px;
}
.eleven-brand-icon svg {
  height: 0.85em;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font: 500 14px/1 var(--font-body);
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--text-primary);
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font: 500 14px/1 var(--font-body);
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s;
}

.nav-dropdown-trigger:hover {
  color: var(--text-primary);
}

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out-expo);
  backdrop-filter: blur(20px);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.04);
}

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

.nav-dropdown-menu .dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 140, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.nav-dropdown-menu .dropdown-label {
  font: 500 14px/1.3 var(--font-body);
  color: var(--text-primary);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.nav-dropdown-menu .dropdown-desc {
  font: 400 12px/1.3 var(--font-body);
  color: var(--text-tertiary);
  margin-top: 2px;
}

.nav-cta {
  z-index: 1001;
}

.nav-cta .btn-primary {
  color: #050508 !important;
  -webkit-text-fill-color: #050508 !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font: 600 clamp(28px, 5vw, 40px)/1.2 var(--font-display);
  color: var(--text-secondary);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a:hover {
  color: var(--accent-primary);
}

/* Stagger mobile menu items */
.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.4s; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
}

.hero-bg-text {
  position: absolute;
  font: 800 clamp(200px, 30vw, 500px)/1 var(--font-display);
  color: rgba(255,255,255,0.015);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 10px/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FF8C42;
  margin-bottom: var(--space-2xl);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,140,66,0.3);
  background: rgba(255,140,66,0.08);
  box-shadow: 0 0 20px rgba(255,140,66,0.12);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF8C42;
  box-shadow: 0 0 8px #FF8C42, 0 0 20px rgba(255,140,66,0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font: 800 clamp(44px, 6.5vw, 88px)/1.02 var(--font-display);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

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

.hero-subtitle {
  font: 400 clamp(16px, 1.5vw, 20px)/1.7 var(--font-body);
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: var(--space-2xl);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* === STATS SHOWCASE === */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-5xl);
}

.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  cursor: default;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 140, 66, 0.07),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

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

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s var(--ease-out-expo);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 140, 66, 0.06);
}

.stat-card-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s;
}

.stat-card:hover .stat-card-glow {
  opacity: 1;
}

.stat-big {
  font: 800 clamp(48px, 5vw, 72px)/1 var(--font-display);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
}

.stat-desc {
  font: 500 16px/1.5 var(--font-body);
  color: var(--text-primary);
  letter-spacing: 0.01em;
  opacity: 0.7;
}

.stat-desc span {
  font-weight: 400;
  opacity: 0.7;
  font-size: 14px;
}

/* === ANIMATIONS === */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.98); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes morphGradient {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

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

.hero-stagger > * {
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out-expo) forwards;
}
.hero-stagger > *:nth-child(1) { animation-delay: 0.2s; }
.hero-stagger > *:nth-child(2) { animation-delay: 0.35s; }
.hero-stagger > *:nth-child(3) { animation-delay: 0.5s; }
.hero-stagger > *:nth-child(4) { animation-delay: 0.65s; }
.hero-stagger > *:nth-child(5) { animation-delay: 0.8s; }

/* ============================================================
   SCROLL REVEAL + PARALLAX + SECTION EFFECTS
   ============================================================ */

/* --- Base Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo), filter 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* --- Stagger children (enhanced) --- */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo), filter 0.7s var(--ease-out-expo);
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.06s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.38s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.46s; }

/* --- Parallax layer (set via JS --px offset) --- */
[data-speed] {
  transform: translateY(var(--px, 0));
  will-change: transform;
}

/* ============================================================
   DISTINCT SECTION ANIMATIONS
   ============================================================ */

/* GSAP-animated headings — override cin-clip */
.gsap-heading {
  opacity: 1 !important;
  clip-path: none !important;
  transform: none !important;
  perspective: 1200px;
}

.gsap-heading .word,
.gsap-heading .char {
  display: inline-block;
  will-change: transform, opacity, filter;
}

/* #proposta — Clip reveal (text decodes upward) */
.cin-clip {
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo),
              clip-path 0.9s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}
.cin-clip.visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

/* Feature cards — glitch-scan entrance */
.cin-scan {
  opacity: 0;
  transform: translateY(30px) skewY(2deg);
  filter: blur(6px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo),
              filter 0.6s var(--ease-out-expo);
}
.cin-scan.visible {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
  filter: blur(0);
}

/* #produtos — Slide + perspective rotate */
.cin-perspective {
  opacity: 0;
  transform: perspective(1200px) rotateY(8deg) translateX(-40px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 1s var(--ease-out-expo);
}
.cin-perspective.visible {
  opacity: 1;
  transform: perspective(1200px) rotateY(0deg) translateX(0);
}
.cin-perspective-r {
  opacity: 0;
  transform: perspective(1200px) rotateY(-8deg) translateX(40px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 1s var(--ease-out-expo);
}
.cin-perspective-r.visible {
  opacity: 1;
  transform: perspective(1200px) rotateY(0deg) translateX(0);
}

/* #servicos — Matrix cascade (stagger + scale + blur) */
.cin-matrix > * {
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  filter: blur(8px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo),
              filter 0.5s var(--ease-out-expo);
}
.cin-matrix.visible > *:nth-child(1) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.05s; }
.cin-matrix.visible > *:nth-child(2) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.12s; }
.cin-matrix.visible > *:nth-child(3) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.19s; }
.cin-matrix.visible > *:nth-child(4) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.26s; }
.cin-matrix.visible > *:nth-child(5) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.33s; }
.cin-matrix.visible > *:nth-child(6) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.40s; }

/* #processo — Timeline: line draw + sequential node pop */
.cin-timeline-step {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.8s var(--ease-spring);
}
.cin-timeline-step.visible,
.timeline.visible .cin-timeline-step {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Timeline line draw animation */
.timeline.visible::before {
  animation: lineGrow 1.2s var(--ease-out-expo) forwards;
}
@keyframes lineGrow {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* #depoimentos — Float up + blur with rotation */
.cin-float {
  opacity: 0;
  transform: translateY(50px) rotate(1.5deg);
  filter: blur(4px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo),
              filter 0.7s var(--ease-out-expo);
}
.cin-float.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  filter: blur(0);
}

/* #cta — Zoom burst entrance */
.cin-burst {
  opacity: 0;
  transform: scale(0.8);
  filter: blur(12px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 1s var(--ease-spring),
              filter 0.6s var(--ease-out-expo);
}
.cin-burst.visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Stats bar — count-up slide */
.cin-counter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}
.cin-counter.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section labels — typewriter flash */
.cin-label {
  opacity: 0;
  transform: translateX(-16px);
  filter: blur(4px);
  transition: opacity 0.5s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo),
              filter 0.4s var(--ease-out-expo);
}
.cin-label.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Section titles — mask wipe */
.cin-wipe {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.6s var(--ease-out-expo),
              clip-path 0.9s var(--ease-out-expo);
}
.cin-wipe.visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/* === MARQUEE === */
/* === STACK ORBITAL CAROUSEL === */
@keyframes orbitSpin {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes orbitSpinReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(255,140,66,0.15), 0 0 40px rgba(255,140,66,0.06); }
  50%      { box-shadow: 0 0 24px rgba(255,140,66,0.35), 0 0 60px rgba(255,140,66,0.12); }
}
@keyframes scanLine {
  0%   { top: -2px; opacity: 1; }
  100% { top: calc(100% + 2px); opacity: 0; }
}
@keyframes holoShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.stack-orbit-wrapper {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.stack-orbit-wrapper + .stack-orbit-wrapper {
  margin-top: 20px;
}

/* Horizontal glow beam behind the orbit track */
.stack-orbit-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(255,140,66,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stack-orbit {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: orbitSpin 50s linear infinite;
  will-change: transform;
}

.stack-orbit.reverse {
  animation: orbitSpinReverse 55s linear infinite;
}

.stack-orbit:hover,
.stack-orbit.reverse:hover {
  animation-play-state: paused;
}

/* Individual tech orb */
.stack-orb {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.stack-orb-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  color: rgba(255,140,66,0.6);
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  animation: orbPulse 4s ease-in-out infinite;
  overflow: hidden;
}

/* Holographic shimmer overlay */
.stack-orb-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,140,66,0.07) 40%,
    rgba(255,200,140,0.12) 50%,
    rgba(255,140,66,0.07) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: holoShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

/* Scan line */
.stack-orb-inner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: -2px;
  background: linear-gradient(90deg, transparent, rgba(255,140,66,0.5), transparent);
  animation: scanLine 3s ease-in-out infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.stack-orb:hover .stack-orb-inner::after {
  opacity: 1;
}

/* Label */
.stack-orb::after {
  content: attr(data-label);
  font: 600 11px/1 var(--font-body);
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  white-space: nowrap;
  transition: all 0.4s;
  text-transform: uppercase;
}

/* Hover state — full cinema glow */
.stack-orb:hover .stack-orb-inner {
  color: #FF8C42;
  border-color: rgba(255,140,66,0.5);
  background: rgba(255,140,66,0.08);
  transform: scale(1.18) translateY(-4px);
  box-shadow:
    0 0 20px rgba(255,140,66,0.5),
    0 0 50px rgba(255,140,66,0.25),
    0 0 100px rgba(255,140,66,0.1),
    0 8px 30px rgba(0,0,0,0.4),
    inset 0 0 20px rgba(255,140,66,0.06);
  animation: none;
}

.stack-orb:hover::after {
  color: #FF8C42;
  text-shadow: 0 0 12px rgba(255,140,66,0.5);
}

/* Glow ring on hover */
.stack-orb-inner > svg {
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  filter: drop-shadow(0 0 4px rgba(255,140,66,0.15));
}

.stack-orb:hover .stack-orb-inner > svg {
  filter: drop-shadow(0 0 10px rgba(255,140,66,0.6));
  transform: scale(1.1);
}

/* Light mode */
body.light .stack-orb-inner {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.08);
  color: rgba(217,123,58,0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  animation: none;
}
body.light .stack-orb-inner::before {
  background: linear-gradient(105deg, transparent 20%, rgba(217,123,58,0.06) 40%, rgba(217,123,58,0.1) 50%, rgba(217,123,58,0.06) 60%, transparent 80%);
  background-size: 200% 100%;
  animation: holoShimmer 4s ease-in-out infinite;
}
body.light .stack-orb-inner::after {
  background: linear-gradient(90deg, transparent, rgba(217,123,58,0.35), transparent);
}
body.light .stack-orb:hover .stack-orb-inner {
  color: #D97B3A;
  border-color: rgba(217,123,58,0.4);
  background: rgba(217,123,58,0.06);
  box-shadow: 0 0 20px rgba(217,123,58,0.2), 0 0 50px rgba(217,123,58,0.08), 0 8px 30px rgba(0,0,0,0.06);
}
body.light .stack-orb:hover::after {
  color: #D97B3A;
  text-shadow: 0 0 8px rgba(217,123,58,0.3);
}
body.light .stack-orbit-glow {
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(217,123,58,0.04) 0%, transparent 70%);
}

@media (max-width: 768px) {
  .stack-orb-inner { width: 60px; height: 60px; border-radius: 14px; }
  .stack-orb-inner > svg { width: 24px; height: 24px; }
  .stack-orbit { gap: 20px; }
}

/* === STATS BAR === */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,66,0.05) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item .stat-number {
  font: 700 clamp(36px, 4vw, 56px)/1 var(--font-display);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font: 400 14px/1.4 var(--font-body);
  color: var(--text-secondary);
}

/* === PROCESS TIMELINE === */
/* === PROCESSO CINEMATIC TIMELINE === */
.processo-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--space-2xl) 0;
  perspective: 1200px;
}

.processo-line {
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}

.processo-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #FF8C42 0%, #FFa85c 50%, #FF8C42 100%);
  border-radius: 4px;
  box-shadow:
    0 0 8px rgba(255,140,66,0.6),
    0 0 24px rgba(255,140,66,0.35),
    0 0 48px rgba(255,140,66,0.15);
  transition: height 0.05s linear;
  position: relative;
}

.processo-line-fill::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF8C42;
  box-shadow:
    0 0 12px #FF8C42,
    0 0 28px rgba(255,140,66,0.6),
    0 0 56px rgba(255,140,66,0.3);
  animation: processoHeadPulse 1.5s ease-in-out infinite;
}

@keyframes processoHeadPulse {
  0%, 100% { box-shadow: 0 0 12px #FF8C42, 0 0 28px rgba(255,140,66,0.6), 0 0 56px rgba(255,140,66,0.3); transform: translateX(-50%) scale(1); }
  50% { box-shadow: 0 0 18px #FF8C42, 0 0 40px rgba(255,140,66,0.8), 0 0 72px rgba(255,140,66,0.4); transform: translateX(-50%) scale(1.3); }
}

.processo-phase {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
  position: relative;
  opacity: 0;
  transform: translateX(-40px) rotateY(8deg);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.processo-phase.in-view {
  opacity: 1;
  transform: translateX(0) rotateY(0deg);
}

.processo-phase:nth-child(odd) .processo-card {
  transform-origin: left center;
}
.processo-phase:nth-child(even) .processo-card {
  transform-origin: right center;
}

.processo-dot {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 29px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.processo-dot span {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #051020;
  border: 2px solid rgba(255,140,66,0.2);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.processo-dot::before,
.processo-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255,140,66,0);
  opacity: 0;
  transition: all 0.6s;
}

.processo-dot::after {
  inset: -14px;
}

.processo-phase.in-view .processo-dot span {
  border-color: #FF8C42;
  background: #FF8C42;
  box-shadow:
    0 0 12px rgba(255,140,66,0.8),
    0 0 30px rgba(255,140,66,0.4),
    0 0 60px rgba(255,140,66,0.2);
}

.processo-phase.in-view .processo-dot::before {
  border-color: rgba(255,140,66,0.4);
  opacity: 1;
  animation: dotRing 2s ease-out infinite;
}

.processo-phase.in-view .processo-dot::after {
  border-color: rgba(255,140,66,0.2);
  opacity: 1;
  animation: dotRing 2s ease-out infinite 0.5s;
}

@keyframes dotRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Activated phase (scroll-driven) — extra glow burst */
.processo-phase.activated .processo-dot span {
  background: #FFA055;
  box-shadow:
    0 0 16px #FF8C42,
    0 0 40px rgba(255,140,66,0.6),
    0 0 80px rgba(255,140,66,0.3),
    0 0 120px rgba(255,140,66,0.1);
}

.processo-phase.activated .processo-card {
  border-color: rgba(255,140,66,0.3);
  box-shadow:
    0 0 24px rgba(255,140,66,0.1),
    0 12px 48px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.processo-phase.activated .processo-big-num {
  color: rgba(255,140,66,0.1);
  text-shadow: 0 0 40px rgba(255,140,66,0.08);
}

.processo-phase.activated .processo-icon {
  box-shadow: 0 0 24px rgba(255,140,66,0.3);
  background: rgba(255,140,66,0.15);
  border-color: rgba(255,140,66,0.35);
}

.processo-phase.activated .processo-tags span {
  border-color: rgba(255,140,66,0.3);
  color: #FF8C42;
  box-shadow: 0 0 8px rgba(255,140,66,0.1);
}

.processo-card {
  position: relative;
  flex: 1;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.processo-card:hover {
  border-color: rgba(255,140,66,0.25);
  box-shadow: 0 0 30px rgba(255,140,66,0.08), 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-4px) scale(1.01);
}

.processo-big-num {
  position: absolute;
  top: -10px;
  right: 20px;
  font: 800 120px/1 var(--font-display);
  color: rgba(255,140,66,0.04);
  pointer-events: none;
  transition: color 0.5s;
  z-index: 0;
}

.processo-card:hover .processo-big-num {
  color: rgba(255,140,66,0.08);
}

.processo-card-inner {
  position: relative;
  z-index: 1;
  padding: 32px 36px;
}

.processo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,140,66,0.08);
  border: 1px solid rgba(255,140,66,0.15);
  color: #FF8C42;
  margin-bottom: var(--space-md);
  transition: all 0.4s;
}

.processo-card:hover .processo-icon {
  box-shadow: 0 0 20px rgba(255,140,66,0.2);
  background: rgba(255,140,66,0.12);
}

.processo-card h3 {
  font: 700 22px/1.2 var(--font-display);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.processo-card p {
  font: 400 15px/1.7 var(--font-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.processo-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.processo-tags span {
  font: 500 10px/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255,140,66,0.06);
  border: 1px solid rgba(255,140,66,0.12);
  color: rgba(255,140,66,0.6);
  transition: all 0.3s;
}

.processo-card:hover .processo-tags span {
  border-color: rgba(255,140,66,0.25);
  color: rgba(255,140,66,0.8);
}

/* Processo parallax depth on scroll */
.processo-phase[data-parallax-depth] {
  will-change: transform;
}

/* Light mode */
body.light .processo-dot span {
  background: #EEEEE8;
  border-color: rgba(217,123,58,0.3);
}
body.light .processo-phase.in-view .processo-dot span {
  border-color: #D97B3A;
  box-shadow: 0 0 16px rgba(217,123,58,0.2);
  background: rgba(217,123,58,0.1);
}
body.light .processo-card {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.06);
}
body.light .processo-card:hover {
  border-color: rgba(217,123,58,0.25);
  box-shadow: 0 0 30px rgba(217,123,58,0.06), 0 20px 60px rgba(0,0,0,0.06);
}
body.light .processo-big-num { color: rgba(217,123,58,0.06); }
body.light .processo-card:hover .processo-big-num { color: rgba(217,123,58,0.1); }
body.light .processo-icon { background: rgba(217,123,58,0.08); border-color: rgba(217,123,58,0.15); color: #D97B3A; }
body.light .processo-tags span { background: rgba(217,123,58,0.05); border-color: rgba(217,123,58,0.12); color: rgba(217,123,58,0.6); }
body.light .processo-line { background: rgba(0,0,0,0.06); }
body.light .processo-line-fill { background: linear-gradient(180deg, #D97B3A, rgba(217,123,58,0.3)); box-shadow: 0 0 8px rgba(217,123,58,0.3), 0 0 24px rgba(217,123,58,0.15); }
body.light .processo-line-fill::after { background: #D97B3A; box-shadow: 0 0 12px #D97B3A, 0 0 28px rgba(217,123,58,0.4); }
body.light .processo-phase.activated .processo-dot span { background: #D97B3A; box-shadow: 0 0 16px #D97B3A, 0 0 40px rgba(217,123,58,0.3); }
body.light .processo-phase.activated .processo-card { border-color: rgba(217,123,58,0.25); box-shadow: 0 0 24px rgba(217,123,58,0.08), 0 12px 48px rgba(0,0,0,0.06); }
body.light .processo-phase.activated .processo-icon { box-shadow: 0 0 20px rgba(217,123,58,0.15); background: rgba(217,123,58,0.12); }
body.light .processo-phase.activated .processo-tags span { border-color: rgba(217,123,58,0.25); color: #D97B3A; }

@media (max-width: 768px) {
  .processo-line { left: 20px; }
  .processo-dot { margin-left: 11px; }
  .processo-big-num { font-size: 72px; right: 10px; }
  .processo-card-inner { padding: 24px 20px; }
  .processo-card h3 { font-size: 18px; }
}

/* Legacy timeline (subpages) */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0.3;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  font: 700 18px/1 var(--font-display);
  color: var(--accent-primary);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out-expo);
}

.timeline-step:hover .timeline-number {
  background: rgba(255, 140, 66, 0.1);
  border-color: rgba(255, 140, 66, 0.4);
  color: #FF8C42;
  box-shadow: 0 0 20px rgba(255,140,66,0.25), 0 0 40px rgba(255,140,66,0.1);
  transform: scale(1.1);
}

.timeline-step h3 {
  font: 600 18px/1.3 var(--font-display);
  margin-bottom: var(--space-sm);
}

.timeline-step p {
  font: 400 14px/1.6 var(--font-body);
  color: var(--text-secondary);
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  left: 24px;
  font: 800 60px/1 var(--font-display);
  color: rgba(255, 140, 66, 0.08);
  pointer-events: none;
}

.testimonial-text {
  font: 400 16px/1.7 var(--font-body);
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 14px/1 var(--font-display);
  color: #050508;
}

.testimonial-name {
  font: 600 14px/1.3 var(--font-body);
}

.testimonial-role {
  font: 400 13px/1.3 var(--font-body);
  color: var(--text-tertiary);
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--space-5xl) 0;
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section .cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

.cta-section .cta-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-primary);
  top: -100px;
  left: 10%;
  animation-delay: 0s;
}

.cta-section .cta-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--accent-secondary);
  bottom: -80px;
  right: 15%;
  animation-delay: 2s;
}

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

.cta-section h2 {
  margin-bottom: var(--space-lg);
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
}

.cta-section .hero-ctas {
  justify-content: center;
}

/* === FOOTER === */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-4xl);
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.footer-brand .footer-logo .nav-logo-text {
  font: 400 22px/1 'Russo One', sans-serif;
  color: transparent;
  background: linear-gradient(
    135deg,
    #b0b0b8 0%,
    #e8e8ec 15%,
    #c0c0c8 30%,
    #f0f0f4 45%,
    #a8a8b0 55%,
    #d8d8dc 70%,
    #b8b8c0 85%,
    #e0e0e4 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand .footer-logo {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.footer-brand .footer-logo::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0.08) 60%,
    transparent 65%,
    transparent 100%
  );
  animation: steel-sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.footer-brand .footer-logo .nav-logo-icon {
  height: 24px;
  top: -2px;
}

.footer-brand .footer-logo .nav-logo-icon svg {
  height: 24px;
  width: auto;
}

.footer-brand .footer-tagline {
  color: var(--text-tertiary);
  font-size: 14px;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(255, 140, 66, 0.05);
}

.footer-col h4 {
  font: 600 13px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a {
  font: 400 14px/1.5 var(--font-body);
  color: var(--text-tertiary);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font: 400 13px/1.5 var(--font-body);
  color: var(--text-tertiary);
}

.footer-made {
  font: 400 13px/1.5 var(--font-body);
  color: var(--text-tertiary);
}

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,66,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: left, top;
}

/* === LOADING SCREEN === */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-lg);
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  opacity: 0;
  transform: scale(0.8);
  filter: blur(10px);
  animation: loadingReveal 1.2s var(--ease-out-expo) 0.2s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-logo svg {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 30px rgba(255, 140, 66, 0.3)) drop-shadow(0 0 60px rgba(160, 160, 176, 0.2));
  animation: loadingPulse 2s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(255,140,66,0.3)) drop-shadow(0 0 60px rgba(160,160,176,0.2)); }
  50% { filter: drop-shadow(0 0 50px rgba(255,140,66,0.5)) drop-shadow(0 0 90px rgba(160,160,176,0.35)); }
}

.loading-bar {
  width: 120px;
  height: 2px;
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.5s 0.4s forwards;
}

.loading-bar-fill {
  width: 0%;
  height: 100%;
  background: #FF8C42;
  box-shadow: 0 0 15px rgba(255,140,66,0.5), 0 0 30px rgba(255,140,66,0.2);
  border-radius: 2px;
  animation: loadingProgress 1.5s var(--ease-out-expo) 0.5s forwards;
}

@keyframes loadingReveal {
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes loadingProgress {
  to { width: 100%; }
}

/* === PRODUCT SHOWCASE CARDS (Large) === */
.products-showcase {
  display: grid;
  gap: var(--space-2xl);
}

.product-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
}

.product-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--card-gradient, var(--accent-gradient));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.product-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 60px rgba(var(--card-accent-rgb, 255,140,66), 0.06);
}

.product-showcase-card:hover::before {
  opacity: 1;
}

.product-showcase-card:nth-child(even) {
  direction: rtl;
}

.product-showcase-card:nth-child(even) > * {
  direction: ltr;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.product-logo-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.product-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 800 20px/1 var(--font-display);
  color: #050508;
}

.product-name {
  font: 700 24px/1 var(--font-display);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.product-name .eleven-brand-icon {
  top: -1px;
}

.product-tagline {
  font: 500 16px/1.4 var(--font-body);
  color: var(--card-accent, var(--accent-primary));
}

.product-description {
  font: 400 15px/1.7 var(--font-body);
  color: var(--text-secondary);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.product-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.product-visual {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
}

.product-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
}

/* Animated gradient orb inside product visual */
.product-visual-inner::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: morphGradient 8s ease-in-out infinite;
}

.product-showcase-card .product-visual-inner::before {
  background: var(--card-accent, var(--accent-primary));
}

.product-visual-label {
  font: 700 clamp(24px, 3vw, 40px)/1 var(--font-display);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  z-index: 1;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover {
  background: var(--surface-card-hover);
  border-color: rgba(255,140,66,0.2);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255,140,66,0.06);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 140, 66, 0.08);
  border: 1px solid rgba(255, 140, 66, 0.2);
  box-shadow: 0 0 15px rgba(255,140,66,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--accent-primary);
}

.service-card h3 {
  font: 600 18px/1.3 var(--font-display);
  margin-bottom: var(--space-sm);
}

.service-card p {
  font: 400 14px/1.6 var(--font-body);
  color: var(--text-secondary);
}

/* === THEME TOGGLE === */
.theme-toggle {
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background: var(--toggle-bg);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
  flex-shrink: 0;
  padding: 0;
}

.theme-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--toggle-knob);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.35s var(--ease-out-expo), background 0.4s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.theme-toggle-knob svg {
  width: 10px;
  height: 10px;
  transition: opacity 0.2s;
}

.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }

body.dark .theme-toggle-knob { left: 23px; }
body.dark .theme-toggle .icon-sun { display: none; }
body.dark .theme-toggle .icon-moon { display: block; }

/* === LIGHT MODE OVERRIDES === */

/* -- Nav & Structure -- */
body.light .nav-toggle span { background: var(--text-primary); }
body.light .mobile-menu { background: var(--bg-primary); }
body.light .nav-dropdown-menu { background: var(--bg-secondary); border-color: var(--border-subtle); box-shadow: 0 10px 40px rgba(0,0,0,0.10); }
body.light .nav-dropdown-menu a:hover { background: rgba(0,0,0,0.03); }
body.light .loading-screen { background: var(--bg-primary); }

/* -- Hero -- */
body.light .hero { background: var(--bg-primary); }
body.light .hero h1 { color: var(--text-primary); }
body.light .hero-subtitle { color: var(--text-secondary); }
body.light .hero-badge { background: rgba(255,140,66,0.06); border-color: rgba(255,140,66,0.25); box-shadow: 0 0 15px rgba(255,140,66,0.08); color: #D97B3A; }
body.light .hero-bg-text { color: rgba(0,0,0,0.025); }
body.light .cursor-glow { background: radial-gradient(circle, rgba(255,140,66,0.025) 0%, transparent 70%); }

/* -- Badges & Labels -- */
body.light .section-label { background: rgba(255,140,66,0.06); border-color: rgba(255,140,66,0.25); box-shadow: 0 0 12px rgba(255,140,66,0.06); color: #D97B3A; }
body.light .section-label::before { background: #D97B3A; box-shadow: 0 0 6px #D97B3A, 0 0 15px rgba(217,123,58,0.4); }

/* -- Gradient text (vazada neon → solid in light) -- */
body.light .gradient-text { color: #D97B3A; text-shadow: none; }
body.light h2 .gradient-text,
body.light .text-h1 .gradient-text { -webkit-text-fill-color: #D97B3A !important; -webkit-text-stroke: 0px; text-shadow: none; }
body.light h2 .gradient-text:hover,
body.light .text-h1 .gradient-text:hover { -webkit-text-fill-color: #FF8C42 !important; text-shadow: 0 0 30px rgba(255,140,66,0.3); }

/* -- Buttons -- */
body.light .btn-primary { color: #fff; }
body.light .btn-primary:hover { box-shadow: 0 8px 30px rgba(255,140,66,0.25), 0 0 50px rgba(255,140,66,0.1); }
body.light .btn-secondary { border-color: rgba(0,0,0,0.12); color: var(--text-primary); }
body.light .btn-secondary:hover { border-color: #D97B3A; color: #D97B3A; box-shadow: 0 0 15px rgba(255,140,66,0.08); }

/* -- Cards & Features -- */
body.light .feature-card { background: var(--bg-secondary); border-color: rgba(0,0,0,0.06); }
body.light .feature-card:hover { border-color: rgba(255,140,66,0.15); box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
body.light .service-card { background: var(--bg-secondary); border-color: rgba(0,0,0,0.06); }
body.light .service-card:hover { border-color: rgba(255,140,66,0.15); box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
body.light .service-icon { background: rgba(255,140,66,0.06); border-color: rgba(255,140,66,0.15); box-shadow: none; }

/* -- Stats -- */
body.light .stat-card { background: rgba(0,0,0,0.015); border-color: rgba(0,0,0,0.06); }
body.light .stat-card:hover { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.1); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
body.light .stat-card::before { background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(255,140,66,0.04), transparent 40%); }
body.light .stat-card-glow { background: radial-gradient(circle, rgba(255,140,66,0.06) 0%, transparent 70%); }
body.light .stat-big { color: #D97B3A; text-shadow: none; }

/* -- Products -- */
body.light .product-showcase-card { background: var(--bg-secondary); border-color: rgba(0,0,0,0.06); }
body.light .product-showcase-card:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.08); }
body.light .product-logo-icon { color: #fff; }

/* -- Timeline / Processo -- */
body.light .timeline-number { background: var(--bg-secondary); border-color: rgba(0,0,0,0.08); color: var(--text-primary); }
body.light .timeline-step:hover .timeline-number { background: rgba(255,140,66,0.06); border-color: rgba(255,140,66,0.2); color: #D97B3A; box-shadow: 0 0 20px rgba(255,140,66,0.08); }

/* -- Testimonials -- */
body.light .testimonial-quote { color: rgba(255,140,66,0.08); }
body.light .testimonial-avatar { color: #fff; }
body.light .testimonial-card { background: var(--bg-secondary); border-color: rgba(0,0,0,0.06); }

/* -- Footer -- */
body.light .footer-socials a { border-color: rgba(0,0,0,0.08); }
body.light .footer-socials a:hover { background: rgba(255,140,66,0.05); border-color: rgba(255,140,66,0.2); }

/* -- Alternating bg sections -- */
body.light .bg-alt { background-color: #EEEEE8 !important; }

/* -- CTA section -- */
body.light .cta-section { background: var(--bg-tertiary); }
body.light .cta-section .cta-orb { opacity: 0.08; }
body.light .cta-section h2 { color: var(--text-primary); }
body.light .cta-section p { color: var(--text-secondary); }

/* -- Stats bar -- */
body.light .stats-bar { background: var(--bg-secondary); }
body.light .stat-number { color: #D97B3A; text-shadow: none; }

/* -- Eleven brand icon in light -- */
body.light .eleven-brand-icon svg path { opacity: 0.8; }

/* -- Canvas animations: subtler in light mode -- */
body.light #proposta-canvas,
body.light #servicos-canvas,
body.light #processo-canvas { opacity: 0.35; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .product-showcase-card {
    grid-template-columns: 1fr;
  }

  .product-showcase-card:nth-child(even) {
    direction: ltr;
  }

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

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .timeline::before {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .nav-cta {
    display: none !important;
  }

  .nav-inner {
    padding: 0 var(--space-md);
    overflow: visible;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  section {
    padding: var(--space-4xl) 0;
  }

  .hero {
    padding-top: 80px;
  }

  h2 {
    font-size: clamp(42px, 5vw, 66px);
  }

  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    margin-top: var(--space-3xl);
  }

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

  .timeline {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

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

  .product-showcase-card {
    padding: var(--space-2xl);
  }

  .hero-ctas {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    font-size: 12px;
    padding: 12px 18px;
    white-space: nowrap;
  }

  .cta-section .hero-ctas {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero h1 {
    font-size: clamp(38px, 9.6vw, 58px);
  }

  .stats-showcase {
    grid-template-columns: 1fr 1fr;
  }

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

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

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-2xl { margin-bottom: var(--space-2xl); }
