/* ============================================================
   J&B SECURITY SOLUTIONS — MASTER STYLESHEET
   jbsecuritysolution.com
   ============================================================ */

/* ── Google Fonts Import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --navy:       #0D1B2A;
  --midnight:   #1B2D45;
  --orange:     #E8761A;
  --orange-hov: #CC6414;
  --steel:      #C0CBD8;
  --light-bg:   #F7F9FC;
  --white:      #FFFFFF;
  --text-muted: #8A9DB5;
  --border:     rgba(192, 203, 216, 0.15);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.25);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.12);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--steel); line-height: 1.7; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Layout Utilities ────────────────────────────────────── */
.container    { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 2rem; }
.section-pad  { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Utility Classes ─────────────────────────────────────── */
.text-orange { color: var(--orange) !important; }
.text-white  { color: var(--white) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-steel  { color: var(--steel) !important; }


.bg-navy     { background: var(--navy) !important; }
.bg-midnight { background: var(--midnight) !important; }

.mb-0-75 { margin-bottom: 0.75rem !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-1-5 { margin-bottom: 1.5rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-2-5 { margin-bottom: 2.5rem !important; }
.mb-3 { margin-bottom: 3rem !important; }

.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }

.mt-0-5 { margin-top: 0.5rem !important; }

.mt-1 { margin-top: 1rem !important; }
.mt-1-25 { margin-top: 1.25rem !important; }
.mt-2 { margin-top: 2rem !important; }
.mt-2-5 { margin-top: 2.5rem !important; }

.pos-rel { position: relative !important; }
.pos-abs { position: absolute !important; }

.br-lg { border-radius: var(--radius-lg) !important; }
.sh-lg { box-shadow: var(--shadow-lg) !important; }

.font-display { font-family: var(--font-display) !important; }
.fw-900     { font-weight: 900 !important; }
.text-upper  { text-transform: uppercase !important; }

.v-align-mid { vertical-align: middle !important; }
.d-inline    { display: inline !important; }
.mr-0-5      { margin-right: 4px !important; }

.p-3 { padding: 3rem !important; }
.list-disc { list-style: disc !important; margin-left: 1.5rem !important; }

.flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.d-flex { display: flex !important; }
.gap-1  { gap: 1rem !important; }
.wrap   { flex-wrap: wrap !important; }
.w-100  { width: 100% !important; }
.w-0    { width: 0 !important; }

/* TRICKY STYLES */
.border-top { border-top: 1px solid var(--border) !important; }
.border-accent { border: 1px solid rgba(232, 118, 26, 0.25) !important; }
.pt-150 { padding-top: 150px !important; }
.ls-wide { letter-spacing: 0.1em !important; }
.ls-tight { letter-spacing: 0.04em !important; }

/* FONT SIZES */
.fs-0-8 { font-size: 0.8rem !important; }
.fs-0-85 { font-size: 0.85rem !important; }
.fs-0-9 { font-size: 0.9rem !important; }
.fs-1-1 { font-size: 1.1rem !important; }
.fs-1-8 { font-size: 1.8rem !important; }
.fs-2 { font-size: 2rem !important; }

/* Custom Badge Overlay */
.owner-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(13, 27, 42, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 118, 26, 0.4);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.owner-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.owner-badge-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 118, 26, 0.35);
}
.btn-primary:hover {
  background: var(--orange-hov);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 118, 26, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.2rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

/* ── Navigation ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
  padding: 0 2rem;
}

#navbar.scrolled {
  background: rgba(13, 27, 42, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 10px rgba(255,255,255,0.1));
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-text .tagline {
  font-size: 0.65rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links .dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }

.dropdown-menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  color: var(--steel) !important;
  border-radius: 4px;
}
.dropdown-menu a:hover { color: var(--white) !important; background: rgba(255,255,255,0.06); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--orange); }
.nav-phone svg { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 88px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Logo Watermark Background */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vh;
  height: 90vh;
  background: url('/images/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.06;
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.97) 0%,
    rgba(27, 45, 69, 0.88) 50%,
    rgba(13, 27, 42, 0.95) 100%
  );
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.35);
  z-index: 0;
}

/* Diagonal bottom clip */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  background: var(--midnight);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 140px 2rem 120px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 118, 26, 0.15);
  border: 1px solid rgba(232, 118, 26, 0.35);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--steel);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  padding: 1.5rem;
  background: rgba(27, 45, 69, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ── Section Dividers ─────────────────────────────────────── */
.divider-down {
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}
.divider-down svg { display: block; width: 100%; height: 80px; }

/* ── Card Grid ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(27, 45, 69, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(232, 118, 26, 0.3); }
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(232, 118, 26, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }

.card-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.7rem; }

/* ── Stats Section ────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.35rem;
  display: block;
}

/* ── Why J&B Split ────────────────────────────────────────── */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bullet-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.bullet-icon {
  width: 32px; height: 32px;
  background: rgba(232, 118, 26, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.bullet-list h4 { color: var(--white); margin-bottom: 0.25rem; font-size: 1.05rem; }
.bullet-list p  { font-size: 0.9rem; }

/* ── Industries Strip ─────────────────────────────────────── */
.industries-strip {
  background: var(--light-bg);
  padding: 70px 0;
  position: relative;
}

/* Diagonal clip top/bottom */
.industries-strip::before {
  content: '';
  position: absolute;
  top: -40px; left: 0; right: 0;
  height: 40px;
  background: var(--light-bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.industries-strip::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 0; right: 0;
  height: 40px;
  background: var(--light-bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.industry-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.industry-item span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── Testimonial Cards ────────────────────────────────────── */
.review-summary {
  text-align: center;
  margin-bottom: 3rem;
}

.stars-large {
  font-size: 1.8rem;
  color: #FBB914;
  margin-bottom: 0.5rem;
  display: block;
}

.review-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--steel);
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
}

.review-stars {
  color: #FBB914;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--steel);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.7;
}

.reviewer-info { display: flex; align-items: center; gap: 0.75rem; }

.reviewer-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hov));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
}

.reviewer-name { font-weight: 600; font-size: 0.95rem; color: var(--white); }
.reviewer-type { font-size: 0.8rem; color: var(--text-muted); }

/* ── Service Area ─────────────────────────────────────────── */
.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

.city-pill {
  background: rgba(27, 45, 69, 0.7);
  border: 1px solid rgba(232, 118, 26, 0.3);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  transition: all var(--transition);
}

.city-pill:hover {
  background: rgba(232, 118, 26, 0.15);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active { border-color: rgba(232, 118, 26, 0.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--midnight);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(27, 45, 69, 0.9); }
.faq-item.active .faq-question { background: rgba(232, 118, 26, 0.08); }

.faq-question-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  padding-right: 1rem;
}

.faq-icon {
  width: 28px; height: 28px;
  background: rgba(232, 118, 26, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(13, 27, 42, 0.5);
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.75;
}

.faq-answer-inner a { color: var(--orange); transition: color var(--transition); }
.faq-answer-inner a:hover { color: var(--white); }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 118, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p   { font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 2rem 100px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--midnight) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(232, 118, 26, 0.12) 0%, transparent 60%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--navy);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero .content   { position: relative; z-index: 1; }
.page-hero h1         { color: var(--white); margin-bottom: 1rem; }
.page-hero .hero-sub  { max-width: 640px; margin: 0 auto 2rem; }

/* ── What We Provide (service pages) ─────────────────────── */
.provides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.provide-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
}

.provide-item:hover { border-color: rgba(232, 118, 26, 0.3); transform: translateX(4px); }

.provide-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.provide-item strong { color: var(--white); display: block; margin-bottom: 0.25rem; font-size: 1rem; }
.provide-item p { font-size: 0.875rem; margin: 0; }

/* ── Client Types ─────────────────────────────────────────── */
.client-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.client-type-card {
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition);
}

.client-type-card:hover { border-color: rgba(232, 118, 26, 0.35); transform: translateY(-4px); }

.client-type-icon {
  width: 56px; height: 56px;
  background: rgba(232, 118, 26, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin: 0 auto 1rem;
}

.client-type-card h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.client-type-card p  { font-size: 0.85rem; }

/* ── Benefit Strip ────────────────────────────────────────── */
.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  padding: 3rem 2rem;
  background: var(--midnight);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.benefit-item svg { color: var(--orange); }

/* ── Local Context Section ────────────────────────────────── */
.local-context {
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.local-context::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}

.local-context h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.5rem; }
.local-context p  { font-size: 0.95rem; }

/* ── Multi-step Form ──────────────────────────────────────── */
.quote-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.progress-bar-wrap {
  margin-bottom: 2.5rem;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  position: relative;
}

.step-dot::before {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-dot:last-child::before { display: none; }

.dot-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.step-dot.active .dot-circle   { background: var(--orange); border-color: var(--orange); color: var(--white); }
.step-dot.complete .dot-circle { background: #22c55e; border-color: #22c55e; color: var(--white); }

.dot-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}

.step-dot.active .dot-label { color: var(--orange); }

.progress-track {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #f59e0b);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* Form Steps */
.form-step { display: none; }
.form-step.active { display: block; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
}

.checkbox-label:hover { border-color: rgba(232, 118, 26, 0.4); background: rgba(232, 118, 26, 0.05); }
.checkbox-label input[type="checkbox"] { display: none; }

.check-box {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: transparent;
}

.checkbox-label:has(input:checked) .check-box {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.checkbox-label:has(input:checked) {
  border-color: rgba(232, 118, 26, 0.5);
  background: rgba(232, 118, 26, 0.08);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--steel);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  min-height: 44px;
}

.form-control:focus { border-color: var(--orange); }
.form-control::placeholder { color: var(--text-muted); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

/* Radio buttons for armed/unarmed */
.radio-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
  flex: 1;
  justify-content: center;
  font-weight: 500;
}

.radio-label input[type="radio"] { display: none; }
.radio-label:has(input:checked) { border-color: var(--orange); background: rgba(232, 118, 26, 0.1); color: var(--white); }

/* ── Thank You Page ───────────────────────────────────────── */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem;
}

.thank-you-icon {
  width: 80px; height: 80px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(232, 118, 26, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-info-text strong { color: var(--white); display: block; margin-bottom: 0.2rem; }
.contact-info-text span   { font-size: 0.9rem; color: var(--steel); }

/* ── Location Pages ───────────────────────────────────────── */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  font-weight: 500;
  color: var(--steel);
  font-size: 0.95rem;
}

.service-list-item svg { color: var(--orange); flex-shrink: 0; }

/* ── About Page ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--midnight), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.25rem; }
.team-info .role { color: var(--orange); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; display: block; }
.team-info p { font-size: 0.875rem; }

/* ── Industries Page ──────────────────────────────────────── */
.industry-card-detail {
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  transition: all var(--transition);
}

.industry-card-detail:hover { border-color: rgba(232, 118, 26, 0.3); }

.industry-icon-lg {
  width: 72px; height: 72px;
  background: rgba(232, 118, 26, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.industry-card-detail h3     { color: var(--white); margin-bottom: 0.75rem; font-size: 1.6rem; }
.industry-card-detail p      { font-size: 0.95rem; margin-bottom: 1rem; }
.industry-card-detail ul li  {
  font-size: 0.875rem;
  color: var(--steel);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.industry-card-detail ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* ── Testimonials Page ────────────────────────────────────── */
.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  background: #080f18;
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding: 0 2rem 50px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-logo img { 
  height: 80px !important; 
  width: auto !important; 
  max-width: 200px !important;
  object-fit: contain; 
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.1); 
}
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.footer-address {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.8;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 0.75rem;
  transition: color var(--transition);
}
.footer-phone-link:hover { color: var(--white); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-city-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
}

.footer-license {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

.footer-legal { display: flex; gap: 1.5rem; align-items: center; }
.footer-social { display: flex; gap: 0.75rem; }

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ── Chatbot Widget ───────────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
}

.chat-bubble {
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(232, 118, 26, 0.45);
  transition: all var(--transition);
  position: relative;
}

.chat-bubble:hover { transform: scale(1.1); }

.chat-bubble::before {
  content: '●';
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 14px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--navy);
  font-size: 0;
}

.chat-popup {
  position: absolute;
  bottom: 74px; right: 0;
  width: 300px;
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: none;
}

.chat-popup.open { display: block; animation: slideUp 0.25s ease; }

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

.chat-header {
  background: var(--orange);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-avatar {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-header-info .name  { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.chat-header-info .onl   { font-size: 0.75rem; color: rgba(255,255,255,0.8); }

.chat-body { padding: 1.25rem; }

.chat-message {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.chat-cta-btn {
  display: block;
  text-align: center;
  padding: 0.7rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.chat-cta-btn:hover { background: var(--orange-hov); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ── Section titles ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { color: var(--white); margin-bottom: 0.75rem; }
.section-header p  { max-width: 580px; margin: 0 auto; font-size: 1rem; }
.section-header.light h2 { color: var(--navy); }
.section-header.light p  { color: #5a6a7e; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--orange); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--text-muted); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .client-types     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner     { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .why-split        { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .industry-card-detail { grid-template-columns: 1fr; }
  .testimonials-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 70px 0; }
  .services-grid    { grid-template-columns: 1fr; }
  .provides-grid    { grid-template-columns: 1fr; }
  .client-types     { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .hero-content     { padding: 130px 1.25rem 100px; }
  .quote-form-wrapper { padding: 1.75rem; }
  .team-grid        { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .checkbox-grid    { grid-template-columns: 1fr; }
  .radio-group      { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
}
