/* ═══════════════════════════════════════════════════════════════
   Specialty Insurance SC — main.css
   Dark tactical theme. #0a0a0a bg, #00ff41 neon green accent.
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-3:         #1a1a1a;
  --bg-4:         #222222;
  --bg-dark:      #0a0a0a;
  --bg-darker:    #050505;
  --green:        #00ff41;
  --green-dim:    #00cc34;
  --green-glow:   rgba(0, 255, 65, 0.12);
  --green-border: rgba(0, 255, 65, 0.25);
  --accent:       #00ff41;
  --accent-glow:  rgba(57, 255, 20, 0.3);
  --text:         #e0e0e0;
  --text-primary: #ffffff;
  --text-muted:   #888888;
  --text-dim:     #555555;
  --white:        #ffffff;
  --border:       rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.04);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --header-h:     96px;
  --radius:       4px;
  --radius-lg:    8px;
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-green: 0 0 20px rgba(0, 255, 65, 0.15);
  --transition:   0.2s ease;
  --container:    1280px;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--white); font-weight: 600; }
em { color: var(--green); font-style: normal; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

.section { padding-block: 4rem; }
@media (min-width: 768px) { .section { padding-block: 6rem; } }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.7;
}
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.2;
}
.btn-primary {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dim);
  border-color: var(--green-dim);
  color: #000;
  box-shadow: var(--shadow-green);
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green-border);
}
.btn-secondary:hover {
  background: var(--green-glow);
  border-color: var(--green);
  color: var(--green);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--white);
  color: var(--white);
}
.btn-sm { font-size: 0.8rem; padding: 0.5rem 1.1rem; }
.btn-lg { font-size: 1.05rem; padding: 0.85rem 2rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 96px;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

/* Logo */
.site-branding { flex-shrink: 0; }
.site-logo-link,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.site-logo-img,
.custom-logo {
  height: 64px;
  width: auto;
  max-width: 220px;
  max-height: 64px;
  display: block;
  object-fit: contain;
}
.mobile-logo-icon {
  height: 48px !important;
  width: 48px !important;
  object-fit: contain;
}
.footer-logo-img {
  height: 84px;
  width: auto;
  max-width: 240px;
  max-height: 84px;
  display: block;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
.text-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-specialty {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.logo-insurance {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

/* Desktop Nav */
.main-nav { flex: 1; display: none; position: relative; }
@media (min-width: 1024px) { .main-nav { display: flex; } }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
  justify-content: flex-end;
  position: relative;
}
.nav-item { position: relative; }
.nav-item.mega-menu { position: static; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-toggle { background: none; border: none; }
.nav-link:hover, .nav-item:hover > .nav-link, .nav-item:focus-within > .nav-link {
  color: var(--green);
  background: var(--green-glow);
}
.nav-item.is-open > .nav-link {
  color: var(--green);
  background: var(--green-glow);
}
.chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--text-muted);
}
.nav-item:hover .chevron,
.nav-item:focus-within .chevron,
.nav-item.is-open .chevron { transform: rotate(180deg); color: var(--green); }

/* Dropdown bridge (invisible hover gap) */
.dropdown-bridge {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  min-width: 220px;
  z-index: 100;
}
.mega-menu .dropdown-bridge {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1140px, calc(100vw - 2rem));
  min-width: 0;
  padding-top: 0.5rem;
  display: none;
}
.nav-item:hover .dropdown-bridge,
.nav-item:focus-within .dropdown-bridge,
.nav-item.is-open .dropdown-bridge { display: block; }

/* Dropdown menus */
.dropdown-menu {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 0.5rem;
}
.dropdown-menu li a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background: var(--green-glow);
  color: var(--green);
}

/* Mega menu */
.dropdown-mega {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
  width: 100%;
  min-width: 0;
  align-items: start;
}
@media (max-width: 1439px) {
  .dropdown-mega {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1180px) {
  .dropdown-mega {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mega-heading {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  margin-top: 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--green-border);
}
.mega-col ul { display: flex; flex-direction: column; gap: 0.15rem; }
.mega-col li a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text);
  border-radius: 2px;
  transition: color var(--transition);
  border: none;
  background: none;
  white-space: normal;
}
.mega-col li a:hover { color: var(--green); background: none; padding-left: 4px; }

/* Header CTA */
.header-cta { margin-left: auto; flex-shrink: 0; display: none; }
@media (min-width: 1024px) { .header-cta { display: block; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: var(--radius);
  transition: background var(--transition);
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger:hover { background: var(--green-glow); }
.ham-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.is-active .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active .ham-bar:nth-child(2) { opacity: 0; }
.hamburger.is-active .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 92vw);
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { right: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  backdrop-filter: blur(2px);
}
.mobile-overlay.is-active { display: block; }

.mobile-menu-inner { display: flex; flex-direction: column; min-height: 100%; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  color: var(--text-muted);
  padding: 0.25rem;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.mobile-close:hover { color: var(--white); }

.mobile-nav { flex: 1; padding: 1rem 0; }
.mobile-nav-list { list-style: none; }
.mobile-nav-item { border-bottom: 1px solid var(--border-light); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.mobile-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
}
.mobile-nav-link:hover { color: var(--green); background: var(--green-glow); }
.mobile-nav-link .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.mobile-nav-link .arrow svg {
  display: block;
}
.mobile-nav-item.is-open .arrow {
  transform: rotate(180deg);
  color: var(--green);
}

.mobile-sub-menu {
  display: none;
  background: var(--bg-3);
  list-style: none;
}
.mobile-nav-item.is-open .mobile-sub-menu { display: block; }
.mobile-sub-menu li a {
  display: block;
  padding: 0.55rem 1.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.mobile-sub-menu li a:hover { color: var(--green); background: var(--green-glow); }
.mobile-sub-heading {
  display: block;
  padding: 0.6rem 1.75rem 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.75;
}

.mobile-cta { padding: 1.25rem; border-top: 1px solid var(--border); margin-top: auto; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,255,65,0.04) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--green-border);
  border-radius: 2px;
  background: var(--green-glow);
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--green); }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.trust-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--green-border);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Industry / Coverage grids */
.industries-grid,
.coverage-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media (min-width: 768px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .coverage-grid   { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
}

.industry-card, .coverage-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.industry-card:hover, .coverage-card:hover {
  border-color: var(--green-border);
  background: var(--bg-3);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}
.industry-card-icon, .coverage-card-icon {
  font-size: 2rem;
  line-height: 1;
}
.industry-card-name, .coverage-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.industry-card-link, .coverage-card-link {
  font-size: 0.78rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Feature grid (3-up) */
.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.feature-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  color: var(--green);
  line-height: 0.8;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: var(--green-border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--green);
  transition: transform var(--transition);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer { display: block; }

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--white);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: var(--bg-2); }

.sisc-quote-form .btn { margin-top: 0.5rem; }
.form-success {
  padding: 1.25rem;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  color: var(--green);
  font-weight: 600;
}

/* ─── BLOG ───────────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.post-card:hover { border-color: var(--green-border); transform: translateY(-2px); }
.post-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-3); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.03); }
.post-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.post-category { color: var(--green); font-weight: 600; }
.post-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.post-card-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.post-card-link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.post-card-link:hover { color: var(--white); }

.blog-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.blog-content {
  min-width: 0;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  margin: 0 0.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  background: var(--bg-2);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  color: var(--white);
  border-color: var(--green-border);
  background: var(--green-glow);
}

@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

/* Single post */
.post-header { padding-block: 4rem 2rem; }
.post-header .post-meta { margin-bottom: 1rem; }
.post-header h1 { margin-bottom: 1.5rem; }
.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 72ch;
}
.post-content h2,
.post-content h3 { margin-block: 2rem 0.75rem; }
.post-content p { margin-bottom: 1.5rem; }
.post-content ul,
.post-content ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content blockquote {
  border-left: 3px solid var(--green);
  padding: 1rem 1.5rem;
  background: var(--bg-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
}
.post-author-box {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.author-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.author-bio { font-size: 0.9rem; color: var(--text-muted); }

/* ─── PAGE-SPECIFIC: COVERAGE ───────────────────────────────── */
.coverage-hero {
  padding-block: 5rem 3rem;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.coverage-body { display: grid; gap: 3rem; }
@media (min-width: 1024px) {
  .coverage-body { grid-template-columns: 2fr 1fr; }
}
.coverage-details h2 { margin-bottom: 1rem; }
.coverage-details h3 { margin-top: 2rem; margin-bottom: 0.75rem; color: var(--green); }
.coverage-sidebar {}
.sidebar-cta {
  background: var(--bg-2);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.sidebar-cta h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.sidebar-cta p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ─── PAGE-SPECIFIC: CONTACT ────────────────────────────────── */
.contact-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.contact-info-text h4 { color: var(--white); margin-bottom: 0.25rem; font-size: 1rem; }
.contact-info-text p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* ─── PAGE-SPECIFIC: INDUSTRY ───────────────────────────────── */
.industry-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-2);
}
.industry-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.industry-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 100%);
}
.industry-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
  width: 100%;
}

/* ─── 404 ────────────────────────────────────────────────────── */
.error-404 {
  min-height: calc(100vh - var(--header-h) - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 6rem;
}
.error-404 .error-code {
  font-family: 'Inter', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  opacity: 0.15;
  display: block;
}
.error-404 h1 { margin-top: -2rem; margin-bottom: 1rem; }
.error-404 p { color: var(--text-muted); max-width: 45ch; margin-inline: auto; margin-bottom: 2rem; }

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-2);
  border-top: 1px solid var(--green-border);
  border-bottom: 1px solid var(--border);
  padding-block: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,255,65,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .section-title { margin-bottom: 0.75rem; }
.cta-band p { color: var(--text-muted); margin-bottom: 2rem; max-width: 55ch; margin-inline: auto; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── SECTION ALTERNATES ─────────────────────────────────────── */
.bg-alt { background: var(--bg-2); }
.bg-alt-3 { background: var(--bg-3); }
.green-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-border), transparent);
  margin-block: 0;
}

/* ─── PHONE / EMAIL ──────────────────────────────────────────── */
.phone-link, .email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 600;
}
.phone-link:hover, .email-link:hover { color: var(--white); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-main { padding-block: 4rem; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr; } }

.footer-col {}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.35rem;
}
.footer-logo .logo-specialty {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-logo .logo-insurance {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover { color: var(--green); border-color: var(--green-border); background: var(--green-glow); }

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
  line-height: 1.45;
}
.footer-links a:hover { color: var(--green); }

.footer-address { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-address p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.footer-address .company-name { font-weight: 600; color: var(--text); }
.footer-address a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-address a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: currentColor;
  opacity: 0.9;
}
.footer-address a:hover { color: var(--green); }
.footer-cta-block { margin-top: 1.25rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.copyright { font-size: 0.8rem; color: var(--text-dim); margin: 0; }
.footer-disclosure {
  flex: 0 0 100%;
  max-width: 72rem;
}
.footer-disclosure p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.footer-disclosure a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-disclosure a:hover { color: var(--green); }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-left: auto;
  justify-content: flex-end;
  text-align: right;
}
.legal-nav a { font-size: 0.8rem; color: var(--text-dim); transition: color var(--transition); }
.legal-nav a:hover { color: var(--green); }

@media (max-width: 767px) {
  .legal-nav {
    margin-left: 0;
    justify-content: flex-start;
    text-align: left;
  }
}

.license-page-intro {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.license-page-intro p {
  margin: 0;
}

.license-callout {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.license-callout p {
  margin: 0;
  color: var(--text);
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  list-style: none;
  padding: 0;
}

.license-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  line-height: 1.3;
}

.license-item::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.35);
  flex-shrink: 0;
}

/* ─── UTILITY ────────────────────────────────────────────────── */
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.d-none { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.no-posts { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
.no-posts h2 { color: var(--text-muted); margin-bottom: 1rem; }

/* ─── RESPONSIVE TWEAKS ──────────────────────────────────────── */
@media (max-width: 767px) {
  .section { padding-block: 3rem; }
  .section-title { font-size: 1.75rem; }
  .hero { min-height: auto; }
  .hero-content { padding-block: 3.5rem; }
  .hero-title { font-size: 2.5rem; }
  .footer-main { padding-block: 2.5rem; }
}

/* ─── WP ADMIN BAR OFFSET ────────────────────────────────────── */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — EXTENDED STYLES
   ═══════════════════════════════════════════════════════════════ */

:root { --accent: #00ff41; }

/* ─── SHARED HOME SECTIONS ───────────────────────────────────── */
.section-padding { padding-block: 5rem; }
@media (min-width: 768px) { .section-padding { padding-block: 7rem; } }
.section-dark-alt { background: var(--bg-2); }
.text-accent {
  color: var(--green);
  text-shadow:
    0 0 16px rgba(0, 255, 65, 0.8),
    0 0 32px rgba(0, 255, 65, 0.4),
    0 0 64px rgba(0, 255, 65, 0.2);
}
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin-inline: auto; }

/* ─── HERO (HOME MONTAGE) ────────────────────────────────────── */
.hero-montage {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero-video-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Home montage only — scoped to the stack container */
.hero-video-stack .hero-video {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video-current { opacity: 0.35; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,255,65,0.03) 100%
  );
}
.hero-montage .hero-content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green-border);
  background: var(--green-glow);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 7.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title-accent {
  color: var(--green);
  text-shadow:
    0 0 20px rgba(0, 255, 65, 0.9),
    0 0 40px rgba(0, 255, 65, 0.6),
    0 0 80px rgba(0, 255, 65, 0.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(224,224,224,0.8);
  max-width: 56ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn-ghost.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 2rem 0 0;
}
.stat-item:first-child { padding-left: 0; }
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  margin-right: 2rem;
  flex-shrink: 0;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green), transparent);
  margin-inline: auto;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ─── INDUSTRIES SECTION ─────────────────────────────────────── */
.section-industries {}
.industries-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }

.industry-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  color: inherit;
}
.industry-card:hover {
  border-color: var(--green-border);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
  color: inherit;
}
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}
.industry-card-icon { font-size: 2rem; line-height: 1; }
.industry-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.industry-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.card-arrow {
  margin-top: 0.5rem;
  color: var(--green);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
  display: flex;
}
.industry-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

.hub-page-shell {
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.hub-cards-section {
  background: var(--bg);
  padding-top: 0.75rem;
  overflow: visible;
}

.section-action-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.section-action-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── WHY US SECTION ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition);
}
.why-card:hover { border-color: var(--green-border); }
.why-icon {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-inline: auto;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover .why-icon {
  background: var(--green-glow);
  border-color: var(--green-border);
  box-shadow: 0 0 0 1px rgba(0, 255, 65, 0.08);
}
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── COVERAGES SECTION ──────────────────────────────────────── */
.coverages-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .coverages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .coverages-grid { grid-template-columns: repeat(3, 1fr); } }

.coverage-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.coverage-card:hover {
  border-color: var(--green-border);
  transform: translateY(-2px);
}
.coverage-card-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-bottom: 0.25rem;
}
.coverage-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.coverage-card-title a {
  color: var(--white);
  transition: color var(--transition);
}
.coverage-card-title a:hover { color: var(--green); }
.coverage-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.coverage-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
  transition: gap var(--transition);
}
.coverage-learn-more:hover { gap: 0.6rem; color: var(--green); }

/* ─── TESTIMONIALS SECTION ───────────────────────────────────── */
.section-testimonials .testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .section-testimonials .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  color: var(--green);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.72;
  flex: 1;
  margin: 0;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin: 0;
}
.author-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.author-biz { font-size: 0.78rem; color: var(--text-muted); }

/* ─── CTA BLOCK SECTION ──────────────────────────────────────── */
.section-cta { background: var(--bg); }
.cta-block {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 4rem 3rem;
  overflow: hidden;
  text-align: center;
}
.cta-block-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,255,65,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-block-content { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.cta-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 55ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   INDUSTRY PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Hero */
.hero-industry {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.hero-industry .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.35) 65%, rgba(10,10,10,0.5) 100%);
}
.hero-industry .hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  padding-top: 2rem;
  width: 100%;
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero-breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.hero-breadcrumb a:hover { color: var(--green); }
.hero-breadcrumb span[aria-current] { color: var(--green); }

/* Coverage checklist */
.section-industry-content.section-padding {
  padding-bottom: 2.5rem;
}

.section-industry-coverages.section-padding {
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .section-industry-content.section-padding {
    padding-bottom: 3rem;
  }

  .section-industry-coverages.section-padding {
    padding-top: 3rem;
  }
}

.coverage-check-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 640px) { .coverage-check-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .coverage-check-grid { grid-template-columns: repeat(4, 1fr); } }

.coverage-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.45;
}
.check-icon { flex-shrink: 0; margin-top: 1px; }

/* Risks section */
.risks-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) { .risks-layout { grid-template-columns: 1fr 1fr; } }

.risks-text { display: flex; flex-direction: column; gap: 1rem; }
.risks-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin: 0; }
.risks-text .btn { align-self: flex-start; margin-top: 0.5rem; }

.risks-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.risk-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.risk-icon { font-size: 1.4rem; }
.risk-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.risk-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Inline CTA */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg-3);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.cta-inline-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}
.cta-inline-text p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }
.cta-inline-actions { display: flex; flex-wrap: wrap; gap: 1rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   COVERAGE PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

.page-hero {
  padding-block: 4rem 3rem;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.coverage-hero .container { max-width: 860px; }
.page-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-block: 0.75rem 0.75rem;
  line-height: 1.1;
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

#page-content,
.page-content-wrap,
.site-content {
  padding-top: var(--header-h);
}

.page-hero,
.coverage-hero {
  padding-top: calc(var(--header-h) + 2.5rem) !important;
}

.hero-industry .hero-content {
  padding-top: calc(var(--header-h) + 3rem) !important;
}

/* Two-column layout */
.coverage-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .coverage-layout { grid-template-columns: 1fr 300px; }
}

/* Content area */
.coverage-intro {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.coverage-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-block: 2rem 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.coverage-body {
  color: var(--text);
  line-height: 1.8;
}
.coverage-body > *:first-child { margin-top: 0; }
.coverage-body > *:last-child { margin-bottom: 0; }
.coverage-body p,
.coverage-body ul,
.coverage-body ol {
  margin-bottom: 1.25rem;
}
.coverage-body ul,
.coverage-body ol {
  padding-left: 1.25rem;
}
.coverage-section-block {
  margin-top: 2rem;
}
.coverage-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-block: 1.5rem 0.6rem;
}
.coverage-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin-bottom: 2rem;
}
.coverage-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.coverage-points li svg { flex-shrink: 0; margin-top: 2px; }

.coverage-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-block: 2rem;
}
.coverage-note svg { flex-shrink: 0; margin-top: 2px; }
.coverage-note p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}
.coverage-cta-inline {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.coverage-cta-inline h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.coverage-cta-inline p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.coverage-cta-inline .btn { align-self: flex-start; margin-top: 0.5rem; }

/* Sidebar */
.coverage-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-cta-card {
  background: var(--bg-2);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.sidebar-cta-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.sidebar-cta-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.sidebar-widget {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-widget h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-links { display: flex; flex-direction: column; gap: 0.35rem; list-style: none; }
.sidebar-links a {
  display: block;
  padding: 0.4rem 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.sidebar-links a:hover { color: var(--green); background: var(--green-glow); }

/* ═══════════════════════════════════════════════════════════════
   QUOTE FORM — UPDATED STYLES
   ═══════════════════════════════════════════════════════════════ */
.quote-form-header { margin-bottom: 2rem; }
.quote-form-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.quote-form-header p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.65); margin: 0; max-width: 65ch; }
.form-group label .required { color: var(--green); margin-left: 1px; }
/* Quote page layout */
.quote-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .quote-layout { grid-template-columns: 1fr 320px; } }
.quote-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.quote-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.trust-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.trust-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.trust-list { display: flex; flex-direction: column; gap: 0.65rem; list-style: none; }
.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.contact-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
}
.contact-phone:hover { color: var(--white); }
.contact-hours { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; }
.testimonial-mini {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.testimonial-mini p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
  margin-block: 0.5rem;
}
.testimonial-author-mini { font-size: 0.78rem; color: var(--text-dim); }
.form-success-large {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.success-icon { font-size: 3rem; }
.form-success-large h2 { color: var(--green); margin: 0; }
.form-success-large p { color: var(--text-muted); max-width: 45ch; margin: 0; }

/* ─── CLAIMS PAGE LAYOUT ───────────────────────────────────── */
.claims-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.claims-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.claims-process,
.claims-form-section {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.claims-process h2,
.claims-form-section h2 {
  margin-top: 0;
}

.claims-form-section > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.claims-form-section .form-grid {
  display: grid;
  gap: 1rem;
}

.claims-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.emergency-contact-card,
.claims-tips {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.emergency-contact-card {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.emergency-contact-card h3,
.claims-tips h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
}

.contact-detail + .contact-detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.claims-tips ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.claims-tips li {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── DEFAULT PAGE LONGFORM ─────────────────────────────────── */
.page-article {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.page-content {
  color: var(--text);
  line-height: 1.8;
}

.page-content > *:first-child { margin-top: 0; }
.page-content > *:last-child { margin-bottom: 0; }

.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--green);
  line-height: 1.2;
}

.page-content h2 strong,
.page-content h3 strong,
.page-content h4 strong {
  color: inherit;
}

.page-content p strong,
.page-content li strong {
  color: var(--green);
  font-weight: 700;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.page-content p,
.page-content ul,
.page-content ol {
  margin-bottom: 1.25rem;
}

.page-content ul,
.page-content ol {
  padding-left: 1.35rem;
}

@media (max-width: 767px) {
  .page-article {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .claims-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 767px) {
  .claims-process,
  .claims-form-section,
  .emergency-contact-card,
  .claims-tips {
    padding: 1.5rem;
  }
}

/* ─── POST BYLINE ────────────────────────────────────────────── */
.post-cats-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.single-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.byline-by { color: var(--text-dim); }
.byline-author {
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.byline-author:hover { color: var(--white); }
.byline-date { color: var(--text-muted); }
.sep { color: var(--text-dim); }
.single-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-block: 0.5rem 0.75rem;
}
.single-excerpt {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ─── SINGLE POST LAYOUT ────────────────────────────────────── */
.single-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.single-content {
  min-width: 0;
}

.single-article {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.single-header,
.single-body,
.single-tags,
.post-navigation {
  padding-inline: 2rem;
}

.single-header {
  padding-top: 2rem;
}

.single-hero-image {
  margin: 0;
  border-block: 1px solid var(--border);
  background: var(--bg-3);
}

.single-hero-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.single-body {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.single-body > *:first-child {
  margin-top: 0;
}

.single-body > *:last-child {
  margin-bottom: 0;
}

.single-body h2,
.single-body h3,
.single-body h4 {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.single-body p,
.single-body ul,
.single-body ol,
.single-body blockquote {
  max-width: 72ch;
}

.single-body ul,
.single-body ol {
  margin: 0 0 1.25rem 1.25rem;
}

.single-body ul {
  list-style: disc;
}

.single-body ol {
  list-style: decimal;
}

.single-body li {
  margin-bottom: 0.55rem;
}

.single-body a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.single-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.single-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--border);
}

.single-tags > span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-3);
}

.tag-badge:hover {
  color: var(--green);
  border-color: var(--green-border);
  background: var(--green-glow);
}

.post-navigation {
  padding-top: 1.75rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border);
}

.post-navigation .nav-links {
  display: grid;
  gap: 1rem;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-3);
  color: var(--white);
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  border-color: var(--green-border);
  box-shadow: var(--shadow-green);
  color: var(--white);
}

.post-navigation .nav-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.post-navigation .nav-title {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.single-sidebar .sidebar-cta-card {
  position: static;
}

.single-sidebar .sidebar-widget {
  padding: 1.5rem;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.recent-posts-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.recent-posts-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.recent-posts-list a {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
}

.recent-posts-list a:hover {
  color: var(--green);
}

.rp-date {
  font-size: 0.78rem;
  color: var(--text-dim);
}

@media (min-width: 1024px) {
  .single-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 3rem;
  }

  .single-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .post-navigation .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .single-header,
  .single-body,
  .single-tags,
  .post-navigation {
    padding-inline: 1.25rem;
  }

  .single-header {
    padding-top: 1.5rem;
  }

  .single-body,
  .post-navigation {
    padding-bottom: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONSOLIDATED FROM overrides.css — HERO / HOME / HUB
   ═══════════════════════════════════════════════════════════════ */

.hero-montage {
  position: relative !important;
  min-height: auto;
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-video-stack {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  overflow: hidden;
}

.hero-video,
.hero-video-current,
#hero-video-a,
video.hero-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  width: auto !important;
  height: auto !important;
  transform: translate(-50%, -50%) !important;
  object-fit: cover !important;
  opacity: 0.5 !important;
  z-index: 0 !important;
}

.hero-overlay,
.hero-bg-overlay {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.18) 100%
  ) !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1200px;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
}

.hero-title-compact {
  font-size: clamp(1.6rem, 4.5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  margin-bottom: 1.25rem !important;
  white-space: normal !important;
}

.page-hero .hero-title,
.hero-industry .hero-title {
  font-size: clamp(1.6rem, 4.5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  margin-bottom: 1.25rem !important;
  white-space: normal !important;
}

.text-glow,
.hero-title-accent {
  text-shadow: none !important;
}

.text-glow::before {
  display: none !important;
}

.hero-title .text-accent,
.text-accent {
  text-shadow:
    0 0 20px rgba(57, 255, 20, 0.8),
    0 0 40px rgba(57, 255, 20, 0.5),
    0 0 80px rgba(57, 255, 20, 0.25);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 50px;
  font-size: 0.6rem !important;
  font-weight: 500;
  color: var(--accent);
  padding: 0.22rem 0.65rem !important;
  letter-spacing: 0.08em !important;
  white-space: nowrap !important;
  margin-bottom: 1.25rem !important;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-home-updated .hero-content {
  align-items: flex-start;
  text-align: left;
  max-width: 1200px;
  padding-top: calc(var(--header-h) + 3.5rem) !important;
  padding-bottom: 3rem !important;
}

.hero-home-updated .hero-title,
.hero-home-updated .hero-subtitle,
.hero-home-updated .hero-actions {
  max-width: 720px;
}

.hero-home-updated .hero-actions,
.hero-home-updated .hero-checkmarks {
  justify-content: flex-start;
}

.hero-checkmarks {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.checkmark-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.section-stats-hero,
.section-stats {
  padding-block: 1.75rem !important;
  background: linear-gradient(180deg, #0d1a0d 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem !important;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number-large {
  font-size: clamp(1.91rem, 4.25vw, 2.975rem) !important;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-shadow: none !important;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-large {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.stat-plus,
.stat-unit {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--accent);
}

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

.industries-grid-all .industry-card-full,
.industries-grid-home .industry-card-full {
  background: #111111 !important;
  opacity: 1 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

a.industry-card-full,
a.industry-card-full.card,
a.industry-card-full.card.card-hover,
.industry-card-full {
  position: relative;
  padding: 2rem 1.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center !important;
  align-items: center !important;
  overflow: visible !important;
}

a.industry-card-full .industry-card-icon,
.industries-grid-all a .industry-card-icon,
.industries-grid-home a .industry-card-icon,
.industry-card-full .industry-card-icon {
  font-size: 2.5rem;
  line-height: 1;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto 0.5rem !important;
  width: 100% !important;
}

a.industry-card-full .industry-card-title,
a.industry-card-full .industry-card-desc,
.industry-card-full .industry-card-title,
.industry-card-full .industry-card-desc {
  text-align: center !important;
  width: 100% !important;
}

.industry-card-full .industry-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.industry-card-full .industry-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.card-hover {
  transition: all 0.22s ease !important;
}

.card-hover:hover {
  transform: translateY(-6px) scale(1.01) !important;
  background: #1e1e1e !important;
  border-color: rgba(0, 255, 65, 0.28) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
}

.industry-card-full::after {
  content: '→';
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #00ff41;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.industry-card-full:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.businesses-slogan {
  text-align: center;
  padding: 3rem 0 0.75rem;
  background: var(--bg, #0d0d0d) !important;
  position: relative !important;
  z-index: 2 !important;
}

.businesses-slogan h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
  opacity: 1 !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.businesses-slogan p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
  opacity: 1 !important;
}

.businesses-filter-band,
.hub-cards-section {
  background: var(--bg, #0d0d0d) !important;
}

.hub-cards-section.section-padding {
  padding-top: 0.75rem !important;
  overflow: visible !important;
}

.hub-cards-section .container,
.hub-cards-section .industries-grid,
.hub-cards-section .industries-grid-all {
  overflow: visible;
}

.hub-cards-section .container {
  padding-top: 0.5rem;
}

@media (max-width: 900px) {
  .stats-grid-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .industries-grid-home {
    grid-template-columns: 1fr;
  }

  .industries-grid-featured {
    grid-template-columns: 1fr;
  }

  .stats-grid-large {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-home-updated .hero-content {
    padding-top: 8rem;
  }

  .section-stats-hero .stats-grid-large {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero-checkmarks {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONSOLIDATED FROM overrides.css — SHARED SECTIONS / FORMS
   ═══════════════════════════════════════════════════════════════ */

.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07) !important;
  margin: 0;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-popular {
  background: rgba(0, 255, 65, 0.15) !important;
  color: #00ff41 !important;
  border: 1px solid rgba(0, 255, 65, 0.35) !important;
}

.badge-new {
  background: transparent !important;
  color: #00ff41 !important;
  border: 1px solid rgba(0, 255, 65, 0.5) !important;
}

.section-benefits {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 2rem !important;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 100% !important;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 65, 0.08) !important;
  border: 1px solid rgba(0, 255, 65, 0.18) !important;
}

.benefit-check svg {
  stroke: #00ff41 !important;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefit-text strong {
  font-size: 0.95rem !important;
  color: var(--text-primary);
}

.benefit-text span {
  font-size: 0.82rem !important;
  color: var(--text-muted);
}

.section-why {
  background: #0a0a0a;
  padding: 5rem 0;
}

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

.why-card {
  text-align: center;
  padding: 1.5rem;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.section-testimonials {
  background: var(--bg-dark);
  padding: 5rem 0;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  margin: 0;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-biz {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.section-quote-form {
  background: #0a0a0a;
  padding: 5rem 0;
}

.quote-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.quote-form-intro {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 34rem;
}

.quote-form-intro .section-title,
.quote-form-intro .section-subtitle {
  margin: 0;
}

.quote-form-intro .section-subtitle {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.75;
}

.quote-form-intro .cta-inline-actions {
  margin-top: 0.35rem;
}

.quote-form-intro .btn-ghost {
  align-self: flex-start;
  min-height: 50px;
  padding-inline: 1.25rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.quote-form-intro .btn-ghost:hover {
  background: rgba(57, 255, 20, 0.08);
  border-color: rgba(57, 255, 20, 0.28);
}

.quote-form-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.sisc-gravity-form .gform_wrapper,
.sisc-gravity-form .gform-theme {
  --gf-color-primary: var(--accent);
  --gf-color-primary-rgb: 57, 255, 20;
  --gf-color-primary-contrast: #000;
  --gf-color-primary-contrast-rgb: 0, 0, 0;
  --gf-color-primary-darker: #2de600;
  --gf-color-primary-lighter: #6dff4a;
  --gf-color-secondary: rgba(255, 255, 255, 0.05);
  --gf-color-secondary-rgb: 255, 255, 255;
  --gf-color-secondary-contrast: var(--text-primary);
  --gf-color-secondary-contrast-rgb: 255, 255, 255;
  --gf-color-secondary-darker: rgba(255, 255, 255, 0.08);
  --gf-color-secondary-lighter: rgba(255, 255, 255, 0.08);
  --gf-color-out-ctrl-light: rgba(255, 255, 255, 0.10);
  --gf-color-out-ctrl-light-rgb: 255, 255, 255;
  --gf-color-out-ctrl-light-darker: rgba(255, 255, 255, 0.16);
  --gf-color-out-ctrl-dark: rgba(255, 255, 255, 0.78);
  --gf-color-out-ctrl-dark-rgb: 255, 255, 255;
  --gf-color-out-ctrl-dark-darker: rgba(255, 255, 255, 0.95);
  --gf-color-in-ctrl: rgba(255, 255, 255, 0.05);
  --gf-color-in-ctrl-rgb: 255, 255, 255;
  --gf-color-in-ctrl-contrast: var(--text-primary);
  --gf-color-in-ctrl-contrast-rgb: 255, 255, 255;
  --gf-color-in-ctrl-darker: rgba(255, 255, 255, 0.08);
  --gf-color-in-ctrl-lighter: rgba(255, 255, 255, 0.08);
  --gf-color-in-ctrl-primary: var(--accent);
  --gf-color-in-ctrl-primary-rgb: 57, 255, 20;
  --gf-color-in-ctrl-primary-contrast: #000;
  --gf-color-in-ctrl-primary-contrast-rgb: 0, 0, 0;
  --gf-color-in-ctrl-light: rgba(255, 255, 255, 0.10);
  --gf-color-in-ctrl-light-rgb: 255, 255, 255;
  --gf-color-in-ctrl-light-darker: rgba(255, 255, 255, 0.16);
  --gf-color-in-ctrl-dark: rgba(255, 255, 255, 0.78);
  --gf-color-in-ctrl-dark-rgb: 255, 255, 255;
  --gf-color-in-ctrl-dark-darker: rgba(255, 255, 255, 0.95);
  --gf-ctrl-border-color: rgba(255, 255, 255, 0.10);
  --gf-ctrl-label-color-primary: var(--text-primary);
  --gf-ctrl-label-color-secondary: var(--text-primary);
  --gf-radius: 8px;
}

.sisc-gravity-form .gform_wrapper {
  margin: 0;
}

.sisc-gravity-form .gform_heading {
  display: none;
}

.sisc-gravity-form .gform-body {
  margin-bottom: 1rem;
}

.sisc-gravity-form .gform_fields {
  row-gap: 1.25rem;
}

.sisc-gravity-form .gfield {
  margin-bottom: 0;
}

.sisc-gravity-form .gfield_label,
.sisc-gravity-form .gform-field-label,
.sisc-gravity-form .gform-theme .gfield_label,
.sisc-gravity-form .gform-theme .gform-field-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary) !important;
  margin-bottom: 0.5rem;
}

.sisc-gravity-form .gfield_required,
.sisc-gravity-form .gfield_required_text {
  color: var(--accent) !important;
}

.sisc-gravity-form .gfield_description,
.sisc-gravity-form .gform_description,
.sisc-gravity-form .ginput_counter {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.sisc-gravity-form input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.sisc-gravity-form select,
.sisc-gravity-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 8px;
  color: var(--text-primary) !important;
  -webkit-text-fill-color: var(--text-primary);
  font-size: 1rem;
  box-shadow: none;
}

.sisc-gravity-form input::placeholder,
.sisc-gravity-form textarea::placeholder {
  color: var(--text-dim);
}

.sisc-gravity-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a2acb8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.sisc-gravity-form textarea {
  min-height: 140px;
  resize: vertical;
}

.sisc-gravity-form .gfield textarea,
.sisc-gravity-form .gform_wrapper textarea,
.sisc-gravity-form .gform-theme textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-primary) !important;
  -webkit-text-fill-color: var(--text-primary) !important;
  caret-color: var(--text-primary) !important;
}

.sisc-gravity-form input:not([type="submit"]):not([type="button"]):focus,
.sisc-gravity-form select:focus,
.sisc-gravity-form textarea:focus {
  outline: none;
  border-color: var(--accent) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-primary) !important;
  -webkit-text-fill-color: var(--text-primary) !important;
  caret-color: var(--text-primary) !important;
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.25) !important;
}

.sisc-gravity-form .gfield textarea:focus,
.sisc-gravity-form .gform_wrapper textarea:focus,
.sisc-gravity-form .gform-theme textarea:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-primary) !important;
  -webkit-text-fill-color: var(--text-primary) !important;
  caret-color: var(--text-primary) !important;
}

.sisc-gravity-form .gform_footer,
.sisc-gravity-form .gform-page-footer {
  margin: 1.5rem 0 0;
  padding: 0;
}

.sisc-gravity-form .gform_button,
.sisc-gravity-form .gform-theme-button,
.sisc-gravity-form input[type="submit"],
.sisc-gravity-form .gform-theme .gform_button,
.sisc-gravity-form .gform-theme input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 1rem 1.75rem;
  background: var(--accent) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sisc-gravity-form .gform_button:hover,
.sisc-gravity-form .gform-theme-button:hover,
.sisc-gravity-form input[type="submit"]:hover,
.sisc-gravity-form .gform-theme .gform_button:hover,
.sisc-gravity-form .gform-theme input[type="submit"]:hover {
  background: #4dff2a !important;
  transform: translateY(-2px);
}

.sisc-gravity-form .gform_ajax_spinner {
  filter: brightness(0) saturate(100%) invert(77%) sepia(93%) saturate(1734%) hue-rotate(55deg) brightness(102%) contrast(107%);
}

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

.quote-form .form-group {
  margin-bottom: 1.25rem;
}

.quote-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.quote-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.quote-form textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-form .btn-full {
  width: 100%;
}

.quote-form-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quote-form-benefits li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-industries .section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border: none;
}

.btn-primary:hover {
  background: #4dff2a;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(57, 255, 20, 0.1);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.card:hover,
.card-hover:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55) !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-dark-alt {
  background: var(--bg-dark);
}

.section-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  text-align: center;
}

.section-label-inline {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.check-tick {
  color: var(--accent) !important;
  font-weight: 700;
}

.why-shield-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 12px rgba(57, 255, 20, 0.4));
}

.claims-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 1.5rem 0 2rem;
}

.claim-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.step-number {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.step-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.35rem;
}

.step-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

::selection {
  background: rgba(57, 255, 20, 0.22) !important;
  color: #fff !important;
}

::-moz-selection {
  background: rgba(57, 255, 20, 0.22) !important;
  color: #fff !important;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .quote-form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .quote-form .form-row {
    grid-template-columns: 1fr;
  }
}
