@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');



/* ══ FAQ SECTION ══ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:first-of-type { padding-top: 0; }
.faq-item:last-of-type { border-bottom: none; padding-bottom: 0; }

.faq-q {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.faq-a a {
  color: var(--primary);
  text-decoration: underline;
}

/* ══ TAG GRID ══ */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

/* ══ CHECK LIST ══ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.check-list li {
  padding: 4px 0 4px 26px;
  position: relative;
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.card-navy .check-list li::before {
  color: #7fb3d8;
}

/* ══ GRID-3 ══ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ══ CARD NAVY ══ */
.card-navy {
  background: var(--navy);
  color: #fff;
  border: none;
}

/* ============================================
   SSI SERVICES — MASTER STYLESHEET
   Design system extracted from Horizons source
   ============================================ */

:root {
  --primary: #0080ba;
  --primary-dark: #006a9e;
  --navy: #1a3a5c;
  --navy-light: #7fb3d8;
  --navy-lighter: #a8cde0;
  --bg: #ffffff;
  --bg-muted: #f4f6f8;
  --text: #1a3a5c;
  --text-muted: #666666;
  --border: #e8edf2;
  --radius: 12px;
  --blog-accent: #3B82F6;
  --blog-stat-bg: #eff6ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.625;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}


/* ── TYPOGRAPHY SCALE ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem;  font-weight: 600; margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem;  font-weight: 600; margin-bottom: 0.5rem; }
p  { font-size: 1rem;     line-height: 1.75; margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-xs { padding: 35px 0; }

@media (max-width: 768px) {
  .section { padding: 35px 0; }
  .section-sm { padding: 35px 0; }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.top-bar {
  background: var(--navy);
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  color: var(--navy-light);
  font-size: 12px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.top-bar-right:hover { color: var(--navy-light); }

.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 2rem;
}

.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
  position: relative;
  z-index: 150;
}

.mobile-nav {
  display: none;
  background: var(--navy);
  padding: 16px 0;
} { display: block; }

.mobile-nav a {
  display: block;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open { display: block; }

.mobile-nav a:hover { color: var(--navy-light); }

/* Nav links tighter at mid-desktop */
@media (max-width: 1280px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 12px; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: clamp(620px, calc(100vh - 165px), 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 16px 150px;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}


.hero-overlay {
  position: absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(15, 28, 58, 0.46) 0%,
    rgba(15, 28, 58, 0.58) 52%,
    rgba(15, 28, 58, 0.76) 100%
  );
}

.hero-inner,
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-36px);
}

.hero-badge,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: #bfd9ee;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.45rem);
  margin-bottom: 16px;
  line-height: 1.05;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-content .hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  max-width: 780px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .hero {
    min-height: 540px;
    padding: 64px 16px 110px;
  }
  .hero-inner,
  .hero-content {
    transform: translateY(-10px);
  }
  .hero-ctas { flex-direction: column; width: 100%; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 52px;
  padding: 0 32px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--navy); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover { background: var(--bg-muted); color: var(--navy); }

.btn svg { width: 20px; height: 20px; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--navy);
  padding: 23px 0;
  position: relative;
  z-index: 10;
  margin-top: -132px;
  border-top: 3px solid var(--primary);
  box-shadow: 0 -24px 50px rgba(26,58,92,0.18);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 4px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  margin-bottom: 4px;
}
.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.trust-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 13px;
  color: var(--navy-light);
}

/* ============ STAT CARDS ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stats-card {
  min-height: 142px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.stats-card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(0,128,186,0.08);
  border: 1px solid rgba(0,128,186,0.14);
  border-radius: 12px;
}

.stats-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.stats-card-value {
  display: block;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
}

.stats-card-label {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-value { font-size: 1.375rem; white-space: nowrap; }
  .trust-label { font-size: 11px; white-space: nowrap; }
}

/* ============ CARDS ============ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: var(--primary); }

.card-navy {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Icon box on dark/navy backgrounds */
.card-navy .card-icon,
.bg-navy .card-icon {
  background: rgba(255,255,255,0.12);
}

/* SVG stroke override for dark bg — XML presentation attrs yield to CSS */
.card-navy .card-icon svg,
.bg-navy .card-icon svg {
  stroke: var(--navy-lighter);
}

/* Icon box in centered sections (services overview, etc.) */
.card-icon-center {
  margin: 0 auto 20px;
}

/* SVG inside card-icon always 24×24, centered */
.card-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.card-icon svg { width: 24px; height: 24px; color: var(--primary); }

/* ============ SERVICE CARDS ============ */
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 16px;
}

.tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  background: var(--bg-muted);
  color: #333;
}


/* ============ GRID LAYOUTS ============ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; }
.col-8 { grid-column: span 8; }
.col-4 { grid-column: span 4; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-12 { grid-template-columns: 1fr; }
  .col-8, .col-4 { grid-column: span 1; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============ CTA SECTIONS ============ */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { color: #fff; margin-bottom: 16px; font-size: 2rem; }
.cta-section p { color: var(--navy-light); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { margin-bottom: 0; }

/* ============ BRAND MARQUEE ============ */
.brands-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: scroll-brands 35s linear infinite;
}

.brands-track:hover { animation-play-state: paused; }

.brand-logo-item {
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.2s;
}

.brand-logo-item:hover { opacity: 1; }

.brand-logo-item img {
  height: 36px;
  width: auto;
  display: block;
}

@keyframes scroll-brands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cta-buttons {
  display: flex !important;
  gap: 16px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.cta-buttons .btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  box-sizing: border-box;
}

/* ============ CALLOUT STRIP ============ */
.callout-strip {
  background: var(--bg-muted);
  border-left: 4px solid var(--primary);
  padding: 48px 0;
}

.callout-strip-white-bg {
  background: #fff;
}

.callout-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 0 32px;
}

.callout-strip h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.callout-strip p { color: var(--text-muted); }

@media (max-width: 768px) {
  .callout-strip-inner { grid-template-columns: 1fr; }
}

/* ============ INDUSTRIES GRID ============ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.industry-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.industry-card svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin: 0 auto 12px;
  display: block;
}

.industry-card span {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 1024px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ SECTION LABELS ============ */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}

.faq-answer.open { display: block; }

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-muted);
}

.blog-card-body { padding: 20px; }

.blog-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============ BLOG POST ============ */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-toc {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.blog-toc h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-toc ol {
  list-style: none;
  counter-reset: toc;
}

.blog-toc li {
  counter-increment: toc;
  margin-bottom: 8px;
}

.blog-toc a {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  padding: 4px 0 4px 12px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.blog-toc a:hover,
.blog-toc a.active {
  color: var(--blog-accent);
  border-left-color: var(--blog-accent);
  background: rgba(59,130,246,0.05);
  padding-left: 16px;
}

.blog-sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--primary);
}

.blog-sidebar-cta h4 { color: #fff; margin-bottom: 8px; }
.blog-sidebar-cta p { color: var(--navy-light); font-size: 14px; margin-bottom: 16px; }


.blog-content { font-size: 1.1rem; line-height: 1.8; color: rgba(26,58,92,0.85); }
.blog-content p { margin-bottom: 1.5rem; }
.blog-content h2 { font-size: 1.75rem; font-weight: 800; margin-top: 3rem; margin-bottom: 1.25rem; scroll-margin-top: 100px; }
.blog-content h3 { font-size: 1.35rem; font-weight: 600; margin-top: 2rem; margin-bottom: 1rem; scroll-margin-top: 100px; }
.blog-content ul { list-style: none; padding-left: 0; margin-bottom: 1.75rem; }
.blog-content li { position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; }
.blog-content li::before { content: "•"; color: var(--blog-accent); position: absolute; left: 0; font-size: 1.4rem; line-height: 1; top: 0.1rem; font-weight: bold; }
.blog-content a { color: var(--blog-accent); text-decoration: underline; text-underline-offset: 4px; font-weight: 500; }

.blog-stat-callout {
  background: var(--blog-stat-bg);
  border-left: 4px solid var(--blog-accent);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
}

.blog-stat-callout strong { color: var(--blog-accent); font-weight: 700; }

.blog-image-caption {
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 2rem;
}

.blog-citation {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.blog-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.blog-meta-bar span { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.blog-meta-bar .cat-tag { color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }

@media (max-width: 1024px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: var(--primary);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(320px, 1.35fr) minmax(440px, 1.8fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-logo { height: 82px; width: auto; margin-bottom: 20px; }

.footer-tagline {
  color: var(--navy-light);
  font-size: 15px;
  line-height: 1.7;
  max-width: 330px;
  margin-bottom: 28px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: #fff;
  background: rgba(0,128,186,0.18);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-social a:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-link-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--navy-light); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-contact-panel {
  min-width: 0;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

.footer-contact-card,
.footer-map-card {
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-light);
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-status svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-phone {
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
}

.footer-locations p { color: var(--navy-light); font-size: 12px; margin-bottom: 4px; }

.footer-map-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-map-card img {
  width: min(100%, 265px);
  height: auto;
  opacity: 0.92;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p { color: var(--navy-light); font-size: 12px; }
.footer-bottom a { color: var(--navy-light); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact-panel { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-tagline {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-link-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .footer-contact-panel { grid-column: auto; }
  .footer-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
  }
  .footer-contact-card,
  .footer-map-card {
    padding: 0;
  }
  .footer-status {
    gap: 6px;
    font-size: 12px;
  }
  .footer-phone {
    font-size: clamp(1.05rem, 4.4vw, 1.25rem);
  }
  .footer-locations p {
    font-size: 11px;
  }
  .footer-map-card {
    justify-content: center;
  }
  .footer-map-card img {
    width: min(100%, 175px);
  }
}
@media (max-width: 420px) {
  .footer-link-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .footer-contact-grid { gap: 10px; }
  .footer-contact-grid { padding: 12px; }
  .footer-contact-card,
  .footer-map-card {
    padding: 0;
  }
  .footer-phone {
    font-size: clamp(1rem, 4.1vw, 1.15rem);
  }
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-navy-light { color: var(--navy-light); }
.bg-navy { background: var(--navy); }
.bg-muted { background: var(--bg-muted); }
.bg-white { background: #fff; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.font-bold { font-weight: 700; }

.link-arrow:hover { color: var(--primary-dark); }
.link-arrow svg { width: 16px; height: 16px; }

/* ============ SVG ICONS (inline) ============ */
.icon { display: inline-block; vertical-align: middle; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 40px; height: 40px; }


/* ============ CARD LINK ALIGNMENT ============ */
.grid-4 .card,
.grid-3 .card {
  display: flex;
  flex-direction: column;
}

.grid-4 .card .link-arrow,
.grid-3 .card .link-arrow {
  margin-top: auto;
}

/* ============ LINK ARROW HOVER ============ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.2s;
}

.link-arrow:hover { border-color: var(--primary); }
.link-arrow svg { width: 16px; height: 16px; }



/* ============ CTA BUTTONS ============ */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.cta-buttons .btn {
  height: 52px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.cta-buttons .btn-primary { background:#0080ba; color:#fff !important; border-color:#0080ba; }
.cta-buttons .btn-primary:hover { background:#006a9e; }
.cta-buttons .btn-outline-white { background:transparent; color:#fff !important; border-color:#fff; }
.cta-buttons .btn-outline-white:hover { background:#fff; color:#1a3a5c !important; }

.cta-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.industry-cta-actions .btn {
  justify-content: center;
}

.three-trades-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.three-trade-item {
  padding: 30px 32px;
  text-align: center;
}

.three-trade-feature {
  grid-column: 1 / -1;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.three-trade-item:nth-child(2) {
  border-right: 1px solid rgba(255,255,255,0.15);
}

.three-trade-item h3 {
  color: #fff;
  margin-bottom: 8px;
}

.three-trade-item p {
  color: var(--navy-light);
  margin: 0;
}

@media (max-width: 820px) {
  .hero-ctas, .cta-buttons { flex-direction: column; align-items: center; }
  .hero-ctas .btn, .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-action-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .cta-action-grid .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-action-grid .btn-outline-white {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255,255,255,0.85);
  }
}

@media (max-width: 640px) {
  .footer-logo {
    height: 88px;
    margin-bottom: 22px;
  }
  .footer-tagline {
    font-size: 16px;
    line-height: 1.65;
    max-width: 420px;
    margin-bottom: 30px;
  }
  .footer-social {
    gap: 14px;
  }
  .footer-social a {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }
  .footer-social svg {
    width: 23px;
    height: 23px;
  }
  .three-trades-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .three-trade-item {
    padding: 24px 18px;
  }
  .three-trade-item h3 {
    font-size: 1.1rem;
  }
  .three-trade-item p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

/* ── Hero: disable fixed attachment on touch devices (iOS Safari) ── */
@media (max-width: 1024px), (hover: none) {
  .hero {
    background-attachment: scroll;
  }

  .trust-strip {
    margin-top: 0 !important;
    box-shadow: none !important;
  }
}

body > header.site-header ~ header.site-header {
  display: none !important;
}


/* ── RESPONSIVE GLOBAL FIXES ── */

/* Prevent any element from breaking viewport width */
section, .card, .card-navy, .hero, .trust-strip, .main-nav, .top-bar {
  max-width: 100%;
}

@media (max-width: 640px) {
  /* Tighter container padding on small screens */
  .container { padding: 0 1rem; }

  /* Scale headings down on small phones */
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }

  /* Trust strip — 2x2 grid, tighter padding */
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-item { padding: 12px 8px; }
  .trust-value { font-size: 1.1rem; }
  .trust-label { font-size: 10px; }
  .trust-icon { width: 24px; height: 24px; }
  .trust-icon svg { width: 13px; height: 13px; }
  .stats-grid { gap: 12px; }
  .stats-card { min-height: 132px; padding: 20px 12px; }
  .stats-card-icon { width: 38px; height: 38px; }
  .stats-card-value { font-size: 1.25rem; }
  .stats-card-label { font-size: 11px; }

  /* Stop hero title wrapping badly */
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; }

  /* Service cards full-width */
  .service-card { padding: 20px; }

  /* Cards stack cleanly */
  .card, .card-navy { padding: 20px; }

  /* Nav inner tighter on phones */
  .main-nav-inner { padding: 12px 1.5rem; }

  /* Section padding reduction */
  .section { padding: 50px 0; }
  .section-sm { padding: 30px 0; }
}

@media (max-width: 390px) {
  .container { padding: 0 0.75rem; }
  .trust-value { font-size: 1rem; }
  h2 { font-size: 1.375rem; }
}

@media (max-width: 900px) {
  .cta-section:last-of-type .cta-action-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .cta-section:last-of-type .cta-action-grid .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============ COMPACT SERVICE CHECK FORM ============ */
.service-check-form {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-check-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: start;
}

.service-check-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  margin-bottom: 28px;
}

.service-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-check-list li {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.service-check-list svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-check-list span {
  color: var(--text-muted);
  line-height: 1.6;
}

.service-check-note {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  background: #f8fafc;
}

.service-check-note strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 4px;
}

.service-check-note span {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-check-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 14px 35px rgba(26, 58, 92, 0.06);
}

.industry-inline-card {
  align-self: start;
  position: sticky;
  top: 110px;
}

.industry-assist-note {
  max-width: 620px;
}

.industry-assist-note a {
  font-weight: 700;
}

.service-check-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.service-check-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-check-inline-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-check-inline-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-check-inline-form label span {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-check-inline-form input,
.service-check-inline-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-check-inline-form textarea {
  min-height: 108px;
  resize: vertical;
}

.service-check-inline-form input:focus,
.service-check-inline-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 128, 186, 0.12);
}

.service-check-inline-form .btn {
  align-self: flex-start;
}

.service-check-inline-form .btn:disabled {
  cursor: wait;
  opacity: 0.75;
}

.service-check-success {
  padding: 14px 16px;
  border-radius: 8px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .service-check-form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .industry-inline-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .service-check-card {
    padding: 22px;
  }

  .service-check-inline-form .form-row {
    grid-template-columns: 1fr;
  }

  .service-check-inline-form .btn {
    width: 100%;
  }
}


/* Codex mobile/tablet CTA stacking fix */
@media (max-width: 900px) {
  .hero-ctas,
  .cta-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: min(100%, 360px);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
  }

  .hero-ctas .btn,
  .cta-buttons .btn,
  .cta-action-grid .btn,
  .cta-section > .container > .btn,
  .cta-section > .container > a.btn {
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    white-space: normal;
    text-align: center;
  }

  .cta-action-grid,
  .industry-cta-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100%, 360px);
    max-width: 360px !important;
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
  }
}


/* Codex tablet CTA stacking breakpoint */
@media (max-width: 1024px) {
  .hero-ctas, .cta-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: min(100%, 360px);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
  }
  .hero-ctas .btn, .cta-buttons .btn, .cta-action-grid .btn, .cta-section > .container > .btn, .cta-section > .container > a.btn {
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    white-space: normal;
    text-align: center;
  }
  .cta-action-grid, .industry-cta-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100%, 360px);
    max-width: 360px !important;
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
  }
}

@media (max-width:1024px){.hero-ctas,.cta-buttons{display:flex!important;flex-direction:column!important;align-items:stretch!important;width:min(100%,360px);max-width:360px;margin-left:auto;margin-right:auto;gap:14px}.hero-ctas .btn,.cta-buttons .btn,.cta-action-grid .btn,.cta-section>.container>a.btn,.cta-section>.container>.btn{width:100%!important;max-width:360px!important;margin-left:auto!important;margin-right:auto!important;justify-content:center!important;white-space:normal;text-align:center}.cta-action-grid,.industry-cta-actions{display:grid!important;grid-template-columns:1fr!important;width:min(100%,360px);max-width:360px!important;margin-left:auto;margin-right:auto;gap:14px}}


/* ============================================
   BOTTOM CTA BUTTON PAIR — permanent mobile fix
   .cta-btn-pair class replaces inline grid styles.
   !important overrides any remaining inline styles.
   ============================================ */
.cta-btn-pair,
.cta-section .container > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .cta-btn-pair,
  .cta-section .container > div {
    grid-template-columns: 1fr !important;
    max-width: min(100%, 360px) !important;
  }
  .cta-btn-pair .btn,
  .cta-section .container > div .btn {
    width: 100% !important;
    justify-content: center !important;
    white-space: normal;
    text-align: center;
  }
}

/* ============================================================
   ANIMATION SYSTEM
   hero-anim  → above-fold entry (keyframe, fires on load)
   sr         → scroll-reveal base (IntersectionObserver)
   sr-in      → revealed state
   banner-in  → mobile banner appears after trust strip
   ============================================================ */

/* -- Hero entry -- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* -- Scroll reveal base -- */
.sr {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  0.52s cubic-bezier(0.22, 1, 0.36, 1) var(--sr-delay, 0ms),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1) var(--sr-delay, 0ms);
}
.sr.sr-in {
  opacity: 1;
  transform: none;
}

/* -- Reduced motion: skip all animations -- */
@media (prefers-reduced-motion: reduce) {
  .hero-anim        { animation: none; opacity: 1; }
  .sr               { opacity: 1; transform: none; transition: none; }
  .sr.sr-in         { opacity: 1; transform: none; }
}

/* -- Banner reveal (mobile/tablet only) -- */
@media (max-width: 1024px) {
  body.has-service-banner .mobile-service-banner {
    /* Start hidden, slide up when .banner-in is added by JS */
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
    transition:
      opacity   0.38s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }
  body.has-service-banner .mobile-service-banner.banner-in {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

/* Service-page-only liquid glass mobile banner */
.mobile-service-banner {
  display: none !important;
}
@media (max-width: 1024px) {
  body.has-service-banner {
    padding-bottom: 82px;
  }
  body.has-service-banner .mobile-service-banner {
    position: fixed;
    left: 50% !important;
    right: auto !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 1000;
    width: min(calc(100% - 24px), 430px);
    min-height: 54px;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 14px;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.42));
    box-shadow: 0 16px 36px rgba(15,28,58,0.24), inset 0 1px 0 rgba(255,255,255,0.68);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
  }
  body.has-service-banner .mobile-service-banner-copy {
    min-width: 0;
    color: var(--navy);
    line-height: 1.18;
  }
  body.has-service-banner .mobile-service-banner-copy strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
  }
  body.has-service-banner .mobile-service-banner-copy span {
    display: block;
    color: rgba(26,58,92,0.72);
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
  }
  body.has-service-banner .mobile-service-banner-call {
    flex: 0 0 auto;
    height: 40px;
    min-width: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 14px;
    background: rgba(0,128,186,0.94);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,128,186,0.28);
  }
  body.has-service-banner .mobile-service-banner-call svg {
    stroke: currentColor;
    fill: none;
  }
}
@media (max-width: 420px) {
  .footer-link-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .footer-contact-grid { gap: 10px; }
}

/* ============================================
   DESKTOP KILL-SWITCH for mobile-service-banner
   Overrides all old brand-banner.css rules
   that leak the banner above 1024px viewport
   ============================================ */
@media (min-width: 1025px) {
  html .mobile-service-banner,
  html body .mobile-service-banner,
  html body.has-service-banner .mobile-service-banner {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* ============ STICKY SIDEBAR ============ */
.col-sticky {
  position: sticky!important;
  top: 100px;
  align-self: start;
}
@media (max-width: 1024px) {
  .col-sticky {
    position: static;
  }
}

/* ============ INDUSTRY GRID 2x3 ============ */
.grid-industry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .grid-industry {
    grid-template-columns: 1fr;
  }
}

/* ============ INDUSTRY GRID — link-arrow pinned to bottom ============ */
.grid-industry .card {
  display: flex;
  flex-direction: column;
}
.grid-industry .card .service-tags {
  flex: 1;
  align-content: flex-start;
}
.grid-industry .card .link-arrow {
  margin-top: 8px;
  align-self: flex-start;
}

.card-stack {
  display: block !important;
}

.card-stack .card {
  display: block !important;
  margin-bottom: 24px !important;
}

.card-stack .card:last-child {
  margin-bottom: 0 !important;
}

/* ==================================================
   WHY SSI CHECK PANEL
   ================================================== */
.why-ssi-panel {
padding-top: 30px;
}


.why-ssi-eyebrow {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.why-ssi-panel h3 {
  color: var(--navy);
  font-size: clamp(1.75rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.why-ssi-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.why-ssi-list li {
  list-style: none !important;
  display: flex !important;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 30px !important;
  padding: 0 !important;
}

.why-ssi-list li::before {
  content: "✓" !important;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(0, 128, 186, 0.12);
  color: var(--primary);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.why-ssi-list li::marker {
  content: "" !important;
}

.why-ssi-icon {
  display: none !important;
}

.why-ssi-list span {
  display: block;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.55;
  max-width: 640px;
}

.why-ssi-list li:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
  .why-ssi-panel {
    padding-top: 28px;
  }

  .why-ssi-panel h3 {
    margin-bottom: 28px;
  }
}



