/* =====================
   Homepage-Specific Styles
   ===================== */

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  padding: 6rem 0;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

.hero-text h1 {
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
  font-size: 3rem;
}

.hero-sub {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber);
  transition: color 0.2s;
}

.service-link:hover {
  color: var(--amber-hover);
}

/* HOW IT WORKS */
.section-dark {
  background-color: var(--navy);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.step {
  padding: 1.5rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.75rem;
}

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.why-card h4 {
  margin-bottom: 0.5rem;
}

/* TESTIMONIALS */
.section-alt {
  background-color: #f1f5f9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  text-align: left;
}

.testimonial-text {
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-question span {
  font-size: 1.5rem;
  color: var(--amber);
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

/* MOBILE (homepage-specific only) */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .services-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
