/* ── SERVICE HERO ── */
.service-hero {
  background:
    radial-gradient(ellipse at top, rgba(59, 158, 232, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0d2d5e 60%, #163a75 100%);
  padding: 90px 5% 70px;
  text-align: center;
}

.service-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--sky);
}

.service-hero-icon {
  width: 84px;
  height: 84px;
  font-size: 2.4rem;
  margin: 0 auto 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero h1 {
  color: var(--on-dark);
  margin-bottom: 1rem;
}

.service-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── SERVICE SECTIONS ── */
.service-section {
  padding: 80px 5%;
}

.alt-bg {
  background: var(--light-bg);
}

.service-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-section-inner h2 {
  margin-bottom: 1rem;
}

.service-section-inner p {
  margin-bottom: 1rem;
  max-width: 680px;
}

/* ── INCLUDED GRID ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.included-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  transition: border-color 0.2s, transform 0.2s;
}

.included-card:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
}

.included-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.included-card h3 {
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.included-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── TWO COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── WHO IT'S FOR LIST ── */
.for-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.for-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text);
}

.for-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

/* ── HOW IT WORKS STEPS ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--royal);
  color: var(--on-dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text strong {
  display: block;
  color: var(--heading);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.step-text p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.testimonial-avatar {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--heading);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── FAQ ── */
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading);
  user-select: none;
  gap: 1rem;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem;
  border-top: 1px solid var(--border);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  padding-top: 1rem;
  margin: 0;
}

/* ── CTA SECTION ── */
.service-cta {
  background: var(--royal);
  padding: 80px 5%;
  text-align: center;
}

.service-cta h2 {
  color: var(--on-dark);
  margin-bottom: 0.8rem;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}