/* =========================
   INDEX PAGE ONLY (index.html)
   ========================= */

.home {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px;
  
}

/* --- HERO --- */
.home .hero {
  background: #f7faff;
  padding: 60px 0 60px;
  border-bottom: 1px solid #e6eaf2;
}

.home .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
}

.home .hero-badge {
  display: inline-flex;
  background: rgba(12, 140, 233, 0.06);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.home .hero h1 {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.home .hero p {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.home .hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home .hero img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto; /* keeps image nicely on right column */
}

/* --- SECTIONS (index only) --- */
.home .section {
  padding: 3rem 0;
}

.home .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.home .section-header p {
  color: var(--muted);
}

/* --- Why WhatsApp Breaks at Scale / FEATURE GRID --- */
.home .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home .feature-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  min-width: 0;
}

.home .feature-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
}

.home .feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.home .feature-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #374151;
}

/* Fix block pinned to bottom */
.home .fix-block {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #e5e7eb;
}

.home .fix-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0c8ce9;
  margin-bottom: 4px;
}

.home .fix-text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #374151;
}

/* --- EXLORA ONE FLOW (LIGHT BOX) --- */
.home .exlora-flow {
  padding: 16px 0;
}

.home .exlora-flow--light .exlora-flow-wrap {
  background: #f0f6ff;
  border: 1px solid #dbe7ff;
  box-shadow: none;
  color: #1f2937;
  padding: 28px;
  border-radius: 14px;
}

.home .exlora-flow-header {
  text-align: center;
  margin-bottom: 20px;
}

.home .exlora-flow-header p {
  margin: 0 0 6px;
  color: #6b7280;
  font-weight: 600;
  font-size: 0.9rem;
}

.home .exlora-flow-title {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.home .exlora-flow-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #2563eb;
  margin: 10px auto 0;
  border-radius: 999px;
}

.home .exlora-flow-tagline {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: #374151;
}

.home .exlora-flow-tagline .muted {
  opacity: 0.9;
}

/* Steps row */
.home .exlora-flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 22px auto 18px;
}

.home .flow-step {
  display: grid;
  place-items: center;
  gap: 8px;
  min-width: 120px;
  text-align: center;
  background: #0f172a;           /* near-black navy */
  border-radius: 14px;           /* rounded corners */
  padding: 18px 20px;
  min-width: 120px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.home .flow-step:hover {
  transform: translateY(-4px);
}

.home .exlora-flow--light .flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
}

.home .exlora-flow--light .flow-icon svg {
  width: 45px;
  height: 45px;
  color: #2563eb;
  stroke-width: 2;
}

/* =========================================
   Step-specific icon colors (override only)
   ========================================= */

/* Step 1 – Inquiry */
.home .exlora-flow--light .flow-step:nth-of-type(1) .flow-icon svg {
  color: #3b82f6; /* blue */
}

/* Step 2 – Order */
.home .exlora-flow--light .flow-step:nth-of-type(3) .flow-icon svg {
  color: #8b5cf6; /* purple */
}

/* Step 3 – Follow-up */
.home .exlora-flow--light .flow-step:nth-of-type(5) .flow-icon svg {
  color: #22d3ee; /* teal */
}

/* Step 4 – Conversion */
.home .exlora-flow--light .flow-step:nth-of-type(7) .flow-icon svg {
  color: #22c55e; /* green */
}

/* Inquiry */
.flow-step:nth-of-type(1) .flow-icon {
  background: rgba(59, 130, 246, 0.12);
}

/* Order */
.flow-step:nth-of-type(3) .flow-icon {
  background: rgba(139, 92, 246, 0.12);
}

/* Follow-up */
.flow-step:nth-of-type(5) .flow-icon {
  background: rgba(34, 211, 238, 0.12);
}

/* Conversion */
.flow-step:nth-of-type(7) .flow-icon {
  background: rgba(34, 197, 94, 0.12);
}

.home .flow-label {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  margin-top: 8px;
}

.home .exlora-flow--light .flow-arrow {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2563eb;
  opacity: 0.6;
  transform: translateY(-4px);
}

/* Benefits pills */
.home .exlora-flow-benefits {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.home .exlora-flow--light .benefit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f2937;
  background: #ffffff;
  border: 1px solid #c7d9ff;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.08);
}

.home .exlora-flow--light .check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
}

.home .exlora-flow-note {
  text-align: center;
  max-width: 720px;
  margin: 10px auto 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1f2937;
  font-weight: 500;
}

/* --- RESPONSIVE (index only) --- */
@media (max-width: 900px) {
  .home .hero-inner {
    grid-template-columns: 1fr;
  }

  .home .hero img {
    margin: 0 auto;
  }

  .home .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .home .feature-grid {
    grid-template-columns: 1fr;
  }

  .home .exlora-flow--light .flow-arrow {
    display: none;
  }

  .home .flow-step {
    min-width: 44%;
  }

  .home .exlora-flow--light .exlora-flow-wrap {
    padding: 22px 16px;
  }

  .home .exlora-flow-title {
    font-size: 1.35rem;
  }
}
