/* ============================================================
   AUTOMACREW — Premium Tech Design System
   Brand Color: #0045ea
   Style: Dark futuristic, enterprise, high-end
   ============================================================ */

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

/* ── TOKENS ── */
:root {
  --brand: #0045ea;
  --brand-light: #4177ff;
  --brand-dark: #0033c0;
  --brand-glow: rgba(0, 69, 234, 0.4);
  --brand-subtle: rgba(0, 69, 234, 0.1);

  --bg-base: #03050c;
  --bg-surface: #070a16;
  --bg-card: #0b1122;
  --bg-card-hover: #111b35;
  --bg-glass: rgba(7, 10, 22, 0.75);

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: #3b82f6;

  --border: rgba(255, 255, 255, 0.08);
  --border-brand: rgba(0, 69, 234, 0.4);

  --gradient-brand: linear-gradient(135deg, #0045ea 0%, #3b82f6 100%);
  --gradient-glow: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  --gradient-hero: radial-gradient(circle at 50% -20%, rgba(0, 69, 234, 0.2) 0%, transparent 70%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-glow: 0 0 50px rgba(0, 69, 234, 0.3);

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section--tight { padding: 70px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-accent);
  background: var(--brand-subtle);
  border: 1px solid var(--border-brand);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.section-label .dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 69, 234, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 69, 234, 0.5);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-sm);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.navbar__logo-img {
  height: 42px; /* Aumentamos el tamaño para que se vea bien */
  width: auto;
  display: block;
}
.scrolled .navbar__logo-img {
  height: 38px;
}
.navbar__logo-mark {
  width: 40px; height: 40px;
  background: var(--brand);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px var(--brand-glow);
  position: relative;
  overflow: hidden;
}
.navbar__logo-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}
.navbar__logo-mark svg { width: 22px; height: 22px; color: #fff; z-index: 1; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--brand);
  transition: var(--transition);
}
.navbar__nav a:hover { color: var(--text-primary); }
.navbar__nav a:hover::after { width: 100%; }
.navbar__cta { display: flex; align-items: center; gap: 12px; }
.navbar__hamburger {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-primary);
  padding: 8px;
}
.navbar__mobile-menu {
  position: fixed;
  top: 80px; left: 24px; right: 24px;
  background: var(--bg-card);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.navbar__mobile-menu.open { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-base);
  padding-top: 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,69,234,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,69,234,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__glow-top {
  position: absolute;
  top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,69,234,0.15) 0%, transparent 65%);
  border-radius: 50%;
}
.hero__glow-bottom {
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,69,234,0.08) 0%, transparent 65%);
  border-radius: 50%;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero__content { max-width: 580px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,69,234,0.1);
  border: 1px solid rgba(0,69,234,0.25);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__badge .pulse {
  width: 7px; height: 7px;
  background: #22d97a;
  border-radius: 50%;
  box-shadow: 0 0 8px #22d97a;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.35); }
}
.hero__h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--text-primary);
}
.hero__h1 .grad {
  background: linear-gradient(135deg, #fff 20%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 40px;
}
.hero__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.hero__bullet-icon {
  width: 22px; height: 22px;
  background: var(--brand-subtle);
  border: 1px solid var(--border-brand);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__bullet-icon svg { width: 13px; height: 13px; color: var(--brand-light); }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero__trust-text {
  font-size: 13px;
  color: var(--text-muted);
}
.trust-badges {
  display: flex;
  gap: 8px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-badge svg { width: 12px; height: 12px; color: var(--text-accent); }

/* ── HERO VISUAL (dashboard mockup) ── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__dashboard {
  position: relative;
  width: 100%;
  max-width: 540px;
}
.dashboard-shell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 69, 234, 0.15);
  backdrop-filter: blur(10px);
}
.dashboard-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.db-dots { display: flex; gap: 6px; }
.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.db-dot.red { background: #ff5f57; }
.db-dot.yellow { background: #febc2e; }
.db-dot.green { background: #28c840; }
.db-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 8px;
}
.dashboard-body { padding: 20px; }
.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.db-stat {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  transition: var(--transition);
}
.db-stat:hover { border-color: var(--border-brand); }
.db-stat__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.db-stat__label { font-size: 10px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.db-stat__delta { font-size: 11px; color: #22d97a; margin-top: 4px; }
.db-chart-area {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 12px;
}
.db-chart-title { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.db-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.db-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(0,69,234,0.25);
  animation: barGrow 1.5s ease-out forwards;
}
.db-bar.active { background: var(--gradient-brand); }
@keyframes barGrow {
  from { height: 0; }
  to { height: var(--h); }
}
.db-automations {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.db-automation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.db-automation-row:last-child { border-bottom: none; padding-bottom: 0; }
.db-auto-name { color: var(--text-secondary); }
.db-auto-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.db-auto-status.active { background: rgba(34,217,122,0.12); color: #22d97a; }
.db-auto-status.running { background: rgba(0,69,234,0.15); color: #5c8aff; }
.db-auto-count { color: var(--text-muted); font-size: 11px; }

/* floating cards */
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), var(--shadow-glow);
  animation: float 4s ease-in-out infinite;
}
.float-card--tl {
  top: -20px; left: -45px;
  animation-delay: -1s;
}
.float-card--br {
  bottom: -20px; right: -40px;
  animation-delay: -2.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-label { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.fc-value { font-size: 18px; font-weight: 800; color: #22d97a; }
.fc-value.blue { color: var(--text-accent); }
.fc-sub { font-size: 10px; color: var(--text-muted); }

/* ── LOGOS / STATS STRIP ── */
.stats-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-strip__inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-item__value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── PROBLEM SECTION ── */
.problems { background: var(--bg-base); }
.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-8px);
  background: var(--bg-card-hover);
}
.problem-card__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.problem-card__icon svg { width: 20px; height: 20px; color: #ff7b7b; }
.problem-card__title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.problem-card__text { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* ── SERVICES ── */
.services { background: var(--bg-surface); position: relative; overflow: hidden; }
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--brand);
  background: var(--bg-card-hover);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 69, 234, 0.15);
}
.service-card__icon {
  width: 60px; height: 60px;
  background: var(--brand-subtle);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.1);
}
.service-card__icon svg { width: 28px; height: 28px; color: var(--brand-light); }
.service-card:hover .service-card__icon svg { color: #fff; }
.service-card__number {
  position: absolute;
  top: 32px; right: 32px;
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}
.service-card__title { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.service-card__text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card__link svg { width: 14px; height: 14px; transition: var(--transition); }
.service-card:hover .service-card__link { color: var(--brand-light); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ── HOW WE WORK ── */
.process { background: var(--bg-base); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}
.step-card:hover {
  border-color: var(--brand);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition);
}
.step-card:hover::before { opacity: 1; }
.step-card__number {
  width: 48px; height: 48px;
  background: var(--brand);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 0 20px var(--brand-glow);
  transform: rotate(-5deg);
  transition: var(--transition);
}
.step-card:hover .step-card__number {
  transform: rotate(0deg) scale(1.1);
}
.step-card__title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.step-card__text { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* ── SECTORS ── */
.sectors { background: var(--bg-surface); }
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 52px;
}
.sector-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sector-card:hover {
  border-color: var(--brand);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.sector-card__icon {
  font-size: 36px;
  margin-bottom: 8px;
  transition: var(--transition);
}
.sector-card:hover .sector-card__icon {
  transform: scale(1.2);
}
.sector-card__name { font-size: 15px; font-weight: 600; color: var(--text-primary); }
.sectors__note {
  text-align: center;
  margin-top: 48px;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  line-height: 1.8;
}

/* ── BENEFITS ── */
.benefits { background: var(--bg-base); overflow: hidden; position: relative; }
.benefits::after {
  content: '';
  position: absolute;
  left: -200px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,69,234,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.benefits__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.benefit-item:hover {
  border-color: var(--border-brand);
  transform: translateX(4px);
}
.benefit-item__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--brand-subtle);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.benefit-item__icon svg { width: 18px; height: 18px; color: var(--brand-light); }
.benefit-item__title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.benefit-item__text { font-size: 13px; color: var(--text-secondary); }
.benefits__visual {
  position: relative;
}
.benefits-visual-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.bv-header { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 24px; }
.bv-metric {
  margin-bottom: 20px;
}
.bv-metric__label { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; display: flex; justify-content: space-between; }
.bv-metric__bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.bv-metric__fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gradient-brand);
  box-shadow: 0 0 10px var(--brand-glow);
  transition: width 1.5s ease-out;
}
.bv-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.bv-number {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.bv-number__val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #22d97a;
  line-height: 1;
}
.bv-number__label { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ── DIFFERENTIATOR ── */
.differential { background: var(--bg-surface); position: relative; overflow: hidden; }
.differential::before {
  content: '';
  position: absolute;
  right: -150px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,69,234,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.differential__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.differential__pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diff-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.diff-pill:hover {
  border-color: var(--border-brand);
  color: var(--text-primary);
  transform: translateX(-4px);
}
.diff-pill__check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--brand-subtle);
  border: 1px solid var(--border-brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.diff-pill__check svg { width: 14px; height: 14px; color: var(--brand-light); }
.differential__content { position: relative; z-index: 1; }
.differential__quote {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
  margin-top: 32px;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
}
.differential__quote span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FAQ ── */
.faq { background: var(--bg-base); }
.faq__list {
  max-width: 860px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-brand); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--text-accent); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--brand-subtle);
  border: 1px solid var(--border-brand);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.faq-chevron svg { width: 13px; height: 13px; color: var(--text-accent); transition: var(--transition); }
.faq-item.open .faq-chevron { background: var(--brand); border-color: var(--brand); }
.faq-item.open .faq-chevron svg { color: #fff; transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer__inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ── CTA FINAL ── */
.cta-final {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,69,234,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,69,234,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,69,234,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.cta-final__inner {
  position: relative; z-index: 1;
  text-align: center;
  padding: 100px 0;
  max-width: 760px;
  margin: 0 auto;
}
.cta-final__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
}
.cta-final__text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}
.cta-final__contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}
.contact-item:hover { color: var(--text-secondary); }
.contact-item svg { width: 15px; height: 15px; color: var(--text-accent); }

/* ── FOOTER ── */
.footer {
  background: #030508;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand .navbar__logo { margin-bottom: 16px; }
.footer__brand-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer__contact-links { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-links a {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer__contact-links a:hover { color: var(--text-accent); }
.footer__contact-links svg { width: 14px; height: 14px; }
.footer__column h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.footer__links a:hover { color: var(--text-accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copyright { font-size: 12px; color: var(--text-muted); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: var(--text-muted); transition: var(--transition); }
.footer__legal a:hover { color: var(--text-secondary); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── CANVAS PARTICLES ── */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__dashboard { max-width: 480px; margin: 0 auto; }
  .float-card--tl { top: -10px; left: -10px; }
  .float-card--br { bottom: -10px; right: -10px; }
  .benefits__inner { grid-template-columns: 1fr; gap: 48px; }
  .differential__inner { grid-template-columns: 1fr; gap: 48px; }
  .differential__pills { order: 2; }
  .differential__content { order: 1; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__inner { gap: 32px; }
  .cta-final__buttons { flex-direction: column; align-items: center; }
  .cta-final__buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-wrap: wrap; }
  .trust-badges { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero__h1 { font-size: 30px; }
  .service-card { padding: 24px; }
  .step-card { padding: 22px; }
  .sectors__grid { grid-template-columns: repeat(2,1fr); }
}

/* ── FLOATING WHATSAPP ── */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}
.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 30px rgba(37, 211, 102, 0.6);
}
.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}
