/* ============================================================
   INTEVO Consultores — Estilos globales
   ============================================================ */

:root {
  --green: #00bf63;
  --green-dark: #2e6417;
  --green-mid: #4ca626;
  --green-deep: #1A4A2E;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-text: #333333;
  --gray-muted: #6b7280;
  --gray-border: #e5e7eb;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 8px 24px rgba(16, 56, 27, .08);
  --shadow-lg: 0 20px 40px rgba(16, 56, 27, .14);
  --shadow-xl: 0 30px 60px rgba(16, 56, 27, .22);

  --max-width: 1180px;

  --transition: .25s ease;
  --transition-slow: .45s cubic-bezier(.2,.7,.2,1);

  --nav-height: 80px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--gray-text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

h1, h2, h3, h4 { color: #0f1f14; line-height: 1.2; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.8vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.01em; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Compensación para navbar sticky al usar anclas */
main section[id] { scroll-margin-top: calc(var(--nav-height) + 12px); }

/* ============================================================
   Botones
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
  line-height: 1;
}
.btn:focus-visible { outline: 3px solid rgba(0,191,99,.45); outline-offset: 2px; }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,191,99,.28);
}
.btn-primary:hover { background: var(--green-mid); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,191,99,.42); }

.btn-light { background: #fff; color: var(--green-deep); }
.btn-light:hover { background: var(--gray-light); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn-sm { padding: .6rem 1rem; font-size: .9rem; }
.btn-lg {
  padding: 1.15rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.btn-lg svg { width: 20px; height: 20px; transition: transform var(--transition); }
.btn-lg:hover svg { transform: translateX(3px); }
.btn-block { width: 100%; }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  transition: box-shadow var(--transition), background var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--gray-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-logo img {
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-menu a {
  color: var(--gray-text);
  font-weight: 500;
  font-size: .98rem;
  position: relative;
  padding: .25rem 0;
}
.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.nav-menu a:not(.btn):hover { color: var(--green-dark); }
.nav-menu a:not(.btn):hover::after { width: 100%; }
.nav-cta { color: #fff !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  width: 44px; height: 44px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-deep);
  margin: 5px auto;
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  padding: 6rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  z-index: -2;
}
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.hero-bg::before {
  width: 420px; height: 420px;
  background: var(--green-mid);
  top: -120px; right: -100px;
}
.hero-bg::after {
  width: 360px; height: 360px;
  background: #0a7a3a;
  bottom: -140px; left: -120px;
}

.hero-inner {
  position: relative;
  max-width: 920px;
  text-align: center;
}
.hero-title { color: #fff; margin-bottom: 1rem; }
.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 760px;
  margin: 0 auto 2rem;
  opacity: .94;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-light); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head p { color: var(--gray-muted); font-size: 1.05rem; margin: 0; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(0,191,99,.1);
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ============================================================
   Grids
   ============================================================ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   Servicios (grid 2x2 con jerarquía)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* --- Principales (fila superior) --- */
.service-card-primary {
  min-height: 400px;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  border: 1px solid rgba(0,191,99,.18);
  border-top: 4px solid var(--green);
  box-shadow: 0 6px 18px rgba(16,56,27,.08);
}
.service-card-primary:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,191,99,.2);
  border-color: var(--green);
  border-top-color: var(--green);
  z-index: 1;
}
.service-card-primary .service-icon {
  width: 64px; height: 64px;
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,191,99,.32);
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  transition: transform var(--transition);
}
.service-card-primary .service-icon svg { width: 32px; height: 32px; }
.service-card-primary:hover .service-icon { transform: scale(1.08); }

.service-card-primary h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: .75rem;
}
.service-card-primary .service-list li {
  font-size: 1rem;
  color: var(--gray-text);
}
.service-card-primary .service-list li::before { background: var(--green); }

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(0,191,99,.4);
}

/* --- Secundarios (fila inferior) --- */
.service-card-secondary {
  min-height: 320px;
  background: #ffffff;
  border: 1px solid var(--gray-border);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.service-card-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  border-color: rgba(0,0,0,.08);
}
.service-card-secondary .service-icon {
  width: 48px; height: 48px;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  display: grid;
  place-items: center;
}
.service-card-secondary .service-icon svg { width: 24px; height: 24px; }

.service-card-secondary h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .65rem;
}
.service-card-secondary .service-list li {
  font-size: .94rem;
  color: var(--gray-text);
}
.service-card-secondary .service-list li::before { background: #9ca3af; }

/* --- Lista común --- */
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .4rem;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
}

/* ============================================================
   Steps — Cómo trabajamos (simple, sin conectores)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 1rem;
  list-style: none;
}
.steps > * { list-style: none; }

.step {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.step-number {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--green);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.step-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: rgba(0,191,99,.1);
  color: var(--green-dark);
  border-radius: 14px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.step-icon svg { width: 26px; height: 26px; }
.step:hover .step-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.05);
}

.step h3 { color: var(--green-deep); margin-bottom: .35rem; }
.step p  { color: var(--gray-muted); margin: 0; font-size: .95rem; }

/* ============================================================
   Asistente Empresarial — rediseño
   ============================================================ */
.assistant {
  background: linear-gradient(180deg, #eaf7ee 0%, #d8efe1 100%);
  position: relative;
  overflow: hidden;
}
.assistant-sub {
  font-size: 1.1rem;
  color: var(--green-deep);
  font-weight: 500;
}

.assistant-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.assistant-grid > * { flex: 1 1 0; min-width: 0; }

/* ---- Mockup de la app ---- */
.assistant-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.mockup-glow {
  position: absolute;
  inset: 10% -10% -10% 10%;
  background: radial-gradient(closest-side, rgba(0,191,99,.45), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.mockup-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .8rem 1rem;
  background: linear-gradient(180deg, #f3fbf6 0%, #e8f4ec 100%);
  border-bottom: 1px solid #e5ede7;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d9e2dc;
}
.mockup-dot:nth-child(1) { background: #ff6056; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28c93e; }
.mockup-url {
  margin-left: .75rem;
  font-size: .8rem;
  color: var(--green-deep);
  font-weight: 500;
  letter-spacing: .01em;
}

.mockup-screen {
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.mockup-avatar {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .03em;
}
.mockup-title {
  font-weight: 700;
  color: var(--green-deep);
  font-size: .98rem;
}
.mockup-sub {
  font-size: .8rem;
  color: var(--gray-muted);
}

.mockup-cards { display: grid; gap: .75rem; }
.mockup-card {
  background: #fff;
  border: 1px solid #e5ede7;
  border-radius: 12px;
  padding: .85rem 1rem;
  box-shadow: 0 4px 10px rgba(16,56,27,.04);
}
.mockup-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}
.mockup-pill {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: 999px;
}
.mockup-pill.ok    { color: #066b3b; background: #d6f1e3; }
.mockup-pill.warn  { color: #8a5a00; background: #ffefcc; }
.mockup-pill.alert { color: #8a1a1a; background: #ffd9d6; }

.mockup-card-num {
  font-size: .75rem;
  color: var(--gray-muted);
  font-weight: 600;
}
.mockup-card-title {
  font-size: .92rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: .5rem;
}
.mockup-bar-track {
  height: 6px;
  background: #ecf3ee;
  border-radius: 999px;
  overflow: hidden;
}
.mockup-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 999px;
}
.mockup-bar-fill.warn  { background: #f0a900; }
.mockup-bar-fill.alert { background: #d24a3a; }

/* ---- Funcionalidades ---- */
.assistant-content { position: relative; z-index: 1; }

.features-list {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}
.features-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(0,191,99,.12);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.features-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: rgba(0,191,99,.35);
}
.feature-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0,191,99,.18) 0%, rgba(46,100,23,.12) 100%);
  color: var(--green-dark);
  border-radius: 12px;
}
.feature-icon svg { width: 26px; height: 26px; }
.features-list h4 {
  margin: 0 0 .15rem;
  font-size: 1rem;
  color: var(--green-deep);
}
.features-list p {
  margin: 0;
  font-size: .9rem;
  color: var(--gray-muted);
  line-height: 1.45;
}

/* ---- Stats ---- */
.assistant-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,191,99,.18);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  margin-bottom: 1.5rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: .78rem;
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---- CTA ---- */
.assistant-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}
.cta-hint {
  font-size: .85rem;
  color: var(--green-deep);
  font-weight: 500;
  opacity: .8;
}

/* ============================================================
   Red de Emprendedores (rediseño 2 columnas)
   ============================================================ */
.network {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  padding: 5rem 0;
}

.network-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Columna izquierda: visual de nodos --- */
.network-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.network-orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,191,99,.55) 0%, rgba(0,191,99,.18) 35%, transparent 60%),
    radial-gradient(circle at 50% 50%, var(--green) 0%, var(--green-deep) 75%);
  box-shadow:
    inset 0 0 80px rgba(255,255,255,.15),
    0 30px 60px rgba(16,56,27,.22);
  overflow: hidden;
}
/* puntitos decorativos de fondo */
.network-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: .6;
}

.node {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(255,255,255,.12),
    0 4px 14px rgba(0,0,0,.18);
  animation: nodePulse 3.5s ease-in-out infinite;
  z-index: 2;
}
.node-center {
  width: 26px; height: 26px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  box-shadow:
    0 0 0 6px rgba(255,255,255,.18),
    0 0 24px rgba(255,255,255,.55);
  animation-duration: 2.6s;
}
.node-1 { width: 14px; height: 14px; top: 12%;  left: 28%; animation-delay: .0s; }
.node-2 { width: 18px; height: 18px; top: 18%;  left: 72%; animation-delay: .4s; }
.node-3 { width: 12px; height: 12px; top: 50%;  left: 12%; animation-delay: .8s; }
.node-4 { width: 16px; height: 16px; top: 48%;  left: 86%; animation-delay: 1.2s; }
.node-5 { width: 14px; height: 14px; top: 80%;  left: 24%; animation-delay: 1.6s; }
.node-6 { width: 18px; height: 18px; top: 82%;  left: 70%; animation-delay: 2.0s; }
.node-7 { width: 10px; height: 10px; top: 32%;  left: 50%; animation-delay: 2.4s; }

@keyframes nodePulse {
  0%, 100% { transform: translate(0,0) scale(1);    opacity: .95; }
  50%      { transform: translate(0,0) scale(1.15); opacity: 1; }
}
.node-center { animation-name: nodePulseCenter; }
@keyframes nodePulseCenter {
  0%, 100% { transform: translate(-50%,-50%) scale(1);    }
  50%      { transform: translate(-50%,-50%) scale(1.12); }
}

/* líneas que conectan nodos al centro */
.link {
  position: absolute;
  top: 50%; left: 50%;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,.05));
  transform-origin: 0 50%;
  z-index: 1;
  border-radius: 999px;
  opacity: .8;
}
/* Cada línea se posiciona con rotate + width hacia un nodo aproximado */
.link-1 { width: 26%; transform: rotate(-130deg); }
.link-2 { width: 26%; transform: rotate(-50deg); }
.link-3 { width: 38%; transform: rotate(180deg); }
.link-4 { width: 38%; transform: rotate(0deg); }
.link-5 { width: 32%; transform: rotate(130deg); }
.link-6 { width: 32%; transform: rotate(50deg); }
.link-7 { width: 20%; transform: rotate(-90deg); }

/* --- Columna derecha: contenido --- */
.network-content { max-width: 540px; }
.network-content header { margin-bottom: 2rem; }
.network-content header h2 { margin: .25rem 0 .6rem; }
.network-subtitle {
  color: var(--gray-muted);
  font-size: 1.05rem;
  margin: 0;
}

.network-benefits {
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.benefit:last-child { border-bottom: none; }

/* Stagger secuencial al entrar al viewport */
.network-benefits .benefit:nth-child(2) { transition-delay: .12s; }
.network-benefits .benefit:nth-child(3) { transition-delay: .24s; }

.benefit-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,191,99,.28);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 {
  margin: 0 0 .2rem;
  font-size: 1.05rem;
  color: var(--green-deep);
}
.benefit p {
  margin: 0;
  color: var(--gray-muted);
  font-size: .94rem;
  line-height: 1.45;
}

/* --- Stats --- */
.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.1rem 1rem;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,191,99,.18);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.net-stat { text-align: center; }
.net-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.net-stat-label {
  display: block;
  font-size: .78rem;
  color: var(--green-deep);
  font-weight: 600;
  line-height: 1.25;
  margin-top: .25rem;
}

/* --- CTA --- */
.network-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}
.network-note {
  margin: 0;
  font-size: .82rem;
  color: var(--gray-muted);
  font-style: italic;
}

/* ============================================================
   Values
   ============================================================ */
.value {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(46,100,23,.1);
  color: var(--green-dark);
  border-radius: 12px;
  margin-bottom: .75rem;
}
.value-icon svg { width: 24px; height: 24px; }
.value h3 { color: var(--green-deep); margin-bottom: .25rem; }
.value p { color: var(--gray-muted); margin: 0; }

/* ============================================================
   Contacto
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}
.field { display: grid; gap: .35rem; }
.field label {
  font-weight: 600;
  font-size: .92rem;
  color: var(--green-deep);
}
.field input, .field textarea {
  font: inherit;
  color: var(--gray-text);
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  background: #fafafa;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,191,99,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .error {
  color: #c0392b;
  font-size: .82rem;
  min-height: 1em;
}
.field.invalid input,
.field.invalid textarea { border-color: #c0392b; background: #fff5f4; }

.form-status {
  margin: .5rem 0 0;
  font-size: .95rem;
  text-align: center;
}
.form-status.success { color: var(--green-dark); }
.form-status.error   { color: #c0392b; }

.contact-info {
  background: var(--green-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-info h3 { color: #fff; margin-bottom: 1rem; }
.contact-info ul { display: grid; gap: 1rem; }
.contact-info li { display: grid; gap: .2rem; }
.contact-info .info-label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 700;
}
.contact-info a { color: #fff; font-weight: 600; }
.contact-info a:hover { color: #d8efe1; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #0a1c12;
  color: #cdd5cf;
  padding-top: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand img {
  max-height: 56px;
  width: auto;
  background: #fff;
  padding: .5rem .75rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 1rem;
  font-weight: 500;
  color: #b9c4bc;
  max-width: 340px;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.footer-nav ul { display: grid; gap: .5rem; }
.footer-nav a { color: #cdd5cf; font-size: .95rem; }
.footer-nav a:hover { color: var(--green); }

.social-list {
  display: flex;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.social-list a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
}
.social-list a:hover { background: var(--green); transform: translateY(-2px); }
.social-list svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .88rem;
  color: #98a399;
}
.footer-bottom p { margin: 0; }

/* ============================================================
   Reveal (Intersection Observer)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .steps  { grid-template-columns: repeat(2, 1fr); }

  .assistant-grid { flex-direction: column; align-items: stretch; gap: 2rem; }
  .assistant-mockup { order: -1; align-self: center; width: 100%; }

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

  .network-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .network-visual { order: -1; max-width: 360px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-logo img { max-height: 50px; }

  .nav-toggle { display: block; }

  .nav-menu {
    position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .nav-menu.open { max-height: 540px; }
  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: .25rem;
  }
  .nav-menu li { width: 100%; }
  .nav-menu a:not(.btn) {
    display: block;
    padding: .85rem .25rem;
    border-bottom: 1px solid var(--gray-border);
  }
  .nav-menu a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: .75rem; align-self: stretch; text-align: center; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  .section { padding: 3.5rem 0; }

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

  /* Servicios apilados en móvil, sin scale para evitar overflow */
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-card-primary,
  .service-card-secondary { min-height: auto; }
  .service-card-primary:hover { transform: translateY(-4px); }

  /* Red de Emprendedores: stats apretadas y CTA full */
  .network-stats { gap: .5rem; padding: 1rem .75rem; }
  .net-stat-num { font-size: 1.25rem; }
  .net-stat-label { font-size: .72rem; }
  .network-cta { align-items: stretch; }
  .network-cta .btn { width: 100%; }

  .assistant-stats { grid-template-columns: repeat(3, 1fr); padding: 1rem .75rem; }
  .stat-num { font-size: 1.4rem; }
  .btn-lg { width: 100%; padding: 1rem 1.5rem; font-size: 1.05rem; }
  .assistant-cta { align-items: stretch; }
  .cta-hint { text-align: center; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .nav-logo img { max-height: 44px; }
  .features-list li { grid-template-columns: 44px 1fr; padding: .85rem; }
  .feature-icon { width: 44px; height: 44px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .contact-form, .contact-info { padding: 1.5rem; }
  .step-number { font-size: 40px; }
  .assistant-stats { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: .7rem; }
}

/* ============================================================
   LANDING: Red de Emprendedores (red-emprendedores.html)
   ============================================================ */

/* Estado activo en navbar */
.nav-menu .is-active {
  color: var(--green-dark);
  font-weight: 700;
}
.nav-menu .is-active::after {
  width: 100% !important;
  background: var(--green) !important;
}

/* --- HERO oscuro con patrón de puntos --- */
.red-hero {
  position: relative;
  color: #fff;
  padding: 6rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}
.red-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #1A4A2E 0%, #2e6417 100%);
}
.red-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.14) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(0,191,99,.18) 2px, transparent 3px);
  background-size: 28px 28px, 90px 90px;
  background-position: 0 0, 14px 14px;
  opacity: .8;
}
.red-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 20% 30%, rgba(0,191,99,.35), transparent 60%),
    radial-gradient(closest-side at 80% 70%, rgba(76,166,38,.30), transparent 60%);
  filter: blur(20px);
}

.red-hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}
.red-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
}
.red-hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 720px;
  margin: 0 auto 2.25rem;
  opacity: .92;
  line-height: 1.55;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 1.25rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.hero-stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.78);
  letter-spacing: .04em;
  margin-top: .35rem;
}

.red-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- Trust bar --- */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 1.25rem 0;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .94rem;
  font-weight: 500;
  color: var(--green-deep);
}
.trust-emoji {
  font-size: 1.15rem;
  line-height: 1;
}

/* --- Problem --- */
.problem { background: #f9fafb; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.problem-emoji { font-size: 1.6rem; display: block; margin-bottom: .6rem; }
.problem-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-text);
  font-style: italic;
  line-height: 1.5;
}
.problem-transition {
  text-align: center;
  margin: 2.5rem auto 0;
  font-size: 1.15rem;
  color: var(--green-deep);
  max-width: 620px;
}

/* --- Benefits --- */
.benefits-network { background: #fff; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,191,99,.15);
  border-color: var(--green);
}
.benefit-emoji {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  background: #E8F8F0;
  border-radius: 14px;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.benefit-card h3 {
  color: var(--green-deep);
  margin: 0 0 .5rem;
  font-size: 1.15rem;
}
.benefit-card p {
  margin: 0;
  color: var(--gray-muted);
  font-size: .95rem;
  line-height: 1.5;
}

/* --- How it works --- */
.how-network { background: #E8F8F0; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.how-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 6px 16px rgba(16,56,27,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.how-step .step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: .25rem;
  line-height: 1;
}
.how-step h3 {
  color: var(--green-deep);
  margin: 0 0 .35rem;
  font-size: 1.1rem;
}
.how-step p {
  color: var(--gray-muted);
  margin: 0;
  font-size: .95rem;
}

/* --- Directory (profiles) --- */
.directory { background: #fff; }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.profile-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(16,56,27,.06);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.profile-head {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.profile-avatar {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--bg, var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.profile-head h3 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--green-deep);
}
.profile-sector {
  font-size: .82rem;
  color: var(--gray-muted);
  font-weight: 500;
}
.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.profile-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .3rem .65rem;
  border-radius: 999px;
}
.profile-badge.ok {
  background: rgba(0,191,99,.15);
  color: var(--green-dark);
}
.profile-badge.muted {
  background: #f3f4f6;
  color: #4b5563;
}
.profile-card p {
  margin: 0;
  color: var(--gray-text);
  font-size: .9rem;
  line-height: 1.5;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green-dark);
}
.btn-outline:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.directory-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.directory-cta p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--green-deep);
  font-weight: 500;
}

/* --- Forum --- */
.forum {
  background: #1A4A2E;
  color: #e7f3ec;
}
.forum h2 { color: #fff; }
.forum .section-head p { color: rgba(255,255,255,.78); }
.eyebrow-light {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.forum-list {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}
.forum-post {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: transform var(--transition), background var(--transition);
}
.forum-post:hover {
  background: rgba(255,255,255,.1);
  transform: translateX(4px);
}
.forum-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 999px;
  margin-bottom: .65rem;
}
.tag-trib  { background: #ffefcc; color: #8a5a00; }
.tag-legal { background: #ffd9d6; color: #8a1a1a; }
.tag-emp   { background: rgba(0,191,99,.25); color: #b6f0c8; }
.forum-post h3 {
  margin: 0 0 .35rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}
.forum-meta {
  margin: 0;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

/* --- Insignia --- */
.insignia { background: #fff; }
.insignia-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.insignia-visual {
  display: flex;
  justify-content: center;
}
.badge-big {
  position: relative;
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, #00bf63 0%, #2e6417 80%);
  border-radius: 50%;
  box-shadow:
    inset 0 0 30px rgba(255,255,255,.18),
    0 22px 50px rgba(0,191,99,.35);
  color: #fff;
}
.badge-big::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,191,99,.35), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}
.badge-ring {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.5);
  animation: badgeRotate 18s linear infinite;
}
@keyframes badgeRotate {
  to { transform: rotate(360deg); }
}
.badge-check {
  width: 90px; height: 90px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--green);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.badge-check svg { width: 50px; height: 50px; }
.badge-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,0,0,.25);
  padding: .3rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.insignia-content header { margin-bottom: 1.5rem; }
.insignia-content header h2 { margin: .25rem 0 .75rem; }
.insignia-content header p {
  color: var(--gray-muted);
  font-size: 1rem;
  line-height: 1.55;
}
.insignia-list { display: grid; gap: .7rem; }
.insignia-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: 1rem;
  color: var(--gray-text);
}
.insignia-list .check {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .8rem;
}

/* --- Plans --- */
.plans { background: #E8F8F0; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: 0 6px 16px rgba(16,56,27,.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-emoji {
  display: inline-block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .75rem;
}
.plan-card h3 {
  color: var(--green-deep);
  font-size: 1.3rem;
  margin: 0 0 .25rem;
}
.plan-tag-name {
  margin: 0 0 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}
.plan-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .96rem;
  color: var(--gray-text);
}
.plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.plan-featured {
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
  border: 2px solid var(--green);
  box-shadow: 0 16px 36px rgba(0,191,99,.18);
  transform: translateY(-8px);
}
.plan-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0,191,99,.24);
}
.plan-recommend {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .85rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,191,99,.4);
}

.plans-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- Testimonials --- */
.testimonials { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: #f9fafb;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial blockquote {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.55;
  font-style: italic;
}
.testimonial blockquote::before {
  content: '“';
  font-size: 2rem;
  line-height: 0;
  color: var(--green);
  margin-right: .25rem;
  vertical-align: -.25em;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: .85rem;
  border-top: 1px solid var(--gray-border);
  padding-top: 1rem;
}
.testimonial figcaption > div { display: grid; gap: .15rem; }
.testimonial figcaption strong {
  color: var(--green-deep);
  font-size: .98rem;
}
.testimonial figcaption span {
  font-size: .82rem;
  color: var(--gray-muted);
}
.testimonial .stars { font-size: .9rem; }
.testi-avatar {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--bg, var(--green));
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq { background: #f9fafb; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: .75rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: var(--green);
  box-shadow: 0 8px 22px rgba(0,191,99,.1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--green);
  font-weight: 700;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.25rem 1.15rem;
}
.faq-answer p {
  margin: 0;
  color: var(--gray-muted);
  line-height: 1.55;
}

/* --- CTA Final --- */
.cta-final {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #00bf63 0%, #2e6417 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1.5px, transparent 2px);
  background-size: 30px 30px;
  opacity: .6;
}
.cta-final-inner {
  position: relative;
  max-width: 760px;
}
.cta-final h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 .75rem;
  letter-spacing: -.01em;
}
.cta-final p {
  font-size: 1.1rem;
  margin: 0 0 2rem;
  opacity: .94;
}

/* ============================================================
   LANDING — Responsive
   ============================================================ */
@media (max-width: 980px) {
  .problem-grid,
  .benefits-grid,
  .how-steps,
  .profile-grid,
  .plans-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .insignia-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .insignia-visual { order: -1; }

  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .red-hero { padding: 4rem 0 3.5rem; }
  .hero-stats { padding: 1rem .75rem; gap: .75rem; }
  .red-hero-ctas { flex-direction: column; align-items: stretch; }
  .red-hero-ctas .btn { width: 100%; }

  .trust-list {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
  }

  .problem-grid,
  .benefits-grid,
  .how-steps,
  .profile-grid,
  .plans-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .badge-big { width: 200px; height: 200px; }
  .badge-check { width: 76px; height: 76px; }
  .badge-check svg { width: 42px; height: 42px; }

  .cta-final { padding: 3.5rem 0; }
}

@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr; }
}
