/* ============================================
   EFINFO — Sistema de Diseño Global
   ============================================ */

/* ── Variables ── */
:root {
  --red:         #db191d;
  --red-dark:    #b01318;
  --red-light:   #ff4444;
  --blue:        #0065a1;
  --blue-dark:   #004f7d;
  --blue-light:  #1a8fd1;
  --navy:        #00111f;
  --bg-dark:     #060e18;
  --bg-dark2:    #091525;
  --bg-card:     #0f2035;
  --bg-light:    #F8F9FA;
  --bg-white:    #ffffff;
  --text-white:  #ffffff;
  --text-body:   #9ca3af;
  --text-dark:   #1a1a2e;
  --text-muted:  #6b7280;
  --border:      rgba(255,255,255,.08);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.3);
  --shadow-md:   0 8px 32px rgba(0,0,0,.4);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.5);
  --shadow-red:  0 8px 32px rgba(219,25,29,.3);
  --shadow-blue: 0 8px 32px rgba(0,101,161,.3);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

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

/* ── Sections ── */
.section { padding: 96px 0; }
.section--dark { background: var(--bg-dark2); }
.section--light { background: #ffffff; }

/* Light Theme Component Overrides */
.card--light {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}
.card--light:hover {
  border-color: var(--blue) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}
.card--light h3 { color: var(--text-dark) !important; }
.card--light p { color: var(--text-muted) !important; }
.text-dark { color: var(--text-dark) !important; }

/* ── Typography ── */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(0,101,161,.12);
  border-radius: 100px;
  border: 1px solid rgba(0,101,161,.3);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}
.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-body); }
.text-gradient {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(227,30,36,.45);
}
.btn--ghost {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}
.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 #e5e7eb;
  transition: padding var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo { display: flex; align-items: center; }
.logo-img { height: 47px; width: auto; }
.logo-fallback {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  display: flex;
}
.logo-fallback span { color: var(--red); }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: .90rem !important;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}
.nav-link:hover { color: var(--blue); background: rgba(0, 101, 161, 0.04); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 80%);
}
.hero__glow {
  position: absolute;
  top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background:
    radial-gradient(ellipse at 35% 50%, rgba(0,101,161,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 50%, rgba(219,25,29,.15) 0%, transparent 55%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(0, 101, 161, 0.08);
  border: 1px solid rgba(0, 101, 161, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
.stat { text-align: left; }
.stat__num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
}
.stat span { font-size: 1.1rem; font-weight: 700; color: var(--red); }
.stat small { display: block; font-size: .75rem; color: var(--text-muted); margin-top: 2px; font-weight: 500; }
.stat__divider {
  width: 1px; height: 40px;
  background: #e5e7eb;
}

/* Dashboard Visual */
.dashboard-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(227,30,36,.1);
  position: relative;
}
.dashboard-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0d1117;
  border-bottom: 1px solid var(--border);
}
.db-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.db-dot--red { background: #ff5f57; }
.db-dot--yellow { background: #febc2e; }
.db-dot--green { background: #28c840; }
.db-title {
  font-size: .75rem;
  color: var(--text-body);
  margin-left: 8px;
  font-weight: 500;
}
.dashboard-img {
  width: 100%;
  display: block;
}
.dashboard-alert {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(10,10,18,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(227,30,36,.4);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.alert-icon { font-size: 1.4rem; }
.dashboard-alert strong { display: block; font-size: .85rem; color: #fff; }
.dashboard-alert small { font-size: .75rem; color: var(--text-body); }

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--text-body);
  animation: fade-in-up 1s 1s both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-body);
  border-bottom: 2px solid var(--text-body);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ============================================
   TRUST BAR — Dark pill system
   ============================================ */
.trust-bar {
  padding: 18px 0;
  background: #0d1117;
  border: none;
}
.trust-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.trust-bar__sectors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Individual dark pills */
.trust-pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 7px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
  cursor: default;
}
.trust-pill:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,.85);
}
.trust-pill--active {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
}

/* ============================================
   PROBLEM
   ============================================ */
.problem { background: var(--bg-light); }
.problem__header { margin-bottom: 56px; }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.problem-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-color: var(--red);
}
.problem-card__icon {
  width: 56px; height: 56px;
  background: rgba(227,30,36,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.problem-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   SOLUTIONS
   ============================================ */
.solutions__header { margin-bottom: 56px; }
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.solution-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(227,30,36,.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.solution-card:hover { transform: translateY(-6px); border-color: rgba(227,30,36,.4); }
.solution-card:hover::before { opacity: 1; }
.solution-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(227,30,36,.1);
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.solution-card__icon {
  color: var(--red);
  margin-bottom: 20px;
}
.solution-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.solution-card p {
  font-size: .9rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.65;
}
.solution-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.solution-card__features li {
  font-size: .82rem;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.solution-card__features li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--red);
  font-size: .8rem;
}

/* ============================================
   PLATFORM
   ============================================ */
.platform { background: var(--bg-light); }
.platform__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.platform-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  border: 1px solid #e5e7eb;
}
.platform__content .section-title { color: var(--text-dark); }
.platform__content p { color: var(--text-muted); margin-bottom: 28px; }
.platform__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.platform__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-dark);
}
.check-icon {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: rgba(0,101,161,.12);
  color: var(--blue);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits__header { text-align: center; margin-bottom: 64px; }
.benefits__header .section-title { margin: 0 auto 16px; }
.benefits__header .text-muted { max-width: 500px; margin: 0 auto; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.metric-card:hover { border-color: rgba(227,30,36,.4); transform: translateY(-4px); }
.metric-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.metric-num { font-size: 3rem; font-weight: 900; }
.metric-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.metric-card p { font-size: .875rem; color: var(--text-body); line-height: 1.65; }

/* ============================================
   CHANNELS
   ============================================ */
.channels { background: var(--bg-light); }
.channels__header { text-align: center; margin-bottom: 56px; }
.channels__header .section-title { color: var(--text-dark); }
.channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}
.channel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
}
.channel-item:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,101,161,.12);
}
.channel-icon {
  color: var(--blue);
  transition: var(--transition);
}
.channel-item:hover .channel-icon { transform: scale(1.15); }
.channel-item span { font-size: .85rem; font-weight: 600; color: var(--text-dark); }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries__header { text-align: center; margin-bottom: 48px; }
.industries__header .section-subtitle { color: rgba(255,255,255,.6); max-width: 700px; margin: 12px auto 0; }

.industries__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.industry-card-v2 {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 240px;
  cursor: default;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.industry-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
  border-color: rgba(0,101,161,.5);
}
.industry-card-v2__img {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
  background-size: cover;
  background-position: center;
}
.industry-card-v2:hover .industry-card-v2__img { transform: scale(1.07); }
.industry-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.93) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.12) 100%);
}
.industry-card-v2__content {
  position: relative;
  z-index: 2;
  padding: 18px 14px;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.industry-card-v2__icon-wrap {
  width: 46px; height: 46px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(255,255,255,.2);
  align-self: flex-start;
}
.industry-card-v2 h3 {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.2;
}
.industry-card-v2 p {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-light); }
.testimonials__header { text-align: center; margin-bottom: 56px; }
.testimonials__header .section-title { color: var(--text-dark); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--red); box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.testimonial-card__stars { font-size: 1rem; color: #f59e0b; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card footer { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testimonial-card footer strong { display: block; font-size: .9rem; color: var(--text-dark); }
.testimonial-card footer small { font-size: .8rem; color: var(--text-muted); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  background: var(--bg-dark);
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner__glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(0,101,161,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 50%, rgba(219,25,29,.2) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative; z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--bg-light); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section-title { color: var(--text-dark); }
.contact__info > p { color: var(--text-muted); margin-bottom: 32px; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-muted);
}
.contact__details li svg { color: var(--red); flex-shrink: 0; }
.contact__details li a { color: var(--text-dark); font-weight: 500; }
.contact__details li a:hover { color: var(--red); }
.contact__guarantee {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
}
.guarantee-item span { color: var(--red); font-weight: 700; }

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,30,36,.1);
}
.form-group input.error,
.form-group select.error { border-color: #ef4444; }
.form-error {
  font-size: .78rem;
  color: #ef4444;
  min-height: 18px;
  display: block;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.contact-form .btn--primary { margin-top: 8px; }
.form-privacy {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.form-privacy a { color: var(--red); }
.form-success {
  margin-top: 20px;
  padding: 20px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.form-success > span { font-size: 1.4rem; color: #22c55e; margin-top: 2px; }
.form-success strong { display: block; color: var(--text-dark); font-weight: 700; margin-bottom: 4px; }
.form-success p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); }

/* ============================================
   ABOUT BLOCK (Nosotros)
   ============================================ */
.about-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  margin-bottom: 72px;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.about-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--blue), var(--red));
}
.about-block .section-tag { margin-bottom: 12px; }
.about-block .section-title { color: var(--text-dark); margin-bottom: 20px; }
.about-block__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,101,161,.08);
  border: 1px solid rgba(0,101,161,.2);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.about-block__text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 880px;
}
.footer__top { padding: 72px 0 48px; border-bottom: 1px solid var(--border); }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.footer__brand { max-width: 320px; }
.footer-logo { height: 36px; margin-bottom: 20px; }
.footer-logo-fallback {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.footer__brand p { font-size: .9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-body);
}
.footer__social a:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }
.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col h4 { font-size: .85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a { font-size: .875rem; color: var(--text-body); }
.footer__col li a:hover { color: #fff; }
.footer__bottom { padding: 24px 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text-body);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: #fff; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 48px rgba(37,211,102,.5);
}
.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  background: #fff;
  color: var(--text-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
  border-right: none;
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-left {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fade-in-right {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up    { opacity: 0; transition: opacity .6s ease, transform .6s ease; transform: translateY(28px); }
.animate-fade-left  { opacity: 0; transition: opacity .6s ease, transform .6s ease; transform: translateX(28px); }
.animate-fade-right { opacity: 0; transition: opacity .6s ease, transform .6s ease; transform: translateX(-28px); }
.animate-fade-up.visible,
.animate-fade-left.visible,
.animate-fade-right.visible { opacity: 1; transform: translate(0); }

/* ── Staggered reveal system (premium SaaS feel) ─────────────────
   Add data-stagger="1|2|3|4" to children or use the delay helpers.
   Hierarchy order: eyebrow → title → body → CTAs → stats/cards
──────────────────────────────────────────────────────────────── */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms cubic-bezier(0.22,1,0.36,1),
              transform 360ms cubic-bezier(0.22,1,0.36,1);
}
.stagger-reveal.visible > *:nth-child(1) { transition-delay:  40ms; }
.stagger-reveal.visible > *:nth-child(2) { transition-delay: 130ms; }
.stagger-reveal.visible > *:nth-child(3) { transition-delay: 220ms; }
.stagger-reveal.visible > *:nth-child(4) { transition-delay: 310ms; }
.stagger-reveal.visible > *:nth-child(5) { transition-delay: 390ms; }
.stagger-reveal.visible > * { opacity: 1; transform: translateY(0); }

/* Single-element delay helpers */
.delay-1 { transition-delay:  80ms !important; }
.delay-2 { transition-delay: 180ms !important; }
.delay-3 { transition-delay: 280ms !important; }
.delay-4 { transition-delay: 380ms !important; }

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 580px; margin: 0 auto; }
  .hero__scroll-indicator { display: none; }
  .platform__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__brand { max-width: 100%; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* ── Navbar Móvil ── */
  .navbar__nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh; /* fallback */
    height: 100dvh;
    background: #060e18;
    flex-direction: column;
    justify-content: flex-start;   /* items parten desde arriba */
    align-items: stretch;
    gap: 0;
    padding-top: 68px;             /* espacio bajo el header fijo */
    padding-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    overflow: hidden;              /* sin barras de scroll */
    box-sizing: border-box;
    width: 100%;
  }
  .navbar__nav.open { transform: translateX(0); }

  /* Todos los links — blancos, compactos, sin desborde */
  .navbar__nav .nav-link,
  .navbar__nav a.nav-link {
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 11px 16px !important;
    margin-bottom: 2px;
    color: rgba(255,255,255,.88) !important;
    border-radius: 8px;
    width: 100%;
    min-width: 0;                /* evita que flex desborde */
    box-sizing: border-box;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: transparent;
  }
  .navbar__nav .nav-link:hover,
  .navbar__nav a.nav-link:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,.07) !important;
  }
  /* Página activa */
  .navbar__nav .nav-link[style*="color:var(--blue)"],
  .navbar__nav a[style*="color:var(--blue)"] {
    color: #66b2ff !important;
  }
  /* Login — separador visual */
  .navbar__nav a[href*="login"] {
    color: #66b2ff !important;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 6px;
    padding-top: 14px !important;
  }
  /* Login SVG — tamaño fijo para no desbordar */
  .navbar__nav a[href*="login"] svg {
    flex-shrink: 0;
    width: 15px !important;
    height: 15px !important;
  }

  /* Mostrar "Agenda demo" en menú móvil */
  .navbar__nav .btn--primary,
  .navbar__nav #nav-cta {
    display: flex !important;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    border-radius: 8px;
  }

  /* Hamburger visible */
  .hamburger { display: flex; z-index: 1000; position: relative; }

  /* X blanca al abrir menú */
  .hamburger.active span {
    background: #ffffff !important;
  }

  /* Hero */
  .hero { padding: 100px 0 64px; text-align: center; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__badge { margin-left: auto; margin-right: auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; flex-wrap: wrap; }
  .hero__stats { justify-content: center; }
  .stat__divider { display: none; }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
  }
  .stat { text-align: center; }
  .hero__visual { display: none; }

  /* Hero CTA buttons — CEO-friendly large touch areas */
  .btn--lg { padding: 16px 28px; font-size: 1rem; }

  /* Trust bar — minimal on mobile */
  .trust-bar .container { flex-direction: column; gap: 10px; }
  .trust-bar__sectors { justify-content: center; }

  /* Problem */
  .problem__grid { grid-template-columns: 1fr; }
  .problem__grid > * { flex-direction: column; }

  /* Nosotros mission grid */
  .section--light > .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Logo tiles on mobile */
  .logos-row { gap: 10px; }
  .logo-circle { width: 76px; height: 60px; padding: 6px; }

  /* Two-column grids → single column on mobile */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Decision cards (¿Para quién?) */
  .decision-grid { grid-template-columns: 1fr !important; margin-top: 36px; }

  /* Differentiators grid (nosotros) */
  .diff-grid { grid-template-columns: 1fr !important; }

  /* Solutions */
  .solutions__grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits__grid { grid-template-columns: repeat(2,1fr); }

  /* Channels */
  .channels__grid { grid-template-columns: repeat(4, 1fr); }

  /* Industries */
  .industries__row { grid-template-columns: repeat(4, 1fr); }
  .industries-detail-grid { grid-template-columns: 1fr !important; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Footer */
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }

  /* WhatsApp */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  /* Floating CTA — hide on small screens to avoid overlap */
  .floating-cta { display: none; }

  /* Section titles on mobile */
  .section-title { font-size: 1.8rem !important; }
  .page-hero__title { font-size: 2.2rem !important; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr; gap: 12px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .channels__grid { grid-template-columns: repeat(2, 1fr); }
  .industries__row { grid-template-columns: repeat(2, 1fr); }
  .footer__links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .section-title { font-size: 1.5rem !important; }
  .page-hero__title { font-size: 1.9rem !important; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .diff-grid { grid-template-columns: 1fr !important; }
  .decision-grid { grid-template-columns: 1fr !important; }
  /* Logo tiles — smaller on tiny screens */
  .logos-row { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); gap: 8px; }
  .logo-circle { width: 70px; height: 56px; }
  /* Ticker font size */
  .ticker-item { font-size: 0.62rem; padding: 0 18px; }
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 100px; /* offset from whatsapp */
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,101,161,.45);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.floating-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,101,161,.55);
  color: #fff;
}
.floating-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .floating-cta { bottom: 20px; right: 84px; padding: 11px 16px; font-size: .8rem; }
}

/* ============================================
   CREDENTIALS BLOCK
   ============================================ */
.credentials-block {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.credentials-block::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,101,161,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(219,25,29,.18) 0%, transparent 55%);
  pointer-events: none;
}
.credentials-block__label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}
.credential-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.credential-item:last-child { border-right: none; }
.credential-item:hover { background: rgba(255,255,255,.03); border-radius: var(--radius-md); }
.credential-num {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.credential-num span {
  font-size: .7em;
  color: var(--blue-light);
}
.credential-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  max-width: 150px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .credentials-grid { grid-template-columns: repeat(3, 1fr); }
  .credential-item:nth-child(3) { border-right: none; }
  .credential-item:nth-child(4) { border-right: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 600px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .credential-item { border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
  .credential-item:nth-child(2n) { border-right: none; }
  .credential-item:last-child { border-right: none; border-bottom: none; }
}

/* ============================================
   PAGE HERO (inner pages — not full viewport)
   ============================================ */
.page-hero {
  background: #fff;
  padding: 130px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}
.page-hero--dark {
  background: var(--bg-dark2);
  border-bottom: 1px solid var(--border);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 80%);
}
.page-hero--dark .page-hero__bg {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.page-hero--dark .page-hero__title { color: #fff; }
.page-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 32px;
}
.page-hero--dark .page-hero__subtitle { color: rgba(255,255,255,.65); }
.page-hero__differentiator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(0,101,161,.07);
  border: 1px solid rgba(0,101,161,.2);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
}
.page-hero--dark .page-hero__differentiator {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
}

/* ============================================
   BENEFIT LIST (checkmark lists)
   ============================================ */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.benefit-list li::before {
  content: '✔';
  color: var(--blue);
  font-size: .95rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefit-list--dark li { color: rgba(255,255,255,.7); }
.benefit-list--dark li::before { color: var(--blue-light); }

/* ============================================
   SOLUTION DETAIL SECTION (Soluciones page)
   ============================================ */
.solution-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid #f1f5f9;
}
.solution-detail:last-of-type { border-bottom: none; }
.solution-detail--reverse { direction: rtl; }
.solution-detail--reverse > * { direction: ltr; }
.solution-detail__icon {
  width: 56px; height: 56px;
  background: rgba(0,101,161,.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.solution-detail__quote {
  margin-top: 24px;
  padding: 16px 20px;
  background: #f8fafc;
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .95rem;
  font-style: italic;
  color: var(--text-dark);
  font-weight: 500;
}
@media (max-width: 900px) {
  .solution-detail { grid-template-columns: 1fr; gap: 2rem; }
  .solution-detail--reverse { direction: ltr; }
}

/* ============================================
   PLATFORM FEATURE CARDS
   ============================================ */
.platform-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.platform-feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.platform-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  opacity: 0;
  transition: var(--transition);
}
.platform-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); border-color: var(--blue); }
.platform-feature-card:hover::after { opacity: 1; }
.platform-feature-card__icon {
  width: 52px; height: 52px;
  background: rgba(0,101,161,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.platform-feature-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.platform-feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   INSIGHT CARDS
   ============================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.insight-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.1); border-color: var(--blue); }
.insight-card__header {
  padding: 28px 28px 0;
}
.insight-card__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,101,161,.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.insight-card__tag--red { color: var(--red); background: rgba(219,25,29,.08); }
.insight-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.insight-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.insight-card__body { padding: 16px 28px 28px; }
.insight-card__footer {
  padding: 16px 28px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-muted);
}
.insight-card__footer a {
  color: var(--blue);
  font-weight: 600;
  font-size: .82rem;
}
.insight-card__footer a:hover { color: var(--blue-dark); }

/* Insight Type Cards (for insights page categories) */
.insight-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.insight-type-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  text-align: center;
}
.insight-type-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); border-color: var(--blue); }
.insight-type-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.insight-type-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.insight-type-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   CASE STUDY CARDS
   ============================================ */
.cases-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.case-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.09); }
.case-card__header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.case-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,101,161,.1);
  line-height: 1;
  flex-shrink: 0;
}
.case-card__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,101,161,.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.case-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.case-card__desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.case-card__results {
  padding: 28px 40px 32px;
  background: #fafafa;
}
.case-card__results h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.case-results-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}
.case-card__highlight {
  margin-top: 18px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  padding: 12px 16px;
  background: rgba(0,101,161,.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
}
.case-results-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}
.case-results-list li::before {
  content: '✔';
  color: var(--blue);
  font-weight: 700;
}
@media (max-width: 600px) {
  .case-card__header { flex-direction: column; gap: 8px; padding: 24px 20px 20px; }
  .case-card__results { padding: 20px; }
}

/* ============================================
   COVERAGE SECTION
   ============================================ */
.coverage-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}
.coverage-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text-dark);
}
.coverage-stat::before {
  content: '✔';
  color: var(--blue);
  font-weight: 700;
}
.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.source-tag {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ============================================
   FOR WHOM SECTION
   ============================================ */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.for-whom-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.for-whom-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,101,161,.1); }
.for-whom-card::before {
  content: '✔';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   NOSOTROS PAGE SPECIFIC
   ============================================ */
.why-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.why-list li::before {
  content: '✔';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   PROBLEMA SECTION (Home page)
   ============================================ */
.problem-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  color: var(--text-muted);
}
.problem-list li::before {
  content: '●';
  color: var(--red);
  font-size: .6rem;
  flex-shrink: 0;
  margin-top: 6px;
}
.problem-quote {
  margin: 32px 0;
  padding: 20px 28px;
  background: rgba(219,25,29,.04);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.55;
}
.big-idea {
  margin-top: 20px;
  padding: 18px 24px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -.01em;
}

/* ============================================
   INDUSTRIES DETAIL CARDS (Industrias page)
   New: photo-split card design
   ============================================ */
.industries-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.industry-photo-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.industry-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,.12);
  border-color: var(--blue);
}
.industry-photo-card:hover .industry-photo-card__img img,
.industry-photo-card:hover .industry-photo-card__img-placeholder {
  transform: scale(1.05);
}
.industry-photo-card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.industry-photo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.industry-photo-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.industry-photo-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.industry-photo-card__body {
  padding: 24px 28px 28px;
  flex: 1;
  border-top: 3px solid var(--blue);
}
.industry-photo-card__body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.industry-photo-card__body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .industries-detail-grid { grid-template-columns: 1fr; }
  .industry-photo-card__img { height: 180px; }
}

/* ============================================
   CONTACT PAGE — INTEREST OPTIONS
   ============================================ */
.interest-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.interest-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.interest-option:hover { border-color: var(--blue); background: rgba(0,101,161,.03); }
.interest-option input[type="radio"] { accent-color: var(--blue); width: 16px; height: 16px; }

/* ============================================
   UPDATED FOOTER (multi-page)
   ============================================ */
.footer__links--wide {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .footer__links--wide { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE NEW COMPONENTS (Tablet)
   ============================================ */
@media (max-width: 1024px) {
  .risk-grid { grid-template-columns: 1fr !important; }
  .how-it-works__inner { grid-template-columns: 1fr !important; }
  .platform-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero { padding: 110px 0 56px; }
  .platform-features-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-type-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .industries-detail-grid { grid-template-columns: 1fr; }
  .credentials-block { padding: 48px 0; }
  .about-block { padding: 36px 28px; }
}

