/* ================================
   RESET + TYPOGRAPHY (solo landings)
   ================================ */

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent: #0ea5e9;
  --accent-bright: #06b6d4;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --gray: #64748b;
  --gray-light: #cbd5e1;
  --bg-white: #ffffff;
  --bg-gray: #f8fafc;
  --bg-blue: #eff6ff;

  --gradient-1: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  --gradient-2: linear-gradient(135deg, #1e40af 0%, #0284c7 100%);
  --gradient-mesh:
    radial-gradient(at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(at 80% 70%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);

  --shadow-sm: 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 30px 60px rgba(0,0,0,.15);
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg-white);
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

/* ================================
   HERO SECTION (original)
   ================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 2rem;
  background: var(--gradient-mesh), #ffffff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(37,99,235,.03) 100%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  padding: .5rem 1rem;
  background: rgba(37,99,235,.1);
  color: #2563eb;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a, #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-highlight {
  color: #2563eb !important;
}

.hero p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================
   Buttons (original)
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: all .3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(37,99,235,.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37,99,235,.35);
}

.btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid rgba(37,99,235,.2);
}

.btn-secondary:hover {
  background: rgba(37,99,235,.05);
}

/* ================================
   HERO VISUAL (original mockup)
   ================================ */

.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  perspective: 1000px;
}

.mockup-browser {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(2deg);
}

.browser-header {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: #f1f5f9;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
}

.browser-content {
  padding: 24px;
}

.chart-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #e0e7ff, #eff6ff);
  border-radius: 12px;
  margin-bottom: 24px;
}

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

.metric-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2563eb;
}

.metric-label {
  font-size: .875rem;
  color: #64748b;
}

/* ================================
   Responsive (original)
   ================================ */

@media (max-width: 980px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }
}

/* ================================
   SECCIONES MARKETING
   ================================ */

.problem-section,
.solution-section,
.benefits-section,
.how-section,
.why-section {
  padding: 6rem 2rem;
}

.problem-section { background: #fff; }
.solution-section { background: var(--bg-gray); }
.benefits-section { background: #fff; }
.how-section { background: var(--bg-gray); }
.why-section { background: #fff; }

.section-label {
  display: inline-block;
  padding: .5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.feature-card,
.step-card,
.pain-card,
.benefit-item {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
}

.feature-card:hover,
.step-card:hover,
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%,100% { opacity: .1; }
  50%     { opacity: .15; }
}

/* ================================
   PROBLEM SECTION (original)
   ================================ */

.problem-section {
  padding: 6rem 2rem;
  background: #ffffff;
  position: relative;
}

.problem-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.problem-container h2 {
  margin: 1.5rem 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.problem-container > p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 760px;
  margin: 0 auto 4rem;
}

/* ================================
   Section label
   ================================ */

.section-label {
  display: inline-block;
  padding: .5rem 1.25rem;
  background: rgba(220,38,38,.10);
  color: #dc2626;
  border-radius: 999px;
  font-weight: 700;
  font-size: .875rem;
}

/* ================================
   Pain points grid
   ================================ */

.pain-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 5rem;
}

/* ================================
   Pain card
   ================================ */

.pain-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* Icon */
.pain-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(220,38,38,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Title */
.pain-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #0f172a;
}

/* Text */
.pain-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1.25rem;
}

/* Time wasted */
.time-waste {
  font-weight: 700;
  color: #dc2626;
  font-size: .875rem;
}

/* Monospace helper */
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* ================================
   Total time block
   ================================ */

.total-time {
  background: linear-gradient(135deg, #fee2e2 0%, #fff 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

.total-time h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0f172a;
}

.time-value {
  font-size: 3rem;
  font-weight: 900;
  color: #dc2626;
  margin-bottom: .5rem;
}

.total-time p {
  font-size: .875rem;
  color: #64748b;
}

/* ================================
   Responsive (original)
   ================================ */

@media (max-width: 1024px) {
  .pain-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pain-points {
    grid-template-columns: 1fr;
  }

  .problem-section {
    padding: 4rem 1.5rem;
  }

  .total-time {
    padding: 2.5rem 1.5rem;
  }
}

/* ================================
   SOLUTION SECTION (original)
   ================================ */

.solution-section {
  padding: 6rem 2rem;
  background: #f8fafc;
  position: relative;
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ================================
   Header
   ================================ */

.solution-header {
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.solution-label {
  display: inline-block;
  padding: .5rem 1.25rem;
  background: rgba(34,197,94,.12);
  color: #16a34a;
  border-radius: 999px;
  font-weight: 700;
  font-size: .875rem;
  margin-bottom: 1.25rem;
}

.solution-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

/* ================================
   Grid
   ================================ */

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 5rem;
}

/* ================================
   Feature card
   ================================ */

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.25rem 2rem;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* Icon */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(34,197,94,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #16a34a;
  stroke-width: 2;
  fill: none;
}

/* Title */
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #0f172a;
}

/* Text */
.feature-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: #64748b;
}

/* ================================
   CTA box
   ================================ */

.cta-box {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  border-radius: 22px;
  padding: 3.5rem 2.5rem;
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 30px 70px rgba(37,99,235,.35);
}

.cta-box h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.cta-box p {
  font-size: 1.125rem;
  opacity: .9;
  margin-bottom: 2rem;
}

/* White CTA button */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 14px;
  background: #ffffff;
  color: #2563eb;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255,255,255,.35);
}

/* ================================
   Responsive (original)
   ================================ */

@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-section {
    padding: 4.5rem 1.5rem;
  }

  .cta-box {
    padding: 3rem 1.5rem;
  }
}


/* ================================
   BENEFITS SECTION (original)
   ================================ */

.benefits-section {
  padding: 6rem 2rem;
  background: #ffffff;
  position: relative;
}

.benefits-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ================================
   Intro
   ================================ */

.benefits-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.benefits-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

/* ================================
   Benefits list
   ================================ */

.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* ================================
   Benefit item
   ================================ */

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  background: #f8fafc;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

/* ================================
   Check icon
   ================================ */

.check-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(34,197,94,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 18px;
  height: 18px;
  stroke: #16a34a;
  stroke-width: 3;
  fill: none;
}

/* ================================
   Text
   ================================ */

.benefit-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

.benefit-text strong {
  font-weight: 700;
  color: #0f172a;
}

/* ================================
   Responsive (original)
   ================================ */

@media (max-width: 640px) {
  .benefits-section {
    padding: 4.5rem 1.5rem;
  }

  .benefit-item {
    padding: 1.25rem 1.25rem;
  }
}

/* ================================
   HOW IT WORKS SECTION (original)
   ================================ */

.how-section {
  padding: 6rem 2rem;
  background: #f8fafc;
  position: relative;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ================================
   Header
   ================================ */

.how-header {
  max-width: 760px;
  margin: 0 auto 4rem;
}

.how-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.how-header p {
  font-size: 1.2rem;
  color: #64748b;
  margin-top: 1rem;
}

/* ================================
   Steps grid
   ================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 3rem;
}

/* ================================
   Step card
   ================================ */

.step-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* Step number */
.step-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(37,99,235,.15);
  margin-bottom: 1rem;
}

/* Title */
.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #0f172a;
}

/* Text */
.step-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1.75rem;
}

/* Visual icon */
.step-visual {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(37,99,235,.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-visual svg {
  width: 28px;
  height: 28px;
  stroke: #2563eb;
  stroke-width: 2;
  fill: none;
}

/* ================================
   Time badge
   ================================ */

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(37,99,235,.10);
  color: #2563eb;
  font-weight: 700;
  font-size: .875rem;
}

/* ================================
   Helpers
   ================================ */

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* ================================
   Responsive (original)
   ================================ */

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .how-section {
    padding: 4.5rem 1.5rem;
  }

  .step-card {
    padding: 2rem 1.5rem;
  }
}

/* ================================
   WHY LOOKER SECTION (original)
   ================================ */

.why-section {
  padding: 6rem 2rem;
  background: #ffffff;
  position: relative;
}

.why-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* ================================
   Header
   ================================ */

.why-header {
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.why-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.why-intro {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
}

/* ================================
   Features
   ================================ */

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 4rem;
}

.why-feature {
  background: #f8fafc;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,.10);
}

/* Title */
.why-feature h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #0f172a;
}

/* Text */
.why-feature p {
  font-size: .95rem;
  line-height: 1.6;
  color: #64748b;
}

/* ================================
   CTA
   ================================ */

.why-cta {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.why-cta p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 1.75rem;
}

/* El botón usa .btn.btn-primary ya definido en la hero */
.why-cta .btn {
  padding: .875rem 1.75rem;
}

/* ================================
   Responsive (original)
   ================================ */

@media (max-width: 1024px) {
  .why-features {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .why-section {
    padding: 4.5rem 1.5rem;
  }

  .why-feature {
    padding: 2rem 1.5rem;
  }
}