/* ── Service Hero ── */
.hero--service {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1635424710928-0544e8512eae?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-2xl);
}
.hero--service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(var(--color-primary-rgb), 0.78) 0%, rgba(var(--color-primary-dark-rgb), 0.65) 55%, rgba(var(--color-primary-rgb), 0.52) 100%);
  z-index: 1;
}
.hero--service::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}
.hero--service .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero--service h1 {
  color: #fff;
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.hero--service .hero-answer {
  color: rgba(255, 255, 255, 0.88);
  max-width: 58ch;
  font-size: var(--font-size-lg);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.hero--service .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  background: rgba(var(--color-accent-rgb), 0.14);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
}
.hero--service .breadcrumb {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
}
.hero--service .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero--service .breadcrumb a:hover { color: var(--color-accent); }
.hero--service .breadcrumb-sep { margin: 0 var(--space-sm); }
.hero--service .hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero--service .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero--service .hero-trust span {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  font-weight: 600;
}
.hero--service .hero-trust i,
.hero--service .hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

/* ── SVG Dividers ── */
.divider-wave svg { fill: var(--color-bg); }
.divider-angle svg { fill: var(--color-bg-alt); }
.divider-curve svg { fill: var(--color-bg); }

/* ── Detail Split Section ── */
.detail-section { background: var(--color-bg); }
.detail-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.detail-split--reverse { grid-template-columns: 1fr 1.15fr; }
.detail-split--reverse .detail-media { order: -1; }
.detail-content h2 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.detail-content .answer-block {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.detail-content .prose {
  max-width: var(--content-width);
  line-height: 1.75;
  color: var(--color-text);
}
.detail-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.detail-media img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.detail-media .floating-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.08);
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

/* ── Materials Grid ── */
.materials-section { background: var(--color-bg-alt); position: relative; }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.material-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-align: center;
}
.material-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.material-card .mat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-accent);
}
.material-card:nth-child(1) .mat-icon { background: var(--color-card-tint-1); }
.material-card:nth-child(2) .mat-icon { background: var(--color-card-tint-3); }
.material-card:nth-child(3) .mat-icon { background: var(--color-card-tint-2); }
.material-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.material-card p {
  color: var(--color-text-light);
  line-height: 1.65;
  font-size: var(--font-size-base);
}
.material-card .mat-stat {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-accent);
  margin-top: var(--space-md);
}

/* ── Process Steps ── */
.process-section { background: var(--color-bg); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  counter-reset: step-counter;
}
.process-step {
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  text-align: center;
  counter-increment: step-counter;
}
.process-step::before {
  content: counter(step-counter);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: var(--space-md) 0 var(--space-sm);
}
.process-step p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ── Why Choose Section ── */
.why-section {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.06);
  pointer-events: none;
}
.why-section h2 { color: #fff; text-wrap: balance; }
.why-section .answer-block {
  color: rgba(255, 255, 255, 0.85);
  border-left-color: var(--color-accent);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.why-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition-base);
}
.why-item:hover { background: rgba(255, 255, 255, 0.1); }
.why-item i, .why-item svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}
.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}
.why-item p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ── FAQ Section ── */
.faq-section { background: var(--color-bg-alt); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: var(--space-md);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: var(--font-size-base);
}
.faq-item.active .faq-answer { display: block; }

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(var(--color-accent-rgb), 0.2) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: var(--space-md); text-wrap: balance; }
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin: 0 auto var(--space-xl);
  font-size: var(--font-size-lg);
  line-height: 1.65;
}

/* ── Related Services ── */
.related-section { background: var(--color-bg-alt); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .detail-split,
  .detail-split--reverse { grid-template-columns: 1fr; gap: var(--space-xl); }
  .detail-split--reverse .detail-media { order: 0; }
  .materials-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .hero--service .hero-actions { flex-direction: column; }
  .hero--service .hero-actions a { width: 100%; text-align: center; }
  .process-timeline { grid-template-columns: 1fr; }
  .hero--service .hero-trust { flex-direction: column; gap: var(--space-md); }
}
