/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #06060b;
  --bg-alt: #0a0a13;
  --surface: #0f0f1a;
  --surface-2: #14141f;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #EDEEF3;
  --text-dim: #9a9aad;
  --text-dimmer: #6b6b7f;
  --purple: #8B5CF6;
  --blue: #3B82F6;
  --grad: linear-gradient(90deg, var(--purple), var(--blue));
  --grad-diag: linear-gradient(135deg, var(--purple), var(--blue));
  --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.25);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; }
ul { list-style: none; }
svg { display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

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

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, rgba(59,130,246,0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6, 6, 11, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.logo-mark { width: 30px; height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14.5px;
  color: var(--text-dim);
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1.5px;
  background: var(--grad);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  flex-shrink: 0;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 78%;
  max-width: 340px;
  height: 100vh;
  background: rgba(10,10,19,0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 110px 36px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link { font-size: 18px; }
.mobile-menu .btn { margin-top: 12px; width: fit-content; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.btn-small { padding: 10px 20px; font-size: 13.5px; }

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

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(139, 92, 246, 0.25);
  top: -10%; left: -10%;
}
.hero-glow-2 {
  width: 460px; height: 460px;
  background: rgba(59, 130, 246, 0.22);
  bottom: -15%; right: -8%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--purple);
  margin-bottom: 20px;
}
.eyebrow.center { justify-content: center; }
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(139,92,246,0.8);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
}
.hero-title .line { display: block; overflow: hidden; }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dimmer);
  font-size: 12px;
  letter-spacing: 1px;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.scroll-line-fill {
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--grad);
  animation: scrollFill 2s ease-in-out infinite;
}
@keyframes scrollFill {
  0% { top: -100%; }
  50% { top: 0%; }
  100% { top: 100%; }
}

/* ============ REVEAL ANIMATION BASE (JS-driven via GSAP, this is fallback) ============ */
.reveal-up, .reveal-scale { will-change: transform, opacity; }

/* ============ SECTIONS ============ */
.section {
  position: relative;
  padding: 140px 0;
}
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-alt);
  overflow: hidden;
}

.section-head {
  max-width: 680px;
  margin-bottom: 72px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-dim);
}

.section-body {
  font-size: 1.02rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 540px;
}

/* ============ SPLIT LAYOUT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-text { order: 1; }
.split.reverse .split-visual { order: 2; }

.mini-stats {
  display: flex;
  gap: 44px;
  margin-top: 40px;
}
.mini-stat { display: flex; flex-direction: column; }
.mini-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mini-stat-label {
  font-size: 13px;
  color: var(--text-dimmer);
  max-width: 160px;
}

/* ============ CARD 3D (Quienes somos visual) ============ */
.split-visual { display: flex; justify-content: center; perspective: 1200px; }

.card-3d {
  width: 340px; height: 340px;
  position: relative;
  transform-style: preserve-3d;
}
.card-3d-inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1px dashed var(--border-strong);
}
.orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 96px; height: 96px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}
.orbit-badge {
  position: absolute;
  padding: 10px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.orbit-badge.o1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.orbit-badge.o2 { top: 50%; right: -10%; transform: translate(0, -50%); }
.orbit-badge.o3 { bottom: 0%; left: 50%; transform: translate(-50%, 50%); }
.orbit-badge.o4 { top: 50%; left: -10%; transform: translate(0, -50%); }

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(139,92,246,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.service-card.wide { grid-column: span 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ============ SHOWCASE (Servicios en acción) ============ */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 110px;
}
.showcase-row.reverse .showcase-text { order: 2; }
.showcase-row.reverse .showcase-visual { order: 1; }
.showcase-visual { display: flex; justify-content: center; }
.section-title.small { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 16px; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.showcase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.showcase-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 22px 0 8px;
}
.showcase-card p { font-size: 0.9rem; color: var(--text-dim); }

/* --- Phone / chatbot mockup --- */
.phone-mockup { position: relative; width: 280px; }
.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.phone-frame {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 14px 14px 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.phone-notch {
  width: 60px; height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  margin: 0 auto 14px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.phone-header-text { display: flex; flex-direction: column; }
.phone-name { font-size: 13px; font-weight: 600; }
.phone-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-dimmer);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}
.phone-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 300px;
  padding: 0 6px;
}
.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 12.5px;
  line-height: 1.4;
}
.chat-bubble.in {
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.chat-bubble.out {
  align-self: flex-end;
  background: var(--grad);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-bubble.typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
}
.chat-bubble.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: typingBounce 1.2s infinite ease-in-out;
}
.chat-bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* --- Leads mockup --- */
.leads-mockup { position: relative; width: 100%; max-width: 420px; }
.leads-counter {
  text-align: center;
  padding: 8px 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.leads-counter-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.leads-counter-label {
  font-size: 12px;
  color: var(--text-dimmer);
}
.leads-list { display: flex; flex-direction: column; gap: 10px; }
.lead-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
}
.lead-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(139,92,246,0.15);
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lead-name { flex: 1; font-size: 13px; font-weight: 500; }
.lead-tag {
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.lead-tag.hot { background: rgba(239,68,68,0.12); color: #f87171; }
.lead-tag.warm { background: rgba(245,158,11,0.12); color: #fbbf24; }

/* --- Social mockup --- */
.social-mockup { margin-bottom: 4px; }
.social-post { padding: 18px; }
.social-post-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.social-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
.social-post-header-text { display: flex; flex-direction: column; }
.social-name { font-size: 13px; font-weight: 600; }
.social-time { font-size: 11px; color: var(--text-dimmer); }
.social-post-image {
  height: 140px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(59,130,246,0.18));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 14px;
}
.social-post-stats {
  display: flex;
  gap: 18px;
  font-size: 12.5px;
  color: var(--text-dim);
}

/* --- Warehouse mockup --- */
.warehouse-body { padding: 22px; }
.warehouse-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-dimmer);
  font-size: 13px;
  margin-bottom: 16px;
}
.warehouse-result {
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.warehouse-result-label { font-size: 11px; color: var(--purple); font-weight: 600; letter-spacing: 0.5px; }
.warehouse-result-value { font-size: 14.5px; font-weight: 600; }

/* ============ REASONS LIST ============ */
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 40px;
}
.reason { display: flex; gap: 18px; align-items: flex-start; }
.reason-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; }
.reason p { font-size: 0.92rem; color: var(--text-dim); }

/* ============ MOCKUP (dashboard-style visual) ============ */
.mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.mockup-window {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mockup-body { padding: 28px; }
.mockup-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.mockup-row-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.mockup-stat {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup-stat-label { font-size: 11.5px; color: var(--text-dimmer); }
.mockup-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.mockup-chart { margin-bottom: 20px; }
.chart-svg { width: 100%; height: 90px; }
.chart-line { stroke-dasharray: 500; stroke-dashoffset: 500; }
.mockup-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(139,92,246,0.1);
  color: var(--purple);
  border: 1px solid rgba(139,92,246,0.2);
}

/* ============ SAVINGS SECTION ============ */
.ahorro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px circle at 15% 20%, rgba(139,92,246,0.12), transparent 60%),
    radial-gradient(600px circle at 85% 80%, rgba(59,130,246,0.12), transparent 60%);
  pointer-events: none;
}

.savings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.savings-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.3s ease;
}
.savings-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.savings-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(139,92,246,0.1);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
.savings-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.savings-label {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.savings-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-dimmer);
  font-style: italic;
}

/* ============ CONTACT ============ */
.contact-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 72px;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.2), transparent 65%);
  pointer-events: none;
}
.contact-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.contact-content .section-lead { margin: 0 auto 44px; }

.contact-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: left;
}
.contact-method:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.contact-method-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(139,92,246,0.1);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-label { display: block; font-size: 11.5px; color: var(--text-dimmer); }
.contact-method-value { display: block; font-size: 15px; font-weight: 600; }
.contact-method-icon.whatsapp-icon { background: rgba(37, 211, 102, 0.12); color: #25D366; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.form-row { display: flex; gap: 14px; }
.form-row input, .contact-form textarea {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: none;
}
.form-row input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: rgba(255,255,255,0.05);
}
.form-row input::placeholder, .contact-form textarea::placeholder { color: var(--text-dimmer); }
.contact-form .btn { align-self: flex-start; margin-top: 6px; }
.form-note { font-size: 11.5px; color: var(--text-dimmer); }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy { font-size: 13px; color: var(--text-dimmer); }
.footer-contact { display: flex; gap: 24px; font-size: 13px; color: var(--text-dim); }
.footer-contact a:hover { color: var(--text); }

/* ============ WHATSAPP FLOAT BUTTON ============ */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulse 2.2s infinite ease-out;
  z-index: -1;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner .btn-small span { display: none; }
  .nav-inner .btn-small { padding: 10px; }
  .split { grid-template-columns: 1fr; gap: 56px; }
  .split.reverse .split-text { order: 2; }
  .split.reverse .split-visual { order: 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .savings-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { padding: 48px 28px; }
  .contact-methods { flex-direction: column; }
  .showcase-row { grid-template-columns: 1fr; gap: 48px; }
  .showcase-row.reverse .showcase-text { order: 2; }
  .showcase-row.reverse .showcase-visual { order: 1; }
  .showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .savings-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .section { padding: 96px 0; }
  .hero { padding: 140px 20px 80px; }
  .card-3d { width: 280px; height: 280px; }
  .orbit-badge { font-size: 11.5px; padding: 8px 14px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .whatsapp-tooltip { display: none; }
  .mockup-row-4 { grid-template-columns: 1fr 1fr; }
  .phone-mockup { width: 100%; max-width: 320px; }
}
