/* =============================================
   SERVICE DETAIL PAGE STYLES
   Linked from all 27 individual service pages
   ============================================= */

/* ── Page hero variant ── */
.page-hero--service {
  min-height: 56vh;
  padding-top: 140px;
  padding-bottom: 80px;
  color: var(--text-inv);
}
.page-hero--service .page-hero-content {
  max-width: 760px;
}
.page-hero--service h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-inv);
  margin: 12px 0 20px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(248,247,244,0.7);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 32px;
}

/* ── Breadcrumb ── */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(248,247,244,0.5);
  margin-bottom: 16px;
}
.svc-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.svc-breadcrumb a:hover { text-decoration: underline; }
.bc-sep { opacity: 0.4; }

/* ── Features section ── */
.svc-features-section {
  padding: 100px 0;
  background: var(--bg);
}
.svc-features-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.svc-feature-card:hover {
  border-color: rgba(194,65,12,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.svc-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: rgba(194,65,12,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #c2410c;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-feature-icon svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  display: block;
  flex-shrink: 0;
}
.svc-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}
.svc-feature-card p {
  font-size: .925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Use cases section (dark) ── */
.use-cases-section {
  padding: 100px 0;
  background: var(--dark);
}
.use-cases-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.use-cases-section .section-header h2,
.use-cases-section .section-header .section-title {
  color: var(--text-inv) !important;
}
.use-cases-section .section-header .eyebrow {
  color: var(--accent) !important;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.use-case-tile {
  background: var(--dark);
  padding: 36px 32px;
  transition: background .25s ease;
}
.use-case-tile:hover { background: var(--dark-2); }
.use-case-tile h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-inv);
  margin: 0 0 10px;
}
.use-case-tile p {
  font-size: .9rem;
  color: rgba(248,247,244,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ── FAQ section ── */
.faq-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}
.faq-item h4 {
  font-size: .975rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.4;
}
.faq-item p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-features-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero--service { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .svc-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .svc-features-section,
  .use-cases-section,
  .faq-section { padding: 64px 0; }
}

/* ── Photo strip ── */
.svc-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 300px;
  gap: 3px;
  overflow: hidden;
}
.svc-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
  display: block;
}
.svc-photo-strip img:hover {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .svc-photo-strip { grid-template-columns: 1fr 1fr; height: 200px; }
  .svc-photo-strip img:last-child { display: none; }
}

/* ── Service page CTA override ── */
.svc-cta-section {
  background: var(--accent);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.svc-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.00) 0px,
    rgba(255,255,255,0.00) 20px,
    rgba(255,255,255,0.025) 20px,
    rgba(255,255,255,0.025) 21px
  );
}
.svc-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.svc-cta-left { }
.svc-cta-left .eyebrow {
  color: #fff;
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
  display: inline-flex;
}
.svc-cta-left h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.svc-cta-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}
.svc-cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 280px;
}
.svc-cta-right .btn {
  width: 100%;
  justify-content: center;
}
.svc-cta-checks {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-cta-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.svc-cta-checks li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .svc-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-cta-right { min-width: 0; width: 100%; }
}
