/* ============================================
   SantriDigitalPro — Home Page Specific Styles
   ============================================ */

/* ---- Hero inner layout ---- */
.hero__inner {
  max-width: 680px;
}

/* ---- Why Section ---- */
.section--alt {
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.why-item__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-muted);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.why-item__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  line-height: var(--leading-snug);
}

.why-item__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 100%;
  margin: 0;
}

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

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

/* ---- Audience card label ---- */
.audience-card__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

/* ---- Start Strip ---- */
.start-strip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.start-strip__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  line-height: var(--leading-tight);
}

.start-strip__desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 48ch;
  margin-bottom: var(--space-6);
}

.start-strip__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.start-step {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.start-step__num {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.start-step__text {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  line-height: var(--leading-snug);
}

@media (max-width: 1024px) {
  .start-strip { grid-template-columns: 1fr; gap: var(--space-8); }
}

@media (max-width: 640px) {
  .start-strip {
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-xl);
  }
  /* Hide steps on mobile — CTA button is enough */
  .start-strip__steps { display: none; }
  .start-strip__desc { max-width: 100%; }
}

/* ---- Hero pattern overlay ---- */
.hero.pattern-bg::before {
  opacity: calc(var(--pattern-opacity) * 0.8);
}

/* ---- Card pain point ---- */
.card__pain {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-3);
}

/* ---- Mobile: Hero compression ---- */
@media (max-width: 640px) {
  .hero {
    padding: var(--space-12) 0 var(--space-10);
  }
  .hero__stats {
    gap: var(--space-6);
    margin-top: var(--space-8);
  }
  .hero__stat-num {
    font-size: var(--text-2xl);
  }
  .hero__stat-label {
    font-size: 0.7rem;
  }
}

/* ---- Mobile: Why-grid stays 2-col (override 1-col) ---- */
@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  .why-item { gap: var(--space-2); }
  .why-item__icon { width: 36px; height: 36px; }
  .why-item__icon svg { width: 18px; height: 18px; }
  .why-item__title { font-size: var(--text-sm); }
  .why-item__desc { font-size: var(--text-xs); line-height: 1.55; }
}
