/* ========== Home — Pain Points ========== */
.pain-points {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-light) 50%, var(--ink) 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--ink-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s var(--ease-out);
}

.pain-card:hover {
  border-color: rgba(6, 214, 160, 0.12);
  transform: translateY(-4px);
}

.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(6, 214, 160, 0.1);
}

.pain-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 8px;
}

.pain-problem {
  font-size: 14px;
  color: var(--rose);
  margin-bottom: 8px;
  font-weight: 500;
}

.pain-solution {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
}

[data-theme="light"] .pain-card {
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* ========== Home — Product Showcase ========== */
.product-showcase {
  background: var(--ink);
}

.showcase-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.showcase-feature {
  background: var(--ink-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.4s var(--ease-out);
}

.showcase-feature:hover {
  border-color: rgba(6, 214, 160, 0.12);
  transform: translateY(-4px);
}

.showcase-feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.showcase-feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 8px;
}

.showcase-feature-desc {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
}

[data-theme="light"] .showcase-feature {
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* ========== Home — MethodicAi Differentiators ========== */
.methodic-diff {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-light) 50%, var(--ink) 100%);
}

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

.diff-card {
  background: var(--ink-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.4s var(--ease-out);
}

.diff-card:hover {
  border-color: rgba(6, 214, 160, 0.12);
  transform: translateY(-4px);
}

.diff-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.diff-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 8px;
}

.diff-card-desc {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
}

[data-theme="light"] .diff-card {
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* ========== Home — Suite Overview ========== */
.suite-overview {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-light) 100%);
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.suite-card {
  background: var(--ink-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.suite-card-btn {
  margin-top: 16px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--accent);
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s var(--ease-out);
}

.suite-card-btn:hover {
  background: var(--accent-glow);
}

.suite-card:hover {
  border-color: rgba(6, 214, 160, 0.12);
  transform: translateY(-4px);
}

.suite-card-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.suite-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 8px;
}

.suite-card-desc {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
}

.suite-note {
  text-align: center;
  font-size: 14px;
  color: var(--slate);
  font-style: italic;
}

[data-theme="light"] .suite-card {
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* ========== Home — Stats Bar ========== */
.stats-bar {
  padding: 0 0 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(6, 214, 160, 0.06);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(6, 214, 160, 0.08);
}

.stat-item {
  background: var(--ink-light);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover {
  background: var(--ink-mid);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--slate-light);
  font-weight: 500;
}

[data-theme="light"] .stats-grid {
  background: rgba(5, 150, 105, 0.04);
  border-color: rgba(5, 150, 105, 0.1);
}

/* ========== Home — Final CTA ========== */
.final-cta {
  background: var(--ink);
  position: relative;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 214, 160, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 16px;
  color: var(--slate-light);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-email {
  font-size: 15px;
  color: var(--slate);
  margin-top: 24px;
}

.final-cta-email a {
  color: var(--accent);
  text-decoration: none;
}

.final-cta-email a:hover {
  text-decoration: underline;
}

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

  .suite-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }
}

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

  .showcase-features {
    grid-template-columns: 1fr;
  }

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

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

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