/* ==========================================================================
   ABSOLUTE CHIMNEY PROS - SHAREIPA DESIGN SYSTEM
   Exact recreation of ShareIPA's modern digital-product visual architecture,
   spacing, floating cards, connecting lines, glowing beams & animations.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Tokens & Design Variables --- */
:root {
  /* Brand Palette */
  --bg-dark: #0D0F12;
  --bg-card: #14171C;
  --bg-card-hover: #181C23;
  --bg-card-inner: #0A0C0F;
  --bg-nav: rgba(18, 21, 26, 0.75);
  
  --text-ivory: #FAF8F5;
  --text-stone: #E9E5DE;
  --text-gray: #8C8F96;
  --text-muted: #5A5D64;
  
  --accent-bronze: #C5A059;
  --accent-bronze-hover: #D8B26B;
  --accent-bronze-glow: rgba(197, 160, 89, 0.35);
  --accent-bronze-dim: rgba(197, 160, 89, 0.12);
  --accent-bronze-border: rgba(197, 160, 89, 0.25);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-dashed: rgba(197, 160, 89, 0.28);
  --divider: rgba(255, 255, 255, 0.06);

  --color-success: #10B981;
  --color-danger: #EF4444;

  /* Typography */
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Cinzel', serif;

  /* Dimensions */
  --max-w: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  
  /* Mouse spotlight defaults */
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-size: 260px;
  --spotlight-opacity: 0;
  --border-width: 2px;
}

/* --- Reset & Global Baseline --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-stone);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-stone);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Subtle atmospheric background grid & glows (Direct ShareIPA visual depth) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(197, 160, 89, 0.11), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(197, 160, 89, 0.05), transparent 60%);
  background-size: 24px 24px, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: -1;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- Typography & Gradient Shine --- */
.text-shine {
  background-image: linear-gradient(
    120deg,
    var(--text-ivory) 20%,
    var(--accent-bronze) 45%,
    var(--accent-bronze-hover) 55%,
    var(--text-ivory) 80%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 4.5s ease-in-out infinite;
}

@keyframes textShine {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: -100% 0; }
}

.serif-headline {
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--accent-bronze-border);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bronze-hover);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-bronze);
  box-shadow: 0 0 10px var(--accent-bronze);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.25); }
}

.section-title {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--text-ivory);
  line-height: 1.16;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--text-gray);
  max-width: 680px;
  line-height: 1.65;
  font-weight: 400;
}

.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 54px;
}

/* ==========================================================================
   01 FLOATING PILL NAVBAR (ShareIPA Capsule Header)
   ========================================================================== */
.navbar-wrapper {
  position: sticky;
  top: 18px;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
  box-sizing: border-box;
}

.navbar-pill {
  pointer-events: auto;
  width: 100%;
  max-width: 1220px;
  height: 60px;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.navbar-pill.scrolled {
  background: rgba(13, 15, 18, 0.92);
  border-color: rgba(197, 160, 89, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
}

/* Brand / Logo (Fixed width anchor, prevents shifting) */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
}

.brand-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.25), rgba(197, 160, 89, 0.05));
  border: 1px solid var(--accent-bronze-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bronze);
  flex-shrink: 0;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-ivory);
  font-family: var(--font-serif);
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-bronze);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Navigation Links Container (Perfect Center Flex) */
.navbar-pill nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin: 0 20px;
  min-width: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.nav-menu li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-stone);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
  white-space: nowrap !important;
  display: inline-block;
  line-height: 1.2;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-ivory);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: var(--accent-bronze);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 8px var(--accent-bronze);
  opacity: 0;
  transition: width 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
  pointer-events: none;
}

/* Subtle temporary glow/underline on hover; disappears immediately when mouse leaves */
.nav-link:hover::after {
  width: 12px;
  opacity: 0.65;
}

/* Permanent gold underline ONLY on the currently active menu item */
.nav-link.active::after {
  width: 18px;
  opacity: 1;
}

/* Nav Actions (Phone Pill + Border Beam CTA Perfectly Aligned) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 38px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-stone);
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
  white-space: nowrap !important;
  box-sizing: border-box;
  text-decoration: none;
  line-height: 1;
}

.nav-phone span {
  white-space: nowrap !important;
}

.nav-phone:hover {
  border-color: var(--accent-bronze);
  color: var(--accent-bronze-hover);
  background: rgba(197, 160, 89, 0.08);
}

.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 6px var(--color-success);
  flex-shrink: 0;
}

/* Navbar specific CTA button height alignment */
.navbar-pill .btn-beam {
  height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap !important;
  box-sizing: border-box;
  line-height: 1;
}

.navbar-pill .btn-beam span {
  white-space: nowrap !important;
}

/* Mobile Toggle & Animated Drawer */
.mobile-toggle {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--text-ivory);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  box-sizing: border-box;
  flex-shrink: 0;
}

.mobile-drawer {
  position: fixed;
  top: 90px;
  left: 16px;
  right: 16px;
  background: rgba(13, 15, 18, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.mobile-drawer.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer .nav-link {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
}

.mobile-drawer .nav-link::after {
  display: none !important;
}

.mobile-drawer .nav-link.active {
  color: var(--accent-bronze) !important;
  font-weight: 600;
  padding-left: 6px;
}

/* ==========================================================================
   BUTTONS & SHAREIPA CONTINUOUS BORDER BEAMS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-bronze) 0%, #A07C34 100%);
  color: #0D0F12;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-bronze-hover) 0%, var(--accent-bronze) 100%);
  box-shadow: 0 6px 28px rgba(197, 160, 89, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-ivory);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-bronze);
  color: var(--accent-bronze-hover);
  transform: translateY(-2px);
}

/* The Signature ShareIPA Animated Border Beam */
.btn-beam {
  position: relative;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: rgba(197, 160, 89, 0.12);
  color: var(--text-ivory);
  border: 1px solid var(--accent-bronze-border);
  isolation: isolate;
}

.btn-beam:hover {
  background: linear-gradient(135deg, var(--accent-bronze) 0%, #9C772F 100%);
  color: #0D0F12;
  box-shadow: 0 0 24px rgba(197, 160, 89, 0.5);
  transform: translateY(-1.5px);
}

.btn-beam:hover .btn-icon {
  transform: translateX(4px);
}

.btn-icon {
  transition: transform 0.2s ease;
}

.border-beam-mask {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  overflow: hidden;
}

.border-beam-spinner {
  position: absolute;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, var(--accent-bronze-hover) 0%, rgba(197, 160, 89, 0.6) 40%, transparent 70%);
  animation: beamSpin 5s linear infinite;
}

@keyframes beamSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg) translate(80px) rotate(0deg); top: 50%; left: 50%; }
  100% { transform: translate(-50%, -50%) rotate(360deg) translate(80px) rotate(-360deg); top: 50%; left: 50%; }
}

/* ==========================================================================
   PARTICLE SPOTLIGHT CARD (Signature ShareIPA Hover Effect)
   ========================================================================== */
.particle-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-size: 260px;
  --spotlight-opacity: 0;
  --border-width: 1.5px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  isolation: isolate;
}

.particle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--border-width);
  background: radial-gradient(
    var(--spotlight-size) circle at var(--mouse-x) var(--mouse-y),
    rgba(197, 160, 89, 0.85) 0%,
    rgba(197, 160, 89, 0.2) 45%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--spotlight-opacity);
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 10;
}

.particle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 160, 89, 0.12);
  border-color: rgba(197, 160, 89, 0.35);
}

.card-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   02 HERO SECTION & TWO LARGE INTERACTIVE CARDS
   (Recreated strictly in ShareIPA's composition, proportions and rhythm)
   ========================================================================== */
.hero-section {
  padding-top: 50px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 420px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.16) 0%, rgba(197, 160, 89, 0.04) 50%, transparent 75%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--accent-bronze-border);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-bronze-hover);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

.hero-title .serif-line {
  font-family: var(--font-serif);
  display: block;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-gray);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 300;
}

/* 3-Step Process Indicator directly below subtitle (Matching ShareIPA) */
.hero-stepper-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 660px;
  margin: 0 auto 44px auto;
  position: relative;
}

.stepper-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.stepper-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-gray);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.stepper-node.active .stepper-num {
  background: linear-gradient(135deg, var(--accent-bronze) 0%, #9C772F 100%);
  color: #0D0F12;
  border-color: var(--accent-bronze-hover);
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.45);
}

.stepper-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.stepper-node.active .stepper-label {
  color: var(--text-ivory);
}

.stepper-line {
  position: absolute;
  top: 17px;
  width: 48%;
  height: 2px;
  border-top: 2px dashed var(--border-dashed);
  z-index: 1;
}

.stepper-line.left { left: 26%; }
.stepper-line.right { right: 26%; }

/* --- TWO LARGE HERO CARDS STAGE WITH SURROUNDING FLOATING LABELS --- */
.hero-cards-stage {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 36px auto;
  z-index: 3;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
}

/* The Large Product-Interface Card */
.hero-feature-card {
  min-height: 420px;
  background: #14171C;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 30px;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 30px rgba(197, 160, 89, 0.15);
}

/* Card Visual Media Box */
.card-media-box {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
  background: #080A0C;
}

.card-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.hero-feature-card:hover .card-media-box img {
  transform: scale(1.05);
  opacity: 1;
}

/* High-tech HUD Overlay on Left Inspection Card */
.card-hud-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 12px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.hud-tag-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-family: monospace;
  color: var(--accent-bronze-hover);
  letter-spacing: 0.08em;
}

.hud-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border: 1px dashed rgba(197, 160, 89, 0.6);
  border-radius: 50%;
  animation: pulseCrosshair 3s infinite ease-in-out;
}

@keyframes pulseCrosshair {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hud-crosshair::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  right: -6px;
  height: 1px;
  background: var(--accent-bronze);
}

.hud-crosshair::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -6px;
  bottom: -6px;
  width: 1px;
  background: var(--accent-bronze);
}

.hud-tag-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-family: monospace;
  color: var(--text-stone);
}

/* Card Content Details */
.card-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-eyebrow-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-bronze-hover);
  text-transform: uppercase;
}

.card-headline {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-ivory);
  line-height: 1.2;
}

.card-supporting {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.55;
  margin-bottom: 12px;
}

.card-btn-wrap {
  margin-top: auto;
}

/* Floating Callout Labels around Hero Cards (Direct ShareIPA pattern) */
.hero-floating-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(18, 21, 26, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-ivory);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  pointer-events: auto;
  z-index: 10;
  animation: floatCallout 4s infinite ease-in-out;
  transition: all 0.3s ease;
}

.hero-floating-callout:hover {
  border-color: var(--accent-bronze-hover);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
  transform: scale(1.05);
}

.callout-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bronze);
  box-shadow: 0 0 6px var(--accent-bronze);
}

/* Specific Positions for Floating Callouts */
.callout-left-1 { top: -16px; left: -24px; animation-delay: 0s; }
.callout-left-2 { bottom: 60px; left: -36px; animation-delay: 1.2s; }
.callout-left-3 { bottom: -18px; left: 60px; animation-delay: 2.1s; }

.callout-right-1 { top: -16px; right: -24px; animation-delay: 0.6s; }
.callout-right-2 { top: 120px; right: -40px; animation-delay: 1.8s; }
.callout-right-3 { bottom: -18px; right: 60px; animation-delay: 2.7s; }

@keyframes floatCallout {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Hero Bottom Trust Pills (Like ShareIPA's # Free Forever row) */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-bronze-hover);
  margin-top: 10px;
}

.hero-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   03 TRUST & METRICS BANNER (Count-Up Animation)
   ========================================================================== */
.metrics-banner {
  background: linear-gradient(180deg, var(--bg-card) 0%, #0F1216 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.metrics-grid,
.metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 44px 0;
  align-items: center;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-dashed), transparent);
}

.metric-val-wrap {
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  font-weight: 800;
  color: var(--text-ivory);
  line-height: 1.1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.metric-suffix {
  color: var(--accent-bronze-hover);
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ==========================================================================
   04 CHIMNEY SERVICE CONFIGURATOR & DIAGNOSTIC STAGE
   ========================================================================== */
.stage-interactive-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  background: rgba(18, 21, 27, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: left;
}

.configurator-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-ivory);
  margin-bottom: 6px;
}

.configurator-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.service-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.service-tab-btn {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-stone);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-tab-btn:hover {
  background: var(--bg-card-hover);
  border-color: rgba(197, 160, 89, 0.35);
  color: var(--text-ivory);
}

.service-tab-btn.active {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--accent-bronze);
  color: var(--accent-bronze-hover);
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.2);
}

.symptom-selector-box {
  background: rgba(20, 23, 28, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 22px;
}

.symptom-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-stone);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.symptom-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.symptom-pill {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-gray);
  transition: all 0.2s ease;
}

.symptom-pill:hover {
  border-color: var(--accent-bronze);
  color: var(--text-ivory);
}

.symptom-pill.selected {
  background: rgba(197, 160, 89, 0.2);
  border-color: var(--accent-bronze);
  color: var(--text-ivory);
}

.diagnostic-display-panel {
  background: #090B0E;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.diag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.diag-visual-wrap {
  position: relative;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.diag-visual-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s ease;
}

.diag-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.spec-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-title {
  font-size: 0.72rem;
  color: var(--text-gray);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.spec-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-ivory);
}

/* ==========================================================================
   05 SERVICES SHOWCASE (8 Product-Style Spotlight Cards)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  height: 100%;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--accent-bronze-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bronze);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--accent-bronze);
  color: #0D0F12;
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.service-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-gray);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-ivory);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features-list li {
  font-size: 0.8125rem;
  color: var(--text-stone);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li svg {
  color: var(--accent-bronze);
  flex-shrink: 0;
}

.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-bronze-hover);
  transition: gap 0.2s ease;
}

.service-card:hover .service-action-link {
  gap: 12px;
}

/* ==========================================================================
   06 FEATURE STORYTELLING SECTIONS
   ========================================================================== */
.feature-showcase-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-media-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.feature-media-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-media-wrap:hover img {
  transform: scale(1.03);
}

.feature-hud-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--accent-bronze-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-bronze-hover);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-hud-stat {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--text-ivory);
}

.feature-heading {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-ivory);
  line-height: 1.25;
  margin-bottom: 18px;
}

.feature-lead {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 24px;
}

.feature-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.feature-badge-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-stone);
}

/* ==========================================================================
   07 INTERACTIVE CHIMNEY SYSTEM DIAGRAM
   ========================================================================== */
.chimney-system-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.schematic-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
}

.hotspot-group {
  cursor: pointer;
  transition: all 0.3s ease;
}

.hotspot-pin {
  animation: hotspotPulse 2.5s infinite ease-in-out;
  transform-origin: center;
}

@keyframes hotspotPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hotspot-group:hover .hotspot-circle,
.hotspot-group.active .hotspot-circle {
  fill: var(--accent-bronze-hover);
  filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.9));
}

.system-details-panel {
  display: flex;
  flex-direction: column;
}

.system-component-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-ivory);
  margin-bottom: 14px;
  font-family: var(--font-serif);
}

.system-component-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 22px;
}

.system-meta-box {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 12px;
}

.system-meta-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-bronze);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.system-meta-content {
  font-size: 0.9rem;
  color: var(--text-stone);
}

.system-component-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.sys-comp-btn {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-card-inner);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: all 0.2s ease;
}

.sys-comp-btn:hover {
  color: var(--text-ivory);
  border-color: var(--accent-bronze-border);
}

.sys-comp-btn.active {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--accent-bronze);
  color: var(--accent-bronze-hover);
}

/* ==========================================================================
   08 BEFORE / AFTER INTERACTIVE SLIDER
   ========================================================================== */
.before-after-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 500px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  user-select: none;
}

.before-after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.after-wrapper .before-after-image {
  width: 980px;
  max-width: none;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--accent-bronze-hover);
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.8);
}

.ba-slider-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent-bronze-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bronze-hover);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.ba-pill {
  position: absolute;
  top: 24px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 12;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-pill.pill-before { left: 24px; color: #EF4444; border-color: rgba(239, 68, 68, 0.3); }
.ba-pill.pill-after { right: 24px; color: var(--accent-bronze-hover); border-color: var(--accent-bronze-border); }

/* ==========================================================================
   09 COMPARISON TABLE (Direct ShareIPA Structure)
   ========================================================================== */
.comparison-container {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 18px 26px;
  text-align: left;
}

.comparison-table th {
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px dashed var(--border-dashed);
}

.comparison-table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.col-feature { width: 46%; }

.col-standard {
  width: 27%;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px dashed var(--border-dashed);
  border-right: 2px dashed var(--border-dashed);
  text-align: center !important;
}

.col-absolute {
  width: 27%;
  background: rgba(197, 160, 89, 0.06);
  border-left: 2px dashed var(--accent-bronze);
  border-right: 2px dashed var(--accent-bronze);
  text-align: center !important;
}

.col-absolute-header {
  color: var(--accent-bronze-hover) !important;
  font-family: var(--font-serif);
}

.comp-check { color: var(--accent-bronze-hover); }
.comp-cross { color: var(--text-muted); }

/* ==========================================================================
   10 REVIEWS, COVERAGE, FAQ & FINAL CTA
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-bronze-hover);
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-stone);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 22px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.coverage-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
}

.coverage-state-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
  text-align: left;
}

.state-col-box {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.state-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-ivory);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.county-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.county-pill {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--text-stone);
  cursor: pointer;
  transition: all 0.2s ease;
}

.county-pill:hover, .county-pill.active {
  border-color: var(--accent-bronze);
  color: var(--accent-bronze-hover);
  background: rgba(197, 160, 89, 0.12);
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item:hover, .faq-item.open {
  border-color: var(--accent-bronze-border);
}

.faq-question {
  width: 100%;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-ivory);
  text-align: left;
}

.faq-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bronze);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.faq-item.open .faq-icon-wrap {
  transform: rotate(45deg);
  background: var(--accent-bronze);
  color: #0D0F12;
}

.faq-answer-container {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer-container {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 26px 22px 26px;
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* Final CTA Card with Ambient Glow */
.final-cta-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card) 0%, #080A0C 100%);
  border: 1px solid var(--accent-bronze-border);
  border-radius: var(--radius-xl);
  padding: 72px 32px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* Footer */
.site-footer {
  background-color: #080A0C;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 36px 0;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-stone);
}

.footer-contact-item svg {
  color: var(--accent-bronze);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
}

/* Request Service Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 9, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: var(--bg-card);
  border: 1px solid var(--accent-bronze-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 34px;
}

.modal-overlay.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-ivory);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-ivory);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-bronze);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* Toast */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--accent-bronze);
  color: var(--text-ivory);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* Scroll Reveals */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* ==========================================================================
   MOBILE & RESPONSIVE REFINEMENT (ShareIPA-Accurate Behavior)
   ========================================================================== */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Desktop 1366px & 1280px Spacing Compression (Keeps 100% on one single horizontal line) */
@media (max-width: 1366px) {
  .navbar-wrapper {
    padding: 0 16px;
  }
  .navbar-pill {
    max-width: 100%;
    padding: 0 14px 0 18px;
    height: 58px;
  }
  .navbar-pill nav {
    margin: 0 12px;
  }
  .nav-menu {
    gap: 15px;
  }
  .nav-link {
    font-size: 0.83rem;
  }
  .brand-title {
    font-size: 0.96rem;
  }
  .brand-sub {
    font-size: 0.60rem;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-phone {
    height: 36px;
    font-size: 0.80rem;
    padding: 0 12px;
    gap: 6px;
  }
  .navbar-pill .btn-beam {
    height: 36px;
    font-size: 0.80rem;
    padding: 0 15px;
    gap: 5px;
  }
}

@media (max-width: 1180px) {
  .navbar-pill nav {
    margin: 0 8px;
  }
  .nav-menu {
    gap: 11px;
  }
  .nav-link {
    font-size: 0.80rem;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-phone {
    height: 35px;
    font-size: 0.76rem;
    padding: 0 9px;
  }
  .navbar-pill .btn-beam {
    height: 35px;
    font-size: 0.76rem;
    padding: 0 12px;
  }
}

/* 1024px and below: Clean switch to mobile navigation before desktop navbar cramps */
@media (max-width: 1024px) {
  .navbar-pill nav,
  .nav-menu,
  .nav-phone,
  .navbar-pill .btn-beam {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
    flex-shrink: 0;
  }
  .navbar-pill {
    height: 54px;
    padding: 0 12px 0 18px;
    justify-content: space-between;
  }
  
  .hero-cards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  /* Hide absolute floating callouts on small screens to prevent overlap */
  .hero-floating-callout {
    display: none !important;
  }
  
  .stage-interactive-grid {
    grid-template-columns: 1fr;
  }
  .feature-block, .feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }
  .chimney-system-container {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .coverage-state-columns {
    grid-template-columns: 1fr;
  }
  .metrics-grid,
  .metrics-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .metric-item:nth-child(2)::after {
    display: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .before-after-wrapper {
    height: 380px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .navbar-wrapper {
    top: 10px;
    padding: 0 12px;
    box-sizing: border-box;
  }
  .navbar-pill {
    height: 52px;
    padding: 0 8px 0 14px;
    width: 100%;
  }
  .brand-title {
    font-size: 0.88rem;
  }
  .brand-icon-wrap {
    width: 30px;
    height: 30px;
  }
  .hero-section {
    padding-top: 20px;
    padding-bottom: 44px;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 4px 12px;
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: clamp(1.45rem, 6.6vw, 1.95rem);
    line-height: 1.15;
    margin-bottom: 12px;
    word-break: normal;
  }
  .hero-title .serif-line {
    font-size: 0.95em;
  }
  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 22px;
    padding: 0 8px;
  }
  .hero-stepper-wrap {
    max-width: 100%;
    margin-bottom: 26px;
    padding: 0 6px;
  }
  .stepper-num {
    width: 26px;
    height: 26px;
    font-size: 0.72rem;
    margin-bottom: 4px;
  }
  .stepper-label {
    font-size: 0.62rem;
    letter-spacing: 0.01em;
    text-align: center;
  }
  .stepper-line {
    display: none; /* Clean appearance on narrow mobile screens */
  }
  .hero-cards-stage {
    padding: 0;
    margin-bottom: 20px;
  }
  .hero-feature-card {
    padding: 18px 14px;
    min-height: auto;
    border-radius: var(--radius-lg);
  }
  .card-media-box {
    height: 160px;
    margin-bottom: 14px;
  }
  .card-headline {
    font-size: 1.15rem;
  }
  .card-supporting {
    font-size: 0.82rem;
    margin-bottom: 10px;
  }
  .metrics-grid,
  .metrics-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0;
  }
  .metric-item::after {
    display: none !important;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-trust-bar {
    gap: 10px;
    font-size: 0.75rem;
  }
  .before-after-wrapper {
    height: 260px;
  }
  .after-wrapper .before-after-image {
    width: 100vw;
  }
}

@media (max-width: 430px) {
  .navbar-wrapper {
    top: 10px;
    padding: 0 10px;
  }
  .navbar-pill {
    height: 52px;
    padding: 0 8px 0 12px;
  }
  .brand-title {
    font-size: 0.88rem;
    gap: 5px;
  }
  .brand-sub {
    font-size: 0.62rem;
  }
  .brand-icon-wrap {
    width: 28px;
    height: 28px;
  }
  .mobile-toggle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 375px) {
  .navbar-wrapper {
    padding: 0 6px;
  }
  .navbar-pill {
    padding: 0 6px 0 10px;
  }
  .brand-title {
    font-size: 0.80rem;
    gap: 4px;
  }
  .brand-sub {
    font-size: 0.56rem;
  }
  .brand-icon-wrap {
    width: 26px;
    height: 26px;
  }
  .mobile-toggle {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 360px) {
  .navbar-wrapper {
    padding: 0 4px;
  }
  .navbar-pill {
    padding: 0 4px 0 8px;
  }
  .brand-title {
    font-size: 0.76rem;
    gap: 3px;
  }
}

/* ==========================================================================
   15 INTERNAL PAGE DESIGN SYSTEM EXTENSIONS
   (Direct extension of Homepage aesthetics, glows, cards & typography)
   ========================================================================== */
.page-hero {
  padding: 64px 0 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-gray);
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

.breadcrumb-link {
  color: var(--text-stone);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--accent-bronze-hover);
}

.breadcrumb-sep {
  color: var(--accent-bronze);
  opacity: 0.7;
}

.spec-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-stone);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
}

.spec-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bronze);
}

/* Detail Split Grid */
.detail-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin: 40px 0;
}

.detail-grid-2.align-start {
  align-items: start;
}

.detail-media-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.detail-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service Process Steps */
.process-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.process-step-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-step-num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--accent-bronze);
  opacity: 0.8;
  margin-bottom: 12px;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 40px 0;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-stone);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--accent-bronze);
  color: var(--accent-bronze-hover);
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.2);
}

/* Legal Document Layout */
.legal-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  margin: 40px 0 80px 0;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.legal-toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.84rem;
}

.legal-toc a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-toc a:hover {
  color: var(--accent-bronze-hover);
}

.legal-content {
  color: var(--text-stone);
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  color: var(--text-ivory);
  margin: 36px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--divider);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content ul {
  margin: 0 0 20px 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Multi-Step Interactive Form (Request Service Page) */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--border-subtle);
  transform: translateY(-50%);
  z-index: 0;
}

.wizard-step-node {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.wizard-step-node.active {
  border-color: var(--accent-bronze);
  background: var(--accent-bronze);
  color: #0D0F12;
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.4);
}

.wizard-step-node.completed {
  border-color: var(--color-success);
  background: var(--color-success);
  color: #fff;
}

.wizard-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.service-choice-card {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.service-choice-card:hover, .service-choice-card.selected {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--accent-bronze);
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.15);
}

.service-choice-card input[type="radio"] {
  display: none;
}

/* 404 Error Center Stage */
.error-stage {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.error-code {
  font-size: clamp(5rem, 15vw, 9rem);
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

/* Responsive Overrides for Internal Layouts */
@media (max-width: 960px) {
  .detail-grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-container {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
    margin-bottom: 24px;
  }
  .wizard-card {
    padding: 24px 18px;
  }
}

@media (max-width: 600px) {
  .process-grid-4 {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 40px 0 32px 0;
  }
  .service-choice-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SERVICE AREAS: INTERACTIVE COVERAGE COMPONENTS
   ========================================================================== */

/* Ambient drift for hero glow */
@keyframes ambientDrift {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-45%, -55%) scale(1.15); }
}

/* Pulse animation for dispatch hub */
@keyframes pulseRing {
  0% { r: 14; opacity: 0.35; }
  70% { r: 28; opacity: 0; }
  100% { r: 28; opacity: 0; }
}

@keyframes pulsePoint {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.45; }
}

.pulse-ring { animation: pulseRing 2.5s ease-out infinite; }
.pulse-point { animation: pulsePoint 2.5s ease-in-out infinite; }

/* Coverage Dashboard Card */
.coverage-dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px 40px 32px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.coverage-dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bronze), transparent);
  opacity: 0.6;
}

.coverage-card-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px auto;
}

.coverage-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-ivory);
  line-height: 1.25;
  margin: 10px 0 12px 0;
  text-transform: uppercase;
}

.coverage-card-subtitle {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 auto;
}

.coverage-card-body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

/* Left Column: Map Frame */
.coverage-map-pane {
  position: relative;
}

.coverage-map-frame {
  background: rgba(15, 18, 22, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.coverage-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
}

.coverage-live-status {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--color-success);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.06em;
}

.coverage-svg-wrapper {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-svg {
  max-width: 340px;
  height: auto;
  display: block;
}

.map-connect-line {
  stroke: rgba(197, 160, 89, 0.25);
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
}

/* Map region hover/active states */
.map-region {
  cursor: pointer;
  transition: fill 0.4s ease, stroke 0.4s ease, filter 0.4s ease;
}

.map-region:hover,
.map-region.active {
  fill: rgba(197, 160, 89, 0.14) !important;
  stroke: rgba(197, 160, 89, 0.75) !important;
  filter: drop-shadow(0 0 14px rgba(197, 160, 89, 0.25));
}

/* Map Nodes & Pills */
.map-node-core {
  fill: rgba(197, 160, 89, 0.35);
  stroke: var(--accent-bronze);
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.map-node-group:hover .map-node-core,
.map-node-group.active .map-node-core {
  fill: var(--accent-bronze);
  stroke: #FFFFFF;
  filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.8));
}

.map-node-pill {
  fill: rgba(15, 18, 22, 0.9);
  stroke: rgba(197, 160, 89, 0.4);
  stroke-width: 1;
  transition: all 0.3s ease;
}

.map-node-group:hover .map-node-pill,
.map-node-group.active .map-node-pill {
  fill: rgba(197, 160, 89, 0.2);
  stroke: var(--accent-bronze-hover);
}

.map-node-text {
  fill: var(--text-ivory);
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 800;
  text-anchor: middle;
  letter-spacing: 1px;
}

/* Location dots */
.location-dot { transition: fill 0.3s ease, opacity 0.3s ease; }
.location-dot.glow {
  fill: rgba(197, 160, 89, 0.95) !important;
  filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.7));
}

/* Right Column: Controls Pane */
.coverage-controls-pane {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.coverage-label-eyebrow {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--accent-bronze);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
}

.coverage-selector-wrap {
  margin-bottom: 4px;
}

.coverage-region-info {
  border-left: 2px solid var(--accent-bronze);
  padding-left: 14px;
}

.coverage-region-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-ivory);
  margin-bottom: 4px;
  transition: opacity 0.25s ease;
}

.coverage-region-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.55;
  margin: 0;
  transition: opacity 0.25s ease;
}

/* County spotlight card grid */
.sa-county-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  min-height: 76px;
}

.sa-county-card {
  position: relative;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(22, 26, 33, 0.6);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  animation: countyCardIn 0.35s ease forwards;
  opacity: 0;
  transform: translateY(6px);
}

@keyframes countyCardIn {
  to { opacity: 1; transform: translateY(0); }
}

.sa-county-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(197, 160, 89, 0.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sa-county-card:hover::before { opacity: 1; }

.sa-county-card:hover {
  border-color: rgba(197, 160, 89, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.1), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.sa-county-card .county-name {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--text-ivory);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
}

.sa-county-card .county-name .loc-marker {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bronze);
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sa-county-card:hover .loc-marker {
  opacity: 1;
  transform: scale(1.4);
}

.sa-county-card .county-state {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  color: var(--accent-bronze);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
  padding-left: 12px;
  opacity: 0.85;
}

/* Communities Box */
.coverage-communities-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.coverage-communities-text {
  font-size: 0.78rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* Card Footer: Lakewood Badge */
.coverage-card-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverage-base-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(197, 160, 89, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-bronze-hover);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.coverage-base-status:hover {
  border-color: var(--accent-bronze);
  background: rgba(197, 160, 89, 0.1);
}

.pulse-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
  display: inline-block;
  animation: pulsePoint 2s infinite ease-in-out;
}

/* Mobile responsive order and sizing for coverage dashboard card */
@media (max-width: 768px) {
  .coverage-dashboard-card {
    padding: 28px 18px 24px 18px;
    border-radius: var(--radius-lg);
  }

  .coverage-card-header {
    margin-bottom: 24px;
  }

  .coverage-card-title {
    font-size: 1.22rem;
  }

  .coverage-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .coverage-selector-wrap {
    order: 1;
  }

  .coverage-map-pane {
    order: 2;
  }

  .coverage-region-info {
    order: 3;
  }

  .coverage-counties-wrap {
    order: 4;
  }

  .coverage-communities-box {
    order: 5;
  }

  .coverage-svg {
    max-width: 280px;
  }

  .sa-county-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .sa-county-grid {
    grid-template-columns: 1fr;
  }
  .service-tab-buttons {
    flex-wrap: wrap;
  }
  .service-tab-btn {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }
}

/* 3-step process layout */
.sa-process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}

.sa-process-card {
  flex: 1;
  max-width: 320px;
  padding: 36px 28px 32px 28px;
  text-align: center;
  position: relative;
}

.sa-step-num {
  font-size: 2.4rem;
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--accent-bronze);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 14px;
}

.sa-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-ivory);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.sa-step-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.sa-step-arrow {
  display: none;
}

.sa-connect-line {
  width: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sa-connect-line::before {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.3), transparent);
}

.sa-connect-line::after {
  content: '→';
  position: absolute;
  color: var(--accent-bronze);
  font-size: 0.9rem;
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 900px) {
  .sa-process-steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .sa-process-card { max-width: 100%; }
  .sa-connect-line {
    width: 1px;
    height: 32px;
    min-width: unset;
  }
  .sa-connect-line::before {
    width: 1px;
    height: 100%;
  }
  .sa-connect-line::after {
    transform: rotate(90deg);
  }
  .sa-county-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sa-county-grid {
    grid-template-columns: 1fr;
  }
}
