/* =============================================
   BILLINGHAWK — INNER PAGES SHARED STYLES
   Extends styles.css for service/inner pages
   ============================================= */

/* ---- Page Hero (Inner) ---- */
.page-hero {
  background: linear-gradient(135deg, #020b12 0%, #060d18 45%, #081c1a 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d9488' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.page-hero-bg-shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #0d9488, transparent);
  top: -150px; right: -100px;
}
.page-hero-bg-shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #14b8a6, transparent);
  bottom: -50px; left: 10%;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero-content { }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--color-primary-light); }
.page-breadcrumb svg { width: 12px; height: 12px; }
.page-breadcrumb span { color: var(--color-primary-light); }

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.3);
  color: var(--color-primary-light);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero-tag .tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  animation: blink 2s ease-in-out infinite;
}

.page-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero p.hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.page-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.page-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.page-hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.page-hero-stat .stat-val {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 800;
  color: white;
  display: block;
}
.page-hero-stat .stat-val span { color: var(--color-primary-light); }
.page-hero-stat .stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}

/* Hero Right Panel — Feature List Card */
.page-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(16px);
}
.page-hero-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-feature-list { display: flex; flex-direction: column; gap: 14px; }
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s;
}
.hero-feature-item:hover {
  border-color: rgba(14,165,233,0.3);
  background: rgba(14,165,233,0.06);
}
.hero-feature-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(6,182,212,0.2));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary-light);
  flex-shrink: 0;
}
.hero-feature-icon svg { width: 18px; height: 18px; }
.hero-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: white;
}
.hero-feature-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---- Page Wave Divider ---- */
.page-wave {
  background: linear-gradient(135deg, #060d1f 0%, #0f172a 100%);
  margin-bottom: -2px;
}
.page-wave svg { display: block; width: 100%; }

/* ---- Overview / Intro Section ---- */
.overview-section {
  padding: var(--section-padding) 0;
  background: white;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.overview-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.overview-content p {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 16px;
}
.overview-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.overview-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #1e293b;
  font-weight: 500;
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green), #34d399);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; color: white; }

/* Overview Side Stats */
.overview-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.side-stat-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}
.side-stat-card:hover {
  border-color: rgba(14,165,233,0.3);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.side-stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.side-stat-icon svg { width: 26px; height: 26px; }
.side-stat-icon.blue { background: rgba(14,165,233,0.1); color: var(--color-primary); }
.side-stat-icon.green { background: rgba(16,185,129,0.1); color: var(--color-green); }
.side-stat-icon.orange { background: rgba(245,158,11,0.1); color: var(--color-orange); }
.side-stat-icon.purple { background: rgba(139,92,246,0.1); color: var(--color-purple); }
.side-stat-val {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-navy);
  display: block;
  line-height: 1;
}
.side-stat-lbl { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; display: block; }

/* ---- Process / How It Works ---- */
.how-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.how-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.how-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,165,233,0.2);
}
.how-step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(14,165,233,0.35);
}
.how-card h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.how-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Benefits Grid ---- */
.benefits-section {
  padding: var(--section-padding) 0;
  background: white;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: rgba(14,165,233,0.3);
  background: linear-gradient(135deg, rgba(14,165,233,0.03), rgba(6,182,212,0.03));
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(6,182,212,0.12));
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.benefit-text p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- Dark CTA Band ---- */
.cta-band {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, #0c1a3d 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.12), transparent);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.cta-band-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-band h2 {
  font-family: var(--font-primary);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-band-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Inline Lead Form ---- */
.form-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}
.form-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.form-section-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.form-section-content p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.form-trust-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-navy-light);
  font-weight: 500;
}
.form-trust-item svg { width: 18px; height: 18px; color: var(--color-green); flex-shrink: 0; }

/* ---- FAQ (inner pages) ---- */
.inner-faq-section {
  padding: var(--section-padding) 0;
  background: white;
}

/* ---- Related Services ---- */
.related-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.related-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.1));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.related-icon svg { width: 22px; height: 22px; }
.related-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.related-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.related-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}
.related-link:hover { opacity: 0.75; }

/* ---- Responsive (Inner Pages) ---- */
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-card { display: none; }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .form-section-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 72px 0 48px !important; }
  .page-hero h1 { font-size: 28px; }
  .page-hero-stats { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
}
