:root {
  --cream: #F5F0E8;
  --cream2: #EDE8DF;
  --white: #FAFAF8;
  --orange: #E84D0E;
  --orange-dk: #C03D09;
  --orange-lt: #FF6B35;
  --black: #111109;
  --ink: #1E1C17;
  --ink2: #3D3B35;
  --ink3: #7A7870;
  --ink4: #B5B3AB;
  --border: rgba(17, 17, 9, 0.1);
  --border2: rgba(17, 17, 9, 0.05);
  --display: 'Barlow Condensed', sans-serif;
  --body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}


/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 120px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.nav-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 40px;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
}

.nav-link {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  transition: all 0.15s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--border2);
  color: var(--orange);
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  border: 1px solid var(--border);
  background: transparent;
  transition: all 0.15s;
  font-family: var(--body);
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--cream2);
  color: var(--ink);
  border-color: var(--border);
}

.btn-cta {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  border: none;
  transition: all 0.15s;
  font-family: var(--body);
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--orange-dk);
}

/* ── HERO ── */
#hero {
  min-height: calc(100vh - 120px);
  background: linear-gradient(rgba(245, 240, 232, 0.85), rgba(245, 240, 232, 0.85)), url('../img/banner01.png') center/cover no-repeat;
  padding: 320px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  flex: 1;
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 10px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-title em {
  font-style: italic;
  color: var(--orange);
}

.hero-title-sub {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink3);
  line-height: 1.1;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-copy {
  font-size: 17px;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.4s both;
}

.hero-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.6s ease 0.5s both;
}

.btn-hero {
  padding: 16px 32px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--body);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.btn-hero:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 77, 14, 0.3);
}

.btn-sec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  background: none;
  border: none;
  font-family: var(--body);
  text-decoration: none;
  transition: color 0.15s;
}

.btn-sec:hover {
  color: var(--orange);
}

.btn-sec::after {
  content: '→';
  transition: transform 0.15s;
}

.btn-sec:hover::after {
  transform: translateX(3px);
}

/* Hero right — mockup card */
.hero-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(17, 17, 9, 0.12), 0 4px 16px rgba(17, 17, 9, 0.06);
  overflow: hidden;
  animation: fadeUp 0.7s ease 0.3s both;
  position: relative;
}

.hero-card-bar {
  height: 44px;
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-card-body {
  padding: 20px;
}

.mini-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.mini-stat {
  background: var(--cream);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--border2);
}

.mini-stat-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink3);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.mini-stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}

.contact-mini-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border2);
}

.contact-mini-badge {
  font-size: 14px;
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact-mini-info {
  flex: 1;
  min-width: 0;
}

.contact-mini-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}

.contact-mini-msg {
  font-size: 10px;
  color: var(--ink3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-mini-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

.contact-mini-tag.hot {
  background: rgba(232, 77, 14, 0.1);
  color: var(--orange);
}

.contact-mini-tag.warm {
  background: rgba(255, 149, 0, 0.1);
  color: #E07000;
}

.contact-mini-tag.cold {
  background: rgba(59, 130, 246, 0.1);
  color: #2563EB;
}

.agent-strip {
  margin-top: 12px;
  background: var(--orange);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.agent-strip-icon {
  font-size: 16px;
}

.agent-strip-text {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.agent-strip-action {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 5px;
}

/* Hero ticker */
.hero-ticker {
  border-top: 1px solid var(--border);
  background: var(--ink);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-item span {
  color: var(--orange);
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ── SECTION 1 — EL PROBLEMA ── */
#problema,
.page-section {
  background: var(--white);
  padding: 120px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.5px;
  position: sticky;
  top: 90px;
}

.problem-headline em {
  color: var(--orange);
  font-style: italic;
}

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.problem-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-item:first-child {
  border-top: 1px solid var(--border);
}

.problem-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 42px;
  color: var(--cream2);
  line-height: 1;
  letter-spacing: -1px;
  margin-top: -4px;
  user-select: none;
}

.problem-text-head {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}

.problem-text-body {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.7;
}

.problem-text-body strong {
  color: var(--orange);
  font-weight: 600;
}

/* Stat callout */
.stat-callout {
  margin-top: 60px;
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 36px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-image: linear-gradient(var(--border), var(--border));
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.stat-callout::before {
  content: '';
  position: absolute;
  left: 33.3%;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: var(--border);
}

.stat-callout::after {
  content: '';
  position: absolute;
  left: 66.6%;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: var(--border);
}

.callout-stat {
  text-align: center;
  padding: 0 20px;
}

.callout-big {
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1px;
}

.callout-label {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── SECTION 2 — CÓMO FUNCIONA ── */
#como,
.dark-section {
  background: var(--ink);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

#como::before,
.dark-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 77, 14, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.como-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.como-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.como-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}

.como-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 80px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.como-title em {
  color: var(--orange);
  font-style: italic;
}

.como-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 72px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step {
  background: var(--ink);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.step-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -2px;
  user-select: none;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-dk);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}

.step-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.step-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.step-body strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  width: 100%;
}

/* como bottom CTA */
.como-cta {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 40px;
  background: rgba(232, 77, 14, 0.1);
  border: 1px solid rgba(232, 77, 14, 0.2);
  border-radius: 16px;
}

.como-cta-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  color: var(--white);
  line-height: 1.1;
}

.como-cta-text em {
  color: var(--orange);
  font-style: italic;
}

.como-cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ── SECTION 3 — RUBROS ── */
#rubros,
.cream-section {
  background: var(--cream);
  padding: 120px 40px;
}

.rubros-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rubros-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}

.rubros-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.rubros-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.rubros-title em {
  color: var(--orange);
  font-style: italic;
}

.rubros-subtitle {
  font-size: 16px;
  color: var(--ink3);
  line-height: 1.7;
}

.rubros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rubro-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s, border-color 0.25s;
}

.rubro-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.rubro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.rubro-card:hover {
  box-shadow: 0 12px 40px rgba(17, 17, 9, 0.1);
  border-color: rgba(17, 17, 9, 0.15);
}

.rubro-card:hover::before {
  transform: scaleX(1);
}

.rubro-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.rubro-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 10px;
}

.rubro-ticket {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.rubro-body {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.7;
  margin-bottom: 20px;
}

.rubro-body strong {
  color: var(--orange);
  font-weight: 600;
}

.rubro-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink3);
  padding-top: 16px;
  border-top: 1px solid var(--border2);
}

.rubro-proof::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

/* ── ZONA PRIVADA (Modal) ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 9, 0.7);
  backdrop-filter: blur(12px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  width: 420px;
  max-width: 90vw;
  box-shadow: 0 40px 100px rgba(17, 17, 9, 0.3);
  overflow: hidden;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  background: var(--ink);
  padding: 28px 32px 24px;
  position: relative;
}

.modal-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.modal-logo-box {
  width: 30px;
  height: 30px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
}

.modal-logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}

.modal-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  line-height: 1.0;
}

.modal-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.modal-body {
  padding: 28px 32px 32px;
}

.form-field {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font-size: 14px;
  font-family: var(--body);
  outline: none;
  transition: border-color 0.15s;
}

.form-input:focus {
  border-color: var(--orange);
  background: var(--white);
}

.form-input::placeholder {
  color: var(--ink4);
}

.form-btn {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--body);
  transition: all 0.2s;
  margin-top: 8px;
}

.form-btn:hover {
  background: var(--orange-dk);
}

.form-hint {
  text-align: center;
  font-size: 11px;
  color: var(--ink4);
  margin-top: 12px;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-box {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  color: #fff;
}

.footer-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger steps */
.step:nth-child(1) {
  transition-delay: 0s;
}

.step:nth-child(2) {
  transition-delay: 0.1s;
}

.step:nth-child(3) {
  transition-delay: 0.2s;
}

.rubro-card:nth-child(1) {
  transition-delay: 0s;
}

.rubro-card:nth-child(2) {
  transition-delay: 0.08s;
}

.rubro-card:nth-child(3) {
  transition-delay: 0.16s;
}

.rubro-card:nth-child(4) {
  transition-delay: 0.24s;
}

.problem-item:nth-child(1) {
  transition-delay: 0s;
}

.problem-item:nth-child(2) {
  transition-delay: 0.1s;
}

.problem-item:nth-child(3) {
  transition-delay: 0.2s;
}

/* Blinking agent indicator */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.blink {
  animation: blink 2s infinite;
}

/* Number counter */
@keyframes countUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── CONTACT FORM ── */
.contact-section {
  padding: 120px 40px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-form-card {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(17, 17, 9, 0.05);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.full-width {
  grid-column: span 2;
}

/* ── SECTORS GRID ── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.sector-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border);
}

/* ── WHATSAPP FLOATING ── */
.wa-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.wa-button {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
}

.wa-button:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.wa-menu {
  width: 280px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: waPopup 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  border: 1px solid var(--border);
}

.wa-menu.active {
  display: flex;
}

@keyframes waPopup {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wa-header {
  background: #25D366;
  padding: 20px;
  color: white;
}

.wa-header-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}

.wa-header-sub {
  font-size: 12px;
  opacity: 0.9;
  margin-top: 4px;
}

.wa-agents {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wa-agent {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--ink);
  border-radius: 10px;
  transition: background 0.2s;
}

.wa-agent:hover {
  background: var(--cream);
}

.wa-agent-avatar {
  width: 40px;
  height: 40px;
  background: var(--cream2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--orange);
  border: 1px solid var(--border);
}

.wa-agent-info {
  flex: 1;
}

.wa-agent-name {
  font-size: 14px;
  font-weight: 600;
}

.wa-agent-title {
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  background: var(--cream);
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wa-agent-status {
  font-size: 11px;
  color: #25D366;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-agent-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
}

/* ── RESPONSIVE ── */

/* Tablets and below (max-width: 1024px) */
@media (max-width: 1024px) {

  .hero-inner,
  .problem-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .problem-headline {
    position: static;
    margin-bottom: 32px;
  }

  .rubros-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-callout {
    grid-template-columns: 1fr;
    gap: 30px;
    background-image: none;
  }

  .stat-callout::before,
  .stat-callout::after {
    display: none;
  }

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

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

  /* Mobile Menu Styles */
  .nav-mobile-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    margin: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 150;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .nav-right .btn-ghost,
  .nav-right .btn-cta {
    display: none;
  }

  #hero {
    padding: 180px 0 0;
    min-height: auto;
  }

  .hero-inner {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-title-sub {
    font-size: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .section-inner,
  .como-inner {
    padding: 0 20px;
  }

  .page-section,
  .dark-section,
  .cream-section,
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 24px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
  }

  .wa-widget {
    bottom: 20px;
    right: 20px;
  }

  .wa-menu {
    width: calc(100vw - 40px);
  }
}


/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 48px;
  }

  .mini-stat-row {
    grid-template-columns: 1fr;
  }

  .callout-big {
    font-size: 42px;
  }

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