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

/* ===== LUCIDE ICON DEFAULTS ===== */
[data-lucide] { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; }
.service-icon [data-lucide], .values-icon [data-lucide], .footer-contact-icon [data-lucide], .contact-icon [data-lucide] { width: 20px; height: 20px; }
.service-icon svg, .values-icon svg, .footer-contact-icon svg, .contact-icon svg { width: 100%; height: 100%; }
.btn-primary [data-lucide], .btn-secondary [data-lucide], .btn-ghost [data-lucide], .nav-cta [data-lucide] { width: 16px; height: 16px; }
.section-badge [data-lucide] { width: 14px; height: 14px; }
.social-link [data-lucide] { width: 16px; height: 16px; }
.whatsapp-float [data-lucide] { width: 28px; height: 28px; color: #fff; }
.map-footer [data-lucide] { width: 16px; height: 16px; }

/* ===== CSS RESET & VARIABLES ===== */
:root {
  --bg-primary: #060a13;
  --bg-surface: #0a0e17;
  --bg-card: rgba(255,255,255,0.03);
  --border-subtle: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.15);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --brand-300: #a5b4fc;
  --brand-400: #818cf8;
  --brand-500: #6366f1;
  --brand-600: #4f46e5;
  --accent: #22d3ee;
  --gradient-brand: linear-gradient(135deg, #6366f1, #a855f7, #22d3ee);
  --gradient-glow: linear-gradient(135deg, rgba(99,102,241,0.4), rgba(168,85,247,0.3), rgba(34,211,238,0.4));
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-glow: 0 0 60px rgba(99,102,241,0.15);
  --shadow-glow-lg: 0 0 100px rgba(99,102,241,0.2), 0 0 40px rgba(168,85,247,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(rgba(99,102,241,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-brand { color: var(--brand-400); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

.gradient-text {
  background: var(--gradient-brand);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  color: var(--brand-300);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.section-badge::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.12), transparent);
  animation: badgeShimmer 4s ease-in-out infinite;
}
@keyframes badgeShimmer { 0% { left: -60%; } 100% { left: 160%; } }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(99,102,241,0.2), transparent);
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  transition: var(--transition-spring);
  position: relative;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent, rgba(99,102,241,0.1), transparent, rgba(34,211,238,0.08), transparent);
  background-size: 400% 400%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  animation: gradientShift 8s ease infinite;
}
.glass-card:hover {
  border-color: rgba(99,102,241,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(99,102,241,0.08);
}
.glass-card:hover::before { opacity: 1; }
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: var(--gradient-brand);
  background-size: 200% auto;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-spring);
  border: none;
  box-shadow: 0 4px 20px rgba(99,102,241,0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(99,102,241,0.4), 0 0 20px rgba(99,102,241,0.2);
  background-position: right center;
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-spring);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: transparent;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid;
  transition: var(--transition-spring);
}

.btn-whatsapp {
  border-color: rgba(34,197,94,0.3);
  color: #4ade80;
}
.btn-whatsapp:hover {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.15);
}

/* ===== FORM INPUTS ===== */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.3); border-radius: 10px; }

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-brand);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--brand-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6,10,19,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 18px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--brand-500);
  border-radius: 2px;
}
.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: 0.85rem; }

/* Mobile Menu */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6,10,19,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu .nav-link { font-size: 1.2rem; padding: 12px 24px; }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}

/* Background glow orbs */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(99,102,241,0.08); top: 10%; left: 15%; filter: blur(140px); }
.hero-orb-2 { width: 500px; height: 500px; background: rgba(34,211,238,0.06); bottom: 15%; right: 10%; filter: blur(160px); animation-delay: 3s; }
.hero-orb-3 { width: 350px; height: 350px; background: rgba(139,92,246,0.06); top: 40%; right: 30%; filter: blur(120px); animation-delay: 5s; }
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

/* Floating geometric shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.shape { position: absolute; opacity: 0; animation: shapeIn 1s ease forwards; }
.shape-hexagon {
  top: 28%; right: 18%; width: 80px; height: 80px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(34,211,238,0.08));
  animation: shapeIn 1s 0.5s ease forwards, shapeFloat 20s linear infinite, shapePulse 4s ease-in-out infinite;
}
.shape-square {
  bottom: 35%; left: 12%; width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(99,102,241,0.12), transparent);
  border: 1px solid rgba(99,102,241,0.15);
  animation: shapeIn 1s 0.7s ease forwards, shapeFloat 15s linear infinite, shapeRotate 15s linear infinite;
  animation-delay: 0.7s, 0s, 0s;
}
.shape-ring {
  top: 55%; right: 25%; width: 100px; height: 100px; border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.1);
  animation: shapeIn 1s 0.9s ease forwards, ringPulse 8s ease-in-out infinite;
}
.shape-dots {
  top: 20%; left: 30%; width: 60px; height: 60px;
  background-image: radial-gradient(rgba(99,102,241,0.2) 1px, transparent 1px);
  background-size: 10px 10px;
  animation: shapeIn 1s 1.1s ease forwards, shapeFloat 25s linear infinite reverse;
}
.shape-diamond {
  bottom: 25%; right: 35%; width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(34,211,238,0.1), rgba(99,102,241,0.05));
  border: 1px solid rgba(34,211,238,0.12);
  transform: rotate(45deg);
  animation: shapeIn 1s 1.3s ease forwards, shapeBob 6s ease-in-out infinite;
}

@keyframes shapeIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
@keyframes shapeFloat { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(0) rotate(360deg); } }
@keyframes shapeRotate { 0% { transform: rotate(45deg); } 100% { transform: rotate(405deg); } }
@keyframes shapePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes shapeBob { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(-20px); } }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.3); opacity: 0.08; } }

/* Particle canvas */
.hero-particles {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* Cursor glow spotlight */
.cursor-glow {
  position: absolute; z-index: 1; pointer-events: none;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, rgba(168,85,247,0.04) 40%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 5; text-align: center;
  max-width: 860px; margin: 0 auto; width: 100%;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: var(--radius-full);
  background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.2);
  color: var(--brand-300); font-size: 0.875rem; font-weight: 500;
  margin-bottom: 32px; position: relative; overflow: hidden;
}
.badge-glow {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.15), transparent);
  animation: badgeGlow 3s ease-in-out infinite;
}
@keyframes badgeGlow { 0% { left: -100%; } 100% { left: 200%; } }

/* Hero Headline */
.hero-headline-wrapper { margin-bottom: 24px; min-height: 130px; display: flex; align-items: center; justify-content: center; }
.hero-headline {
  font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900; line-height: 1.1; color: var(--text-primary);
  letter-spacing: -0.02em;
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}
.hero-headline .gradient-text { display: inline; }

/* Hero Subheadline */
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-secondary);
  margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto;
  line-height: 1.75;
}
.text-brand-highlight {
  color: var(--brand-300); font-weight: 600;
  background: linear-gradient(transparent 60%, rgba(99,102,241,0.15) 60%);
  padding: 0 2px;
}
.text-accent-highlight {
  color: var(--accent); font-weight: 600;
  background: linear-gradient(transparent 60%, rgba(34,211,238,0.12) 60%);
  padding: 0 2px;
}

/* Hero CTA */
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-hero { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }

/* Hero Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 580px; margin: 0 auto;
}
.hero-stat {
  text-align: center; padding: 18px 8px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}
.hero-stat::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(99,102,241,0.12), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.hero-stat:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(99,102,241,0.25);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 0 20px rgba(99,102,241,0.1);
}
.hero-stat:hover::before { opacity: 1; }
.hero-stat-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; position: relative; }
.hero-stat-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; position: relative; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-mouse {
  width: 22px; height: 34px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; justify-content: center; padding-top: 7px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-dot {
  width: 3px; height: 6px; border-radius: 2px;
  background: var(--brand-400);
  animation: scrollFade 2s ease-in-out infinite;
}
.scroll-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes scrollFade { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(8px); } }

/* ===== HERO ENTRANCE ANIMATION SYSTEM ===== */
[data-animate] { opacity: 0; }
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="fade-in"] { transform: none; }
[data-animate="scale"] { transform: scale(0.8); }
[data-animate].animated {
  opacity: 1 !important; transform: none !important;
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-headline-wrapper { min-height: 90px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-hero { width: 100%; max-width: 300px; justify-content: center; }
  .hero-shapes { display: none; }
  .scroll-indicator { display: none; }
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== SERVICE CARDS ===== */
.service-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transform: scaleY(0);
  transition: var(--transition-spring);
  border-radius: 0 2px 2px 0;
}
.service-card:hover::after {
  opacity: 1;
  transform: scaleY(1);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition-spring);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 30px rgba(99,102,241,0.3);
}
.service-icon svg { width: 24px; height: 24px; color: #fff; stroke: #fff; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; transition: color 0.3s; }
.service-card:hover h3 { color: #fff; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* Gradient backgrounds for service icons */
.gradient-blue { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.gradient-violet { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.gradient-emerald { background: linear-gradient(135deg, #10b981, #14b8a6); }
.gradient-cyan { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.gradient-orange { background: linear-gradient(135deg, #f97316, #ef4444); }
.gradient-pink { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.gradient-indigo { background: linear-gradient(135deg, #6366f1, #3b82f6); }

/* ===== CASE STUDIES ===== */
.case-card { overflow: hidden; }
.case-card-banner {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
}
.case-card-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.case-card-banner h3 { position: relative; z-index: 1; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; }
.case-card-body { padding: 24px; }
.case-card-body p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.case-tag {
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.case-metric { text-align: center; padding: 10px 8px; border-radius: 10px; background: rgba(99,102,241,0.05); }
.case-metric-value { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.case-metric-label { font-size: 0.65rem; color: var(--text-muted); margin-top: 2px; }

/* ===== PROCESS TIMELINE ===== */
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; } }
.process-card { padding: 32px; position: relative; }
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 16px;
}
.process-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.process-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.process-deliverables { display: flex; flex-wrap: wrap; gap: 8px; }
.process-chip {
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(99,102,241,0.08);
  color: var(--brand-300);
  border: 1px solid rgba(99,102,241,0.15);
}

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question .chevron { transition: transform 0.3s; font-size: 1.2rem; color: var(--text-muted); }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.9rem; }
.faq-item.open { border-color: rgba(99,102,241,0.2); }

/* ===== LEAD FORM ===== */
.lead-form-section { position: relative; overflow: hidden; }
.lead-form-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(99,102,241,0.05);
  border-radius: 50%;
  filter: blur(200px);
  pointer-events: none;
}
.lead-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 1024px) { .lead-form-grid { grid-template-columns: 1fr; } }
.lead-form-info h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.lead-form-info p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 32px; }
.form-benefit { display: flex; gap: 16px; padding: 16px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle); margin-bottom: 12px; }
.form-benefit-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.form-benefit h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.form-benefit p { font-size: 0.8rem; color: var(--text-secondary); }
.lead-form-card { padding: 36px; }
.lead-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.lead-form-card .form-subtitle { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border-subtle); position: relative; }
.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(99,102,241,0.5), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 80px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-secondary); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--text-primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 14px; height: 14px; color: var(--brand-400); stroke: var(--brand-400); }
.footer-contact-item span { color: var(--text-secondary); font-size: 0.85rem; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: rgba(99,102,241,0.1); color: var(--brand-400); border-color: rgba(99,102,241,0.3); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-secondary); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom a:hover { color: var(--text-primary); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; stroke: #fff; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg-orb { opacity: 0.5; }

/* ===== ABOUT PAGE ===== */
.values-card { padding: 28px; text-align: center; }
.values-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.values-icon svg { width: 24px; height: 24px; color: #fff; stroke: #fff; }
.values-card h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 8px; }
.values-card p { color: var(--text-secondary); font-size: 0.85rem; }

.team-card { padding: 28px; text-align: center; }
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.team-card h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; }
.team-card .team-role { color: var(--brand-400); font-size: 0.85rem; margin-bottom: 4px; }
.team-card .team-exp { color: var(--text-muted); font-size: 0.75rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  transition: var(--transition);
}
.contact-item:hover { background: rgba(255,255,255,0.03); }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h3 { font-weight: 500; font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p { color: var(--text-secondary); font-size: 0.85rem; white-space: pre-line; }

.contact-cta-card { padding: 36px; position: relative; overflow: hidden; }
.contact-cta-card .card-glow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(99,102,241,0.05);
  border-radius: 50%;
  filter: blur(120px);
}

.map-container { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-subtle); }
.map-container iframe { width: 100%; height: 400px; border: 0; filter: invert(90%) hue-rotate(180deg); }
.map-footer { padding: 16px; border-top: 1px solid var(--border-subtle); }

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: rgba(99,102,241,0.06);
  border-radius: 50%;
  filter: blur(150px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }



/* ===== GRADIENT LINE ===== */
.gradient-line {
  width: 0; height: 3px;
  background: var(--gradient-brand); background-size: 200% 100%;
  margin: 0 auto 24px; border-radius: 3px;
  animation: gradientLineIn 0.8s 0.3s cubic-bezier(0.22,1,0.36,1) forwards,
             shimmer 3s 1.1s linear infinite;
  box-shadow: 0 0 12px rgba(99,102,241,0.3);
}
@keyframes gradientLineIn { to { width: 80px; } }

/* ===== SERVICE LINK ===== */
.service-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--brand-400); font-size: 0.85rem;
  font-weight: 500; opacity: 0; transition: var(--transition); margin-top: 16px;
}
.service-link svg { width: 14px; height: 14px; }
.service-card:hover .service-link { opacity: 1; }
.service-card:hover .service-link:hover { gap: 12px; }

/* ===== CASE STUDY V2 (EXPANDABLE) ===== */
.case-card-v2 { overflow: hidden; }
.case-card-v2 .case-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 24px 24px 0; margin-bottom: 16px; }
.case-card-v2 h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; padding: 0 24px; margin-bottom: 4px; }
.case-client { color: var(--text-muted); font-size: 0.8rem; padding: 0 24px; margin-bottom: 16px; }
.case-card-v2 .case-metrics { padding: 0 24px; margin-bottom: 16px; }
.case-card-v2 .case-metric { padding: 12px 8px; border-radius: 10px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle); }
.case-card-v2 .case-metric-value { font-size: 1.2rem; }
.case-expandable {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 24px;
}
.case-detail-box { border-radius: 10px; padding: 16px; margin-bottom: 12px; }
.case-detail-box ul { list-style: none; }
.case-detail-box li { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 4px; display: flex; align-items: flex-start; gap: 8px; }
.case-testimonial {
  padding: 16px; border-radius: 10px; background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--brand-500); color: var(--text-secondary); font-size: 0.85rem;
  font-style: italic; margin-bottom: 12px;
}
.case-testimonial span { display: block; font-style: normal; color: var(--text-muted); font-size: 0.75rem; margin-top: 8px; }
.case-expand-btn {
  width: calc(100% - 48px); margin: 0 24px 24px; padding: 10px; border-radius: 10px;
  border: 1px solid var(--border-subtle); color: var(--text-secondary); font-size: 0.85rem;
  font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition); cursor: pointer; background: transparent;
}
.case-expand-btn:hover { background: rgba(255,255,255,0.03); }
.case-expand-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.case-card-v2.expanded .case-expand-btn svg { transform: rotate(180deg); }

/* ===== PROCESS V2 (HORIZONTAL) ===== */
.process-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.process-card-v2 { padding: 24px 32px; position: relative; overflow: hidden; }
.process-watermark {
  position: absolute; right: -5px; top: -10px; font-size: 5rem; font-family: var(--font-display);
  font-weight: 900; color: rgba(255,255,255,0.02); pointer-events: none; transition: var(--transition);
}
.process-card-v2:hover .process-watermark { color: rgba(255,255,255,0.04); }
.process-row { display: flex; gap: 20px; align-items: flex-start; position: relative; z-index: 1; }
@media (max-width: 640px) { .process-row { flex-direction: column; } }
.process-content { flex: 1; }
.process-title-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.process-title-row h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.process-duration {
  padding: 4px 10px; font-size: 0.7rem; border-radius: 6px; background: rgba(255,255,255,0.04);
  color: var(--text-secondary); border: 1px solid var(--border-subtle);
}
.process-content p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 12px; }
.process-content .process-deliverables { display: flex; flex-wrap: wrap; gap: 8px; }
.process-chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; font-size: 0.75rem;
  border-radius: var(--radius-full); background: rgba(255,255,255,0.03); color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}
.process-chip svg { width: 12px; height: 12px; color: #34d399; stroke: #34d399; }

/* ===== MULTI-STEP FORM ===== */
.form-step { display: none; }
.form-step.active { display: block; }
.step-progress { display: flex; gap: 8px; margin: 20px 0 4px; }
.step-bar { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.06); transition: var(--transition); }
.step-bar.active { background: var(--brand-500); }
.step-label { color: var(--text-muted); font-size: 0.75rem; margin-bottom: 20px; }
.form-group label { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 6px; }
.form-group label svg { width: 14px; height: 14px; color: var(--brand-400); stroke: var(--brand-400); }

/* Option Grid */
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.option-btn {
  padding: 12px; border-radius: 10px; border: 1px solid var(--border-subtle); background: rgba(255,255,255,0.02);
  color: var(--text-secondary); font-size: 0.85rem; text-align: left; cursor: pointer; transition: var(--transition);
}
.option-btn:hover { border-color: var(--border-hover); }
.option-btn.selected { border-color: rgba(99,102,241,0.5); background: rgba(99,102,241,0.1); color: #fff; }
.option-list { display: flex; flex-direction: column; gap: 8px; }
.option-btn-full {
  width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.02); text-align: left; cursor: pointer; transition: var(--transition);
}
.option-btn-full span { display: block; color: #fff; font-size: 0.9rem; font-weight: 500; }
.option-btn-full small { color: var(--text-muted); font-size: 0.75rem; }
.option-btn-full:hover { border-color: var(--border-hover); }
.option-btn-full.selected { border-color: rgba(99,102,241,0.5); background: rgba(99,102,241,0.1); }

/* Form Footer */
.form-footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--border-subtle);
}
.form-footer p { color: var(--text-muted); font-size: 0.75rem; }
.form-footer a { display: flex; align-items: center; gap: 6px; color: #4ade80; font-size: 0.75rem; transition: var(--transition); }
.form-footer a:hover { color: #86efac; }
.form-footer a svg { width: 14px; height: 14px; }

/* FAQ V2 */
.faq-icon { display: inline-flex; width: 40px; height: 40px; border-radius: 10px; background: rgba(99,102,241,0.1);
  align-items: center; justify-content: center; margin-right: 12px; flex-shrink: 0;
}
.faq-icon svg { width: 20px; height: 20px; color: var(--brand-400); stroke: var(--brand-400); }
.faq-question em { color: var(--brand-400); font-style: normal; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; display: block; }
.faq-question > span:first-child { display: flex; align-items: center; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { white-space: pre-line; line-height: 1.7; }

/* Social link SVG */
.social-link svg { width: 16px; height: 16px; }

/* =================================================================
   COMPREHENSIVE RESPONSIVE
   ================================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-form-info { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .container { padding: 0 16px; }

  /* Hero mobile */
  .hero { padding-top: 70px; min-height: auto; padding-bottom: 40px; }
  .hero-content { padding: 30px 16px; }
  #rotating-headline, .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    min-height: 80px !important;
    line-height: 1.15 !important;
  }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost { width: 100%; justify-content: center; max-width: 320px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat { padding: 12px 6px; }
  .hero-stat-value { font-size: 1.1rem; }
  .hero-bg-orb { display: none; }

  /* Page Hero */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 2.8rem) !important; }

  /* Section headings */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-subtitle { font-size: 1rem; margin-bottom: 36px; }

  /* Buttons */
  .btn-primary, .btn-secondary, .btn-ghost { padding: 12px 22px; font-size: 0.9rem; }

  /* Navbar mobile */
  .navbar-inner { height: 64px; }
  .navbar-logo img { height: 34px; }
  .nav-links { display: none; }
  .nav-cta-desktop { display: none !important; }
  .hamburger { display: flex; }

  /* Grid single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Service cards */
  .service-card { padding: 24px; }
  .service-link { opacity: 1; }

  /* Case Studies */
  .case-card-v2 .case-header { flex-direction: column; gap: 12px; }
  .case-card-v2 .case-tags { flex-wrap: wrap; }
  .case-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* Process */
  .process-card-v2 { padding: 20px; }
  .process-row { flex-direction: column; }
  .process-watermark { font-size: 3.5rem; }

  /* Lead Form */
  .lead-form-card { padding: 24px; }
  .option-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { padding: 16px; font-size: 0.9rem; }
  .faq-icon { width: 32px; height: 32px; min-width: 32px; margin-right: 10px; }
  .faq-icon svg { width: 16px; height: 16px; }
  .faq-answer p { padding: 0 16px 16px; font-size: 0.85rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-item { padding: 12px; }
  .map-container iframe { height: 280px; }

  /* CTA */
  .cta-section .glass-card { padding: 32px 20px !important; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  #rotating-headline, .hero h1 { font-size: 1.6rem !important; }
  .hero-stat-value { font-size: 1rem; }
  .hero-stat-label { font-size: 0.6rem; }
  .btn-primary, .btn-secondary, .btn-ghost { padding: 11px 18px; font-size: 0.85rem; }
  .section-badge { font-size: 0.78rem; padding: 5px 12px; }
  .process-deliverables { gap: 6px; }
  .process-chip { font-size: 0.68rem; padding: 3px 8px; }
  .case-metric-value { font-size: 0.9rem !important; }
  .case-metric-label { font-size: 0.6rem; }
  .form-footer { flex-direction: column; gap: 8px; text-align: center; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
  .scroll-indicator { display: none; }
}


