/* ========== PAGE HERO ========== */
/* Reuses .page-hero, .page-label from shop.css */

/* ========== SHARED INFO LAYOUT ========== */
.info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 0.5rem;
  display: block;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--mid-grey);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.centered {
  text-align: center;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--mid-grey);
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-text h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.about-text .btn-primary {
  margin-top: 0.5rem;
}
.page-hero{
    padding-left: 1.5rem;
    justify-content: space-around;
    padding-top: 1rem;
}

/* ── Stats Visual Box ── */
.visual-box {
  background: linear-gradient(135deg, var(--charcoal), #3a3a3a);
  border-radius: 16px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.visual-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.8rem 0;
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.visual-divider {
  height: 1px;
  background-color: #3e3e3e;
  width: 100%;
}

/* ========== HOW IT WORKS ========== */
.how-section {
  background-color: var(--light-grey);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1rem;
}

.step-card {
  flex: 1;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.2rem 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--steel-blue);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

.step-connector {
  font-size: 1.8rem;
  color: var(--border);
  padding-top: 2.5rem;
  flex-shrink: 0;
}

/* ========== AUTOMATION ========== */
.automation-section {
  background-color: var(--white);
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.automation-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background-color: var(--light-grey);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.automation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--steel-blue)
}

.auto-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.auto-text h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.auto-text p {
  font-size: 0.87rem;
  color: var(--mid-grey);
  line-height: 1.65;
}

/* ========== FAQ ========== */
.faq-section {
  background-color: var(--light-grey);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: var(--light-grey);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--steel-blue);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.7;
  padding-bottom: 1.3rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-question {
  color: var(--steel-blue);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--steel-blue-dark);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-banner .btn-primary {
  background-color: var(--white);
  color: var(--steel-blue);
}

.cta-banner .btn-primary:hover {
  background-color: #f0f0f0da;
  
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .automation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .step-connector {
    display: none;
  }

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

  .section-heading {
    font-size: 1.7rem;
  }

  .cta-inner h2 {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .visual-box {
    padding: 2rem 1.5rem;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }
}