/* 1. SOBRESCRIBIR VARIABLES GLOBALES PARA ESTA LANDING */
:root {
  --nav-bg: rgba(10,34,24,0.97);
  --orange: #0d8a4e; /* Engañamos al global.css para que use verde */
  --orange-light: #12b864;
  --dark: #0a2218;
  --dark-2: #0d3325;
  --text-dark: #081a11;
  --text-body: #2d4438;
  
  /* Variables nuevas específicas de FlashStart */
  --green-deep: #0a2218;
  --green-mid: #0d3325;
  --green-brand: #0d8a4e;
  --green-light: #12b864;
  --green-accent: #1de88a;
  --teal: #00d4b4;
  --red-risk: #ff4757;
}

/* 2. SOBRESCRIBIR TIPOGRAFÍAS */
body { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, .nav-logo, .nav-cta, .btn-primary, .btn-ghost, .form-title, .submit-btn, .faq-q { 
  font-family: 'Plus Jakarta Sans', sans-serif !important; 
}

/* 3. ESTILOS DE LAS SECCIONES (Pega aquí el resto de tu CSS de FlashStart) */

/* HERO */
/* HERO */
.hero { 
  min-height: 100vh; 
  background: var(--green-deep); 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  padding: 60px 5vw 80px; 
  position: relative; 
  overflow: hidden; 
}

.hero::before { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: radial-gradient(ellipse 70% 60% at 65% 35%, rgba(13,138,78,0.3) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 15% 75%, rgba(0,212,180,0.1) 0%, transparent 60%); 
  pointer-events: none; 
}

.hero::after { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background-image: radial-gradient(circle, rgba(29,232,138,0.05) 1px, transparent 1px); 
  background-size: 32px 32px; 
  pointer-events: none; 
}

.hero-inner { 
  position: relative; 
  z-index: 2; 
  max-width: 840px; 
  margin-top: -40px; 
}

.hero-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: rgba(13,138,78,0.2); 
  border: 1px solid rgba(29,232,138,0.3); 
  border-radius: 100px; 
  padding: 6px 16px; 
  font-size: 0.78rem; 
  font-weight: 600; 
  color: var(--green-accent); 
  letter-spacing: 0.06em; 
  text-transform: uppercase; 
  margin-bottom: 28px; 
  margin-top: 0;
  line-height: 1;
  animation: fadeUp 0.6s ease both; 
}

.hero-badge .dot { 
  width: 7px; 
  height: 7px; 
  background: var(--teal); 
  border-radius: 50%; 
  animation: pulse 2s infinite; 
}

@keyframes pulse { 
  0%, 100% { opacity: 1; transform: scale(1); } 
  50% { opacity: 0.4; transform: scale(1.5); } 
}

.hero-main-title { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-size: clamp(2.1rem, 5vw, 3.5rem); 
  font-weight: 800; 
  color: var(--white); 
  line-height: 1.12; 
  letter-spacing: -0.03em; 
  margin-bottom: 14px; 
  margin-top: 0;
  animation: fadeUp 0.7s 0.1s ease both; 
}

.hero-main-title .accent { 
  color: var(--green-accent); 
}

.hero-sub { 
  font-size: clamp(0.97rem, 2vw, 1.15rem); 
  color: #8ab89e; 
  max-width: 580px; 
  line-height: 1.7; 
  margin-bottom: 40px; 
  animation: fadeUp 0.7s 0.2s ease both; 
}

.hero-ctas { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
  animation: fadeUp 0.7s 0.3s ease both; 
}

.hero-pills { 
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
  margin-top: 48px; 
  padding-top: 32px; 
  border-top: 1px solid rgba(29,232,138,0.1); 
  animation: fadeUp 0.7s 0.4s ease both; 
}

.pill { 
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(29,232,138,0.15); 
  border-radius: 100px; 
  padding: 7px 16px; 
  font-size: 0.8rem; 
  color: #8ab89e; 
  display: flex; 
  align-items: center; 
  gap: 7px; 
}

.pill .icon { 
  font-size: 0.95rem; 
}

@keyframes fadeUp { 
  from { opacity: 0; transform: translateY(20px); } 
  to { opacity: 1; transform: translateY(0); } 
}

/* SEGMENTS TABS */
.segments { background: var(--gray-50); padding: 80px 5vw; }
.seg-header { text-align: center; margin-bottom: 48px; }
.seg-tabs { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.seg-tab { padding: 10px 24px; border-radius: 100px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.85rem; cursor: pointer; border: 2px solid var(--gray-200); background: var(--white); color: var(--gray-600); transition: all 0.2s; }
.seg-tab.active { background: var(--green-brand); color: var(--white); border-color: var(--green-brand); }
.seg-content { display: none; }
.seg-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media(max-width:768px){ .seg-content.active { grid-template-columns: 1fr; } }
.seg-pains { display: flex; flex-direction: column; gap: 14px; }
.seg-pain { background: var(--white); border: 1px solid var(--gray-200); border-left: 4px solid var(--red-risk); border-radius: var(--radius); padding: 20px; }
.seg-pain h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 5px; }
.seg-pain p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.55; }
.seg-solution { background: var(--green-deep); border-radius: var(--radius-lg); padding: 32px; color: var(--white); }
.seg-solution h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 20px; color: var(--green-accent); }
.sol-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sol-list li { display: flex; gap: 12px; font-size: 0.87rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.sol-list li::before { content: '✓'; color: var(--green-accent); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* HOW */
.how { background: var(--white); padding: 96px 5vw; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 52px; }
@media(max-width:768px){ .how-grid { grid-template-columns: 1fr; gap: 48px; } }
.install-options { display: flex; flex-direction: column; gap: 14px; }
.install-card { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: all 0.2s; }
.install-card:hover { border-color: var(--green-brand); box-shadow: var(--shadow-hover); }
.install-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.install-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; }
.install-card p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.55; }
.install-tag { display: inline-block; margin-top: 8px; background: rgba(13,138,78,0.1); color: var(--green-brand); font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: 0.04em; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.proc-step { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px dashed var(--gray-200); }
.proc-step:last-child { border-bottom: none; }
.proc-num { width: 38px; height: 38px; border-radius: 10px; background: var(--green-brand); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }
.proc-step h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.proc-step p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.55; }
.proc-time { display: inline-block; font-size: 0.7rem; font-weight: 700; color: var(--green-brand); background: rgba(13,138,78,0.08); padding: 2px 9px; border-radius: 100px; margin-top: 6px; }

/* CASES */
.cases { background: var(--green-deep); padding: 96px 5vw; position: relative; overflow: hidden; }
.cases::before { content: ''; position: absolute; right: -150px; top: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(13,138,78,0.25) 0%, transparent 70%); pointer-events: none; }
.case-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 48px; position: relative; z-index: 1; }
.case-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(29,232,138,0.15); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.25s; }
.case-card:hover { background: rgba(13,138,78,0.15); border-color: rgba(29,232,138,0.35); transform: translateY(-3px); }
.case-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.case-type { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--teal); }
.case-badge { background: rgba(29,232,138,0.15); color: var(--green-accent); font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.case-size { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.case-detail { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.55; margin-bottom: 14px; }
.case-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.case-tag { font-size: 0.68rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }

/* FEATURES */
.features { background: var(--gray-50); padding: 96px 5vw; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 52px; }
.feat-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 26px 22px; transition: all 0.25s; }
.feat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: var(--green-brand); }
.feat-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.feat-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 7px; }
.feat-card p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

/* FORM EXTRAS */
.trial-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(29,232,138,0.1); border: 1px solid rgba(29,232,138,0.25); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 28px; }
.trial-badge .big { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--green-accent); line-height: 1; }
.trial-badge .text h5 { color: var(--white); font-size: 0.9rem; font-weight: 700; }
.trial-badge .text p { color: var(--gray-400); font-size: 0.78rem; }
.includes-list { display: flex; flex-direction: column; gap: 10px; }
.inc-item { display: flex; gap: 10px; align-items: center; font-size: 0.87rem; color: rgba(255,255,255,0.65); }
.inc-item::before { content: '✓'; color: var(--green-accent); font-weight: 800; flex-shrink: 0; }