/* ═══════════════════════════════════════════════════════════
   GEOFISCALSTATUS — service.css
   Shared styles for all service sub-pages
   ═══════════════════════════════════════════════════════════ */

/* ── SECTION HEADER variants (was repeated as inline styles on every page) ── */
.section-header--flush { text-align: left; margin-bottom: 0; }
.section-header--compact h2 {
  font-family: var(--font-disp); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text); margin-bottom: 12px;
}
.section-header--compact p { font-size: .95rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.section-header--flush.section-header--compact p { max-width: 560px; margin: 0; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 0 36px;
}
.breadcrumb ol {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  list-style: none;
}
.breadcrumb li {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .3px;
}
.breadcrumb li a {
  color: var(--text-muted);
  transition: color var(--t);
}
.breadcrumb li a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(201,162,74,.4); font-size: .65rem; }
.breadcrumb .current { color: var(--gold); }

/* ── BENEFITS ────────────────────────────────────────────── */
.service-benefits {
  padding: 96px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind section */
.service-benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,162,74,.05) 0%, transparent 70%);
  pointer-events: none;
}

.service-benefits .section-inner { position: relative; }

.service-benefits .section-header {
  margin-bottom: 64px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  position: relative;
  background: linear-gradient(145deg, rgba(13,32,55,.9), rgba(9,23,40,.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  overflow: hidden;
}

/* Gold top accent line */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,74,.28);
  box-shadow: 0 20px 56px rgba(0,0,0,.5), 0 0 0 1px rgba(201,162,74,.06);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,74,.2);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* If icon is empty, hide it */
.benefit-icon:empty { display: none; }

.benefit-card h4 {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.benefit-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.service-faq {
  padding: 96px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}

.service-faq .section-inner {
  margin-bottom: 56px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
}

.faq-item[open] {
  border-color: rgba(201,162,74,.22);
  background: rgba(201,162,74,.03);
}

.faq-item + .faq-item { border-top: none; border-radius: 0; }
.faq-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.faq-item:last-child  { border-radius: 0 0 var(--radius) var(--radius); border-top: none; }
.faq-item:only-child  { border-radius: var(--radius); border-top: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t), background var(--t);
  user-select: none;
  -webkit-user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  color: var(--gold);
  background: rgba(201,162,74,.04);
}
.faq-item[open] summary {
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}

/* Chevron icon */
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  color: var(--text-muted);
  transition: transform var(--t), color var(--t);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-item p {
  padding: 22px 28px 26px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ── CTA STRIP ───────────────────────────────────────────── */
.service-cta-strip {
  padding: 88px 36px;
  background: linear-gradient(135deg, var(--navy-card) 0%, var(--navy-deep) 60%);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gold glow top */
.service-cta-strip::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}

/* Subtle pattern */
.service-cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(201,162,74,.06) 0%, transparent 65%);
  pointer-events: none;
}

.service-cta-strip h2 {
  position: relative;
  font-family: var(--font-disp);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
  z-index: 1;
}

.service-cta-strip p {
  position: relative;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
  z-index: 1;
}

.cta-pair {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 1;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .breadcrumb { padding: 0 20px; }
  .service-benefits, .service-faq { padding: 72px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .faq-list { padding: 0 20px; }
  .faq-item summary { padding: 18px 20px; font-size: .875rem; }
  .faq-item p { padding: 16px 20px 20px; }
  .service-cta-strip { padding: 64px 20px; }
  .cta-pair { flex-direction: column; }
}
