:root {
  --red: #c8102e;
  --red-dark: #9a0c23;
  --red-glow: #ff3554;
  --navy: #0b1c35;
  --navy-2: #142a4a;
  --navy-3: #1c3865;
  --white: #ffffff;
  --cream: #f7f8fa;
  --ink: #0a1426;
  --muted: #5b6573;
  --muted-2: #8a94a3;
  --line: rgba(255, 255, 255, 0.1);
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 12px 30px -8px rgba(11, 28, 53, 0.18);
  --shadow-red: 0 18px 40px -12px rgba(200, 16, 46, 0.55);
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--navy);
}

h2 {
  font-size: clamp(32px, 3.6vw, 52px);
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding-top: 92px;
  padding-bottom: 92px;
  position: relative;
}

.surface-section {
  background: var(--cream);
}

.section-head {
  max-width: 760px;
    min-height: 78px;
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 22px 0;
}

.section-head p {
  font-size: 18px;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  margin-bottom: 4px;
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: 999px;
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.list-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.eyebrow.on-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffb3c0;
}

.light-dot,
.light-list .list-dot {
  background: #ffb3c0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-white:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-3);
  transform: translateY(-2px);
}

.arr {
  transition: transform 0.25s;
}

.btn:hover .arr,
.inline-link:hover span,
.svc-footer-link:hover span {
  transform: translateX(4px);
}

.card-surface {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #eef0f3;
  box-shadow: var(--shadow-md);
}

.dark-surface {
  background: rgba(11, 28, 53, 0.92);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.meta-row,
.chip-list,
.section-link-row,
.cta-actions,
.hero-cta-row,
.hero-ctas,
.svc-badges,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-link-row {
  margin-top: 32px;
}

.section-link-row.center {
  justify-content: center;
}

.meta-label,
.meta-subtle,
.chip-list span,
.svc-badges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.meta-label {
  background: rgba(200, 16, 46, 0.12);
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-subtle {
  padding-left: 0;
  color: var(--muted-2);
}

.chip-list span,
.svc-badges span {
  background: rgba(11, 28, 53, 0.06);
  color: var(--navy);
  font-weight: 600;
}

/* Service card badges sit on a dark overlay — must be light */
.svc-feature .svc-badges span,
.svc-mini .svc-badges span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.inline-link,
.svc-footer-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--red);
  transition: gap 0.2s;
}

.inline-link:hover,
.svc-footer-link:hover {
  gap: 12px;
}

.bullet-list,
.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bullet-list li,
.feature-list li,
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.trust-item {
  color: #a9b6cb;
  font-size: 13px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--red-glow);
  flex-shrink: 0;
}

.trust-item b {
  color: #fff;
  font-weight: 600;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: all 0.3s;
}

.nav-bg {
  background: rgba(11, 28, 53, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav.scrolled .nav-bg {
  background: rgba(11, 28, 53, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  order: 1;
  flex-shrink: 0;
}

.brand,
.ft-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  color: #fff;
}

.brand-logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  filter: drop-shadow(0 8px 20px rgba(200, 16, 46, 0.36));
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  box-shadow: 0 8px 20px -4px rgba(200, 16, 46, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
}

.brand-sub {
  margin-top: 4px;
  font-size: 10px;
  color: #9aa6b8;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-cta-center {
  order: 3;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  order: 2;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  inset: auto 0 -6px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  order: 4;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.nav-phone svg,
.sticky-call svg,
.ft-contact svg {
  width: 16px;
  height: 16px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 28, 53, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(200, 16, 46, 0.12);
  color: #fff;
}

.nav-dropdown-menu a::after {
  display: none;
}

.menu-toggle,
.mobile-only-link {
  display: none;
}

.menu-toggle {
  order: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-home {
  padding: 152px 0 100px;
}

.hero-bg,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.page-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img,
.page-hero-media img,
.quote-banner-media img,
.hv-main img,
.hv-sub img,
.svc-feature img,
.svc-mini img,
.content-card-media img {
  object-position: center center;
}

.hero-bg img {
  opacity: 0.6;
  transform: scale(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 28, 53, 0.75) 0%, rgba(11, 28, 53, 0.60) 45%, rgba(11, 28, 53, 0.35) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

.hero-grid-bg,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-grid-bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.page-hero {
  padding: 160px 0 92px;
}

.page-hero-media {
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  transform: none;
}

.page-hero-overlay {
  background: linear-gradient(120deg, rgba(11, 28, 53, 0.9) 0%, rgba(11, 28, 53, 0.8) 45%, rgba(11, 28, 53, 0.58) 100%);
}

.hero-home .hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1,
.page-hero-copy h1 {
  color: #fff;
  margin: 24px 0 24px;
}

.hero-copy h1 {
  font-size: clamp(34px, 3.4vw, 50px);
  max-width: 600px;
  font-weight: 800;
  line-height: 1.08;
}

.hero-copy h1 .accent {
  background: linear-gradient(135deg, var(--red-glow) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy h1 .underline-accent {
  position: relative;
  display: inline-block;
}

.hero-copy h1 .underline-accent::after {
  display: none;
}

.page-hero-copy h1 {
  font-size: clamp(28px, 2.8vw, 48px);
  max-width: 660px;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.lead,
.page-hero-copy p {
  color: #c4d0e0;
  font-size: 19px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-copy .lead {
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-visual {
  position: relative;
  height: 600px;
}

.hv-main,
.hv-sub {
  position: absolute;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.hv-main {
  top: 0;
  left: 0;
  width: 78%;
  height: 72%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hv-sub {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 48%;
  border: 4px solid var(--navy);
}

.hv-main img,
.hv-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hv-rating,
.hv-badge,
.hero-panel {
  position: absolute;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.hv-rating {
  top: 44%;
  right: -10px;
  background: #fff;
  color: var(--navy);
  padding: 18px 22px;
  min-width: 200px;
  animation: hv-float 5s ease-in-out infinite;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.hv-rating:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.hv-rating-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.hv-g {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  color: #4285F4;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.hv-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--navy);
}

.hv-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1.2;
}

.hv-rating .hv-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.hv-badge {
  left: 8%;
  bottom: -20px;
  padding: 16px 20px;
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: hv-float 5s ease-in-out infinite reverse;
}

.hv-ic {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hv-ic svg {
  width: 22px;
  height: 22px;
}

.hv-badge .hv-num {
  font-size: 22px;
  color: #fff;
}

.hv-badge .hv-lbl {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

@keyframes hv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-panel {
  position: relative;
  padding: 30px;
  align-self: end;
}

.hero-panel h3,
.dark-surface h3,
.quote-highlight h3,
.why-card h3,
.footer h4,
.cta-panel h2 {
  color: #fff;
}

.logos {
  padding: 36px 0;
  border-bottom: 1px solid #eef0f3;
}

.logos-inner,
.logos-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.logos-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}

.logo-pill {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #9aa6b8;
  text-decoration: none;
  transition: color 0.2s ease;
}
a.logo-pill:hover { color: #002045; }

.services-showcase {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.svc-showcase {
  display: grid;
  gap: 18px;
}

.svc-feature,
.svc-mini {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.svc-feature {
  min-height: 420px;
}

.svc-mini {
  min-height: 400px;
}

.svc-mini-grid.cols-3 .svc-mini {
  min-height: 440px;
}

.svc-feature img,
.svc-mini img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-feature::after,
.svc-mini::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 28, 53, 0.98) 0%,
    rgba(11, 28, 53, 0.9) 30%,
    rgba(11, 28, 53, 0.55) 55%,
    rgba(11, 28, 53, 0.18) 78%,
    rgba(11, 28, 53, 0.05) 100%
  );
  pointer-events: none;
}

.svc-panel {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: #fff;
  min-height: 100%;
}

.svc-panel-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-kicker {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.svc-title,
.why h2,
.quote-copy,
.cta-panel h2 {
  color: #fff;
}

.svc-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.svc-panel > .svc-kicker {
  flex-shrink: 0;
  align-self: flex-start;
}

.svc-mini .svc-title {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.12;
}

.svc-mini-grid.cols-3 .svc-mini .svc-title {
  font-size: clamp(20px, 1.8vw, 24px);
}

.svc-summary {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 16px;
  line-height: 1.55;
  font-size: 15px;
}

.svc-mini .svc-summary {
  font-size: 14px;
  line-height: 1.6;
}

.svc-panel .svc-badges {
  margin-bottom: 16px;
}

.svc-mini-grid {
  align-items: stretch;
}

.page-home .hero-bg img {
  object-position: center 34%;
}

.page-home .hv-main img {
  object-position: center 28%;
}

.page-home .hv-sub img {
  object-position: center 50%;
}

.page-home .svc-feature img {
  object-position: center 46%;
}

.page-home .svc-mini:first-child img {
  object-position: center 52%;
}

.page-home .svc-mini:last-child img {
  object-position: center 34%;
}

.page-services .page-hero-media img,
.page-service-detail .page-hero-media img,
.page-why .page-hero-media img,
.page-process .page-hero-media img,
.page-case-studies .page-hero-media img,
.page-blog .page-hero-media img,
.page-faq .page-hero-media img,
.page-contact .page-hero-media img,
.page-quote .page-hero-media img,
.page-404 .page-hero-media img {
  object-position: center 36%;
}

.page-contact .page-hero-media img {
  object-position: center 28%;
}

.page-quote .page-hero-media img {
  object-position: center 32%;
}

.svc-mini-grid,
.why-grid,
.resource-grid,
.contact-grid,
.story-grid,
.card-grid,
.step-grid,
.testi-grid,
.faq-grid-page,
.split-layout,
.intro-grid,
.quote-layout,
.proc-grid,
.stats-grid,
.why-grid {
  display: grid;
  gap: 24px;
}

.hero-home .hero-grid > *,
.page-hero-grid > *,
.svc-mini-grid > *,
.why-grid > *,
.resource-grid > *,
.contact-grid > *,
.story-grid > *,
.card-grid > *,
.step-grid > *,
.testi-grid > *,
.faq-grid-page > *,
.split-layout > *,
.intro-grid > *,
.quote-layout > *,
.ft-grid > *,
.stats-grid > * {
  min-width: 0;
}

.svc-mini-grid,
.intro-grid,
.split-layout,
.quote-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.svc-mini-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why {
  background: var(--navy);
  color: #fff;
}

.why .section-head p,
.why-card p {
  color: #a9b6cb;
}

.why-grid,
.card-grid.cols-4,
.step-grid.cols-4,
.stats-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card,
.story-card,
.contact-card,
.assurance-card {
  padding: 28px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px; /* Override shared padding to make it more compact */
  display: grid;
  grid-template-areas: 
    "icon title"
    "icon text";
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 6px;
  align-items: start;
}

.why-card h3 {
  grid-area: title;
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.3;
}

.why-card p {
  grid-area: text;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.why-ic {
  grid-area: icon;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

/* ─── WHY SPLIT LAYOUT (Mobile-First) ─────────────────────────────────────── */

.why-split {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Image Column */
.why-img-col {
  position: relative;
  width: 100%;
}

.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-img-col:hover .why-img-wrap img {
  transform: scale(1.04);
}

.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 28, 53, 0.08) 0%, rgba(11, 28, 53, 0.35) 100%);
  pointer-events: none;
}

/* Floating badge on the image */
.why-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.why-img-badge-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.why-img-badge-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.why-img-badge-num {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.why-img-badge-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Content Column */
.why-content-col {
  width: 100%;
}

.why-content-col .section-head {
  margin-bottom: 32px;
}

/* Card Grids */
.why-grid.why-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-grid.why-grid-rows {
  display: grid;
  grid-template-columns: 1fr !important; /* Force 1 column */
  gap: 16px;
}

.why-grid-2x2 .why-card,
.why-grid-rows .why-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              border-color 0.3s ease;
}

.why-grid-2x2 .why-card:hover,
.why-grid-rows .why-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ─── RESPONSIVE: 480px+ ─────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .why-grid.why-grid-2x2,
  .why-grid.why-grid-rows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ─── RESPONSIVE: 760px+ ─────────────────────────────────────────────────── */
@media (min-width: 760px) {
  .why-img-wrap {
    aspect-ratio: 16 / 10;
  }

  .why-img-badge {
    bottom: 24px;
    left: 24px;
  }
}

/* ─── RESPONSIVE: 992px+ (Desktop split) ─────────────────────────────────── */
@media (min-width: 992px) {
  .why-split {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px; /* Increased gap for desktop */
  }

  .why-img-col {
    flex: 0 0 42%;
    max-width: 42%;
    position: sticky;
    top: 120px;
  }

  .why-content-col {
    flex: 1;
    min-width: 0;
  }

  .why-img-wrap {
    height: auto; /* Fallback to natural height */
    aspect-ratio: 3 / 4; /* Portrait aspect ratio for sticky image */
  }

  .why-img-badge {
    bottom: 28px;
    left: 28px;
  }

  .why-grid.why-grid-2x2 {
    gap: 20px; /* Reduced card gap on desktop for compactness */
  }

  .why-grid.why-grid-rows {
    gap: 20px;
  }
}

/* ─── RESPONSIVE: 1400px+ (Ultra-wide desktop) ────────────────────────────── */
@media (min-width: 1400px) {
  .why-split {
    gap: 100px;
  }
}

.why-section-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}


.proc-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  position: relative;
}

.proc-grid::before {
  display: none;
}

.stats-grid {
  gap: 32px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-grid,
.testi-grid,
.contact-grid,
.faq-grid-page,
.card-grid,
.step-grid,
.story-grid,
.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proc,
.step-card {
  text-align: center;
}

.proc-num,
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  border: 2px solid #eef0f3;
}

.step-card {
  padding: 32px 26px;
}

.stats-banner {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 76px 0;
}

.stat {
  text-align: center;
}

.stat-num {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
}

.stat-lbl {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testi {
  background: var(--cream);
}

.testi-card,
.content-card {
  padding: 32px;
}

.content-card.with-media {
  overflow: hidden;
  padding: 0;
}

.content-card-media {
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
}

.content-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card-body {
  padding: 28px;
}

.content-card h3,
.testi-card h3,
.resource-card h3,
.contact-card h3,
.story-card h3,
.faq-item h3,
.quote-form-card h2,
.assurance-card h3 {
  margin: 16px 0;
}

.testi-quote,
.quote-copy {
  font-size: 17px;
  line-height: 1.7;
}

.resource-section {
  background: #fff;
}

.resource-card {
  padding: 28px;
}

.faq-preview {
  background: var(--cream);
}

.page-hero-copy,
.hero-copy,
.story-card,
.contact-card,
.resource-card,
.content-card,
.testi-card,
.quote-form-card,
.faq-item,
.callout-card,
.quote-highlight,
.assurance-card {
  position: relative;
  z-index: 1;
}

.single-column {
  grid-template-columns: 1fr;
}

.page-hero-copy h1,
.hero-copy h1,
.content-card h3,
.story-card h3,
.contact-link,
.contact-link.static,
.quote-copy,
.faq-question span:first-child,
.ft-contact a,
.ft-col a {
  overflow-wrap: anywhere;
}

.callout-card,
.quote-form-card,
.quote-highlight,
.assurance-card {
  padding: 32px;
}

.quote-highlight {
  padding: 36px;
}

.quote-copy {
  margin-bottom: 20px;
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #cbd5e1;
}

.quote-block {
  padding: 0;
  min-height: 0;
}

.quote-banner {
  background: var(--red);
}

.quote-banner-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.quote-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.quote-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(200, 16, 46, 0.9), rgba(200, 16, 46, 0.84));
}

.quote-banner .wrap {
  position: relative;
  z-index: 1;
}

.cta-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 92px 0 104px;
  text-align: center;
}

.cta-panel h2 {
  margin: 0 auto 16px;
  max-width: 660px;
  font-size: clamp(38px, 5.4vw, 68px);
}

.cta-panel p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.cta-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero-copy,
.page-hero-grid,
.intro-grid,
.split-layout {
  position: relative;
  z-index: 1;
}

.page-hero-copy p,
.dark-surface p,
.dark-surface span,
.dark-surface li,
.dark-surface strong,
.contact-link.static {
  color: inherit;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-link {
  margin-bottom: 10px;
}

.contact-link.static {
  color: var(--navy);
}

.quote-layout {
  align-items: start;
}

.quote-form h2,
.quote-form-card h2 {
  margin-top: 16px;
  color: var(--navy);
}

.form-lead,
.form-meta {
  font-size: 14px;
}

.quote-form {
  margin-top: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e6ec;
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.assurance-card {
  margin-top: 24px;
}

.faq-grid-page {
  grid-template-columns: 1fr;
}

.faq-grid-page.compact {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq-question span:first-child {
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f3f6;
  color: var(--navy);
  font-size: 22px;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

/* ── Thank-you page ─────────────────────────────────────────── */
.ty-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 140px 0 96px;
}

.ty-hero-bg {
  position: absolute;
  inset: 0;
}

.ty-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  object-position: center 40%;
}

.ty-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 28, 53, 0.96) 0%, rgba(11, 28, 53, 0.88) 55%, rgba(11, 28, 53, 0.7) 100%);
}

.ty-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.ty-check-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.ty-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-red);
  animation: ty-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.ty-check svg {
  width: 48px;
  height: 48px;
}

@keyframes ty-pop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.ty-hero-inner h1 {
  font-size: clamp(32px, 4.6vw, 60px);
  color: #fff;
  margin: 18px 0 16px;
  line-height: 1.08;
}

.ty-lead {
  color: #c4d0e0;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.ty-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.ty-next {
  background: var(--cream);
}

.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.ty-step {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #eef0f3;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}

.ty-step-num {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
  line-height: 1;
  opacity: 0.9;
}

.ty-step h3 {
  margin-bottom: 10px;
}

.ty-step p {
  font-size: 15px;
}

.ty-assurance {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  max-width: 640px;
  margin: 0 auto;
}

.ty-assurance-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--red);
}

.ty-assurance-icon svg {
  width: 22px;
  height: 22px;
}

.ty-assurance h3 {
  margin-bottom: 6px;
}

.ty-assurance p {
  font-size: 14px;
}

@media (max-width: 760px) {
  .ty-hero {
    min-height: 480px;
    padding: 130px 0 80px;
  }

  .ty-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ty-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ty-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .ty-hero h1 {
    font-size: clamp(26px, 9vw, 36px);
  }

  .ty-lead {
    font-size: 16px;
  }

  .ty-assurance {
    flex-direction: column;
    gap: 14px;
    padding: 22px;
  }
}
/* ── /Thank-you page ─────────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: #9aa6b8;
  padding: 80px 0 30px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.ft-about {
  max-width: 340px;
  margin: 16px 0 20px;
}

.ft-contact,
.ft-col ul {
  display: grid;
  gap: 12px;
}

.ft-contact a,
.ft-col a {
  color: #cbd5e1;
  transition: color 0.2s;
}

.ft-contact a:hover,
.ft-col a:hover {
  color: #fff;
}

.ft-col h4 {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ft-col ul {
  list-style: none;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  flex-wrap: wrap;
}

.ft-attr-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-attr-link:hover {
  color: #fff;
}

.sticky-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
  z-index: 99;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .page-hero-grid,
  .svc-mini-grid,
  .intro-grid,
  .split-layout,
  .quote-layout,
  .contact-grid,
  .proc-grid,
  .testi-grid,
  .story-grid,
  .card-grid,
  .step-grid,
  .why-grid,
  .resource-grid,
  .ft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .card-grid.cols-4,
  .step-grid.cols-4,
  .stats-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

  .story-grid.single-column {
    grid-template-columns: 1fr;
  }
@media (min-width: 900px) and (max-width: 1180px) and (orientation: landscape) {
  .wrap {
    padding: 0 28px;
  }

  .section,
  .page-hero,
  .hero-home {
    padding-top: 102px;
    padding-bottom: 78px;
  }

  .page-hero-copy h1,
  .hero-copy h1 {
    font-size: clamp(34px, 3.8vw, 52px);
    line-height: 1.04;
  }

  .section-head p,
  .lead,
  .page-hero-copy p {
    font-size: 17px;
  }

  .hero-panel,
  .quote-form-card,
  .callout-card,
  .content-card-body,
  .testi-card,
  .story-card,
  .contact-card {
    .page-hero {
      padding-top: 96px;
      padding-bottom: 100px;
      min-height: 520px;
    }
    .page-hero-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .page-hero-copy h1 {
      margin: 14px 0 14px;
      font-size: clamp(32px, 10vw, 44px);
    }
    .page-hero-copy p {
      font-size: 15px;
      line-height: 1.65;
    }
    .page-hero-media img,
    .quote-banner-media img {
      object-position: center 38%;
    }
    padding: 24px;
  }

  .ft-grid {
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .nav-inner {
    min-height: 76px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(11, 28, 53, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-links a {
    color: #fff;
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-only-link,
  .menu-toggle {
    display: grid;
  }

  .nav-phone {
    display: none;
  }

  .nav-cta-center {
    display: none;
  }

  /* Mobile dropdown — flat list inside the panel */
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    padding: 4px 0 4px 12px;
    margin-top: 4px;
    min-width: 0;
    display: none;
    backdrop-filter: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .hero-home .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .page-hero {
    padding-top: 116px;
    padding-bottom: 110px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 6vw, 52px);
    line-height: 1.04;
  }

  .page-hero-copy p {
    max-width: 100%;
  }

  .page-hero .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .page-hero .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero .hero-panel {
    display: none;
  }

  .page-hero-media img,
  .quote-banner-media img {
    object-position: center 34%;
  }

  .hero-visual {
    height: 320px;
    margin-top: 0;
  }

  .cta-actions .btn {
    min-width: 220px;
  }

  .svc-feature {
    min-height: 400px;
  }

  .svc-mini {
    min-height: 380px;
  }

  .content-card-media {
    aspect-ratio: 4 / 3;
  }

  .page-contact .split-layout,
  .page-quote .quote-layout,
  .page-service-detail .intro-grid,
  .page-services .intro-grid,
  .page-why .intro-grid,
  .page-process .intro-grid,
  .page-case-studies .intro-grid,
  .page-blog .intro-grid {
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .wrap {
    padding: 0 22px;
  }

  .section,
  .page-hero,
  .hero-home {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .page-hero-grid,
  .svc-mini-grid,
  .intro-grid,
  .split-layout,
  .quote-layout,
  .contact-grid,
  .proc-grid,
  .testi-grid,
  .story-grid,
  .card-grid,
  .step-grid,
  .why-grid,
  .resource-grid,
  .ft-grid,
  .stats-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-grid.cols-4,
  .step-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .cta-panel h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero-visual {
    height: 320px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .faq-question span:first-child {
    font-size: 18px;
  }

  .cta-panel {
    padding: 76px 0 88px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .sticky-call {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }

  .page-hero-media img,
  .quote-banner-media img {
    object-position: center 30%;
  }

  .content-card-media {
    aspect-ratio: 16 / 11;
  }

  /* Service cards: tall enough to hold panel content on mobile */
  .svc-feature {
    aspect-ratio: auto;
    min-height: 440px;
  }

  .svc-mini {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .svc-panel {
    padding: 20px 22px;
  }

  .svc-title {
    font-size: clamp(20px, 5.5vw, 26px);
    margin: 8px 0 8px;
  }

  .svc-mini .svc-title {
    font-size: clamp(18px, 4.8vw, 24px);
  }

  .svc-mini .svc-summary {
    display: none;
  }

  .page-service-detail .page-hero-copy h1,
  .page-services .page-hero-copy h1,
  .page-why .page-hero-copy h1,
  .page-process .page-hero-copy h1,
  .page-case-studies .page-hero-copy h1,
  .page-blog .page-hero-copy h1,
  .page-faq .page-hero-copy h1,
  .page-contact .page-hero-copy h1,
  .page-quote .page-hero-copy h1,
  .page-404 .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 9vw, 42px);
  }

  .page-service-detail .card-grid,
  .page-case-studies .card-grid,
  .page-blog .card-grid,
  .page-services .card-grid,
  .page-process .card-grid {
    gap: 18px;
  }

  .page-contact .contact-grid,
  .page-contact .split-layout,
  .page-quote .quote-layout,
  .page-quote .story-grid.single-column,
  .page-contact .story-grid.single-column,
  .page-faq .faq-grid-page {
    gap: 18px;
  }

  .page-hero-grid {
    gap: 28px;
  }

  .page-hero-copy h1 {
    line-height: 1.02;
  }

  .page-hero-copy p {
    max-width: 100%;
  }

  .page-hero .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .page-hero .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero .hero-panel {
    padding: 22px;
  }

  .page-faq .faq-question {
    align-items: flex-start;
  }

  .page-faq .faq-icon {
    margin-top: 2px;
  }
}

@media (max-width: 560px) {
  .hero-panel {
    display: none;
  }

  /* Single column — text full width, image below */
  .hero-home {
    padding-top: 88px;
    padding-bottom: 60px;
  }

  .hero-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 9vw, 42px);
    margin: 14px 0 14px;
  }

  .hero-copy .lead {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .hero-ctas {
    margin-bottom: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    padding-top: 20px;
    gap: 12px;
  }

  .trust-item {
    font-size: 13px;
  }

  /* Image stack visible below copy */
  .hero-visual {
    display: block;
    height: 360px;
    margin-bottom: 12px;
  }

  .page-home .hv-main img {
    object-position: center 25%;
  }

  .page-hero {
    padding-top: 96px;
    padding-bottom: 118px;
    min-height: 0;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero-copy h1 {
    margin: 14px 0 14px;
    font-size: clamp(28px, 8.6vw, 38px);
    line-height: 1.04;
  }

  .page-hero-copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .page-hero-media img,
  .quote-banner-media img {
    object-position: center 40%;
  }

  /* Scale floating cards for mobile */
  .hv-rating {
    top: 42%;
    right: 4px;
    padding: 12px 14px;
    min-width: 150px;
    border-radius: 12px;
  }

  .hv-num {
    font-size: 22px;
  }

  .hv-stars {
    font-size: 11px;
  }

  .hv-rating .hv-lbl {
    font-size: 10px;
  }

  .hv-badge {
    left: 4%;
    bottom: -10px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 10px;
  }

  .hv-badge .hv-num {
    font-size: 15px;
  }

  .hv-badge .hv-lbl {
    font-size: 9px;
  }

  .hero-copy .lead {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .hero-ctas {
    margin-bottom: 20px;
  }

  .trust-row {
    padding-top: 20px;
    gap: 14px;
  }

  .hero-cta-row,
  .hero-ctas,
  .section-link-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .btn,
  .hero-ctas .btn,
  .section-link-row .btn {
    width: 100%;
  }

  .svc-panel {
    padding: 18px 20px;
  }

  .svc-feature {
    aspect-ratio: auto;
    min-height: 400px;
  }

  .svc-mini {
    aspect-ratio: auto;
    min-height: 260px;
  }

  .svc-title {
    font-size: clamp(18px, 5vw, 24px);
    margin: 6px 0 6px;
  }

  .svc-mini .svc-title {
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .svc-summary {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .svc-badges {
    gap: 6px;
    margin-bottom: 8px;
  }

  .svc-badges span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .testi-card,
  .content-card-body,
  .resource-card,
  .callout-card,
  .quote-form-card,
  .story-card,
  .contact-card,
  .assurance-card {
    padding: 22px;
  }

  .faq-question {
    padding: 18px 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .page-contact .contact-link,
  .page-contact .contact-link.static,
  .page-quote .contact-link,
  .page-quote .contact-link.static {
    font-size: 16px;
    line-height: 1.5;
  }

  .page-service-detail .content-card-body,
  .page-case-studies .content-card-body,
  .page-blog .content-card-body,
  .page-services .content-card-body {
    padding: 20px;
  }

  .page-faq .section-head {
    margin-bottom: 28px;
  }

  .page-home .resource-grid,
  .page-home .testi-grid,
  .page-home .why-grid,
  .page-services .card-grid,
  .page-service-detail .story-grid,
  .page-process .story-grid,
  .page-case-studies .story-grid,
  .page-blog .story-grid {
    gap: 18px;
  }

  .page-contact .quote-form-card,
  .page-quote .quote-form-card,
  .page-contact .contact-card,
  .page-quote .assurance-card,
  .page-faq .faq-item {
    border-radius: 20px;
  }

  .hero-bg img {
    object-position: center 40%;
  }

  .page-hero-media img,
  .quote-banner-media img,
  .content-card-media img,
  .page-home .svc-feature img,
  .page-home .svc-mini img {
    object-position: center center;
  }

  .content-card-media {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 430px) {
  body {
    padding-bottom: 96px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    padding: 14px;
    border-radius: 14px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .cta-panel h2 {
    font-size: clamp(30px, 10.8vw, 40px);
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-head p,
  .lead,
  .page-hero-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .svc-feature {
    aspect-ratio: auto;
    min-height: 380px;
  }

  .svc-mini {
    aspect-ratio: auto;
    min-height: 240px;
  }

  .svc-summary {
    display: none;
  }

  .svc-title {
    font-size: clamp(18px, 5.2vw, 22px);
    margin: 6px 0 6px;
  }

  .chip-list span,
  .svc-badges span,
  .meta-label {
    font-size: 11px;
    padding: 6px 10px;
  }

  .faq-question span:first-child {
    font-size: 16px;
  }

  .cta-note {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .hero-home {
    padding-bottom: 96px;
  }

  .page-hero {
    padding-top: 92px;
    padding-bottom: 122px;
  }

  .page-hero-copy h1 {
    font-size: clamp(26px, 9.8vw, 34px);
  }

  .page-hero-copy p {
    font-size: 14px;
  }

  .page-hero-media img,
  .quote-banner-media img {
    object-position: center 44%;
  }
}

@media (max-width: 400px) {
  .wrap {
    padding: 0 16px;
  }

  .section,
  .page-hero,
  .hero-home {
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .section-head p,
  .lead,
  .page-hero-copy p {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
    padding: 13px 16px;
  }

  .page-hero-media img,
  .quote-banner-media img {
    object-position: center 42%;
  }

  .page-hero-copy p {
    font-size: 14px;
  }
}

/* Reference header/footer shell */
body.menu-open {
  overflow: hidden;
}

.nav-ref .nav-bg {
  background: var(--navy);
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 16px 32px rgba(5, 18, 39, 0.22);
}

.nav-shell {
  position: relative;
  padding-top: 6px;
}

.nav-utility {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.nav-utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-utility-links a {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.nav-utility-links a:hover,
.nav-utility-links a.active {
  color: #fff;
}

.nav-utility-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 22px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-utility-phone svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.nav-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-height: 72px;
  padding: 0 0 10px 116px;
}

.nav-logo-card,
.footer-logo-card {
  display: grid;
  justify-items: center;
  align-content: start;
  width: 100px;
  min-height: 90px;
  padding: 7px 7px 9px;
  text-align: center;
  border-radius: 0 0 14px 14px;
  background: #0a2447;
  box-shadow: 0 18px 36px rgba(5, 18, 39, 0.22);
  color: #fff;
}

.nav-logo-card {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: start;
  width: 64px;
  min-height: 60px;
  padding: 4px 4px 6px;
  text-align: center;
  border-radius: 0 0 10px 10px;
  background: #0a2447;
  box-shadow: 0 18px 36px rgba(5, 18, 39, 0.22);
  color: #fff;
  gap: 3px;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo-mark-wrap {
  display: grid;
  place-items: center;
  width: 36px;
  height: 26px;
  margin-bottom: 4px;
  border-radius: 4px;
  background: #fff;
}

.nav-logo-mark {
  width: 26px;
  height: 18px;
  object-fit: contain;
  filter: none;
}

.nav-logo-copy {
  display: grid;
  gap: 4px;
}

.nav-logo-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  color: #ff4a63;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-ref .nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: 28px;
  margin-left: 0;
}

.nav-ref .nav-quote-btn {
  flex-shrink: 0;
}

.nav-ref .nav-links a,
.nav-ref .nav-dropdown-toggle {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-ref .nav-links a::after,
.nav-ref .nav-dropdown-toggle::after {
  display: none;
}

.nav-ref .nav-links a:hover,
.nav-ref .nav-links a.active,
.nav-ref .nav-dropdown-toggle:hover,
.nav-ref .nav-dropdown-toggle.active {
  color: #ffd6dc;
}

.nav-mobile-link {
  display: none;
}

.nav-quote-btn {
  flex-shrink: 0;
  min-width: 148px;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 16px 28px -16px rgba(200, 16, 46, 0.82);
}

.nav-ref .nav-dropdown-menu {
  top: calc(100% + 12px);
  left: 0;
  min-width: 480px;
  transform: translateY(8px);
  padding: 10px;
  border-radius: 16px;
  background: #0a2447;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(5, 18, 39, 0.24);
}

.nav-ref .nav-dropdown:hover .nav-dropdown-menu,
.nav-ref .nav-dropdown:focus-within .nav-dropdown-menu {
  transform: translateY(0);
}

/* Desktop: single row — all 3 services side by side */
.nav-dropdown-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.nav-svc-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #cbd5e1;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.nav-svc-tile:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.nav-svc-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.nav-svc-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  color: #fff;
  margin: auto;
}

.nav-svc-tile:hover .nav-svc-icon {
  background: var(--red);
}

.nav-svc-label {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
}

.footer-ref {
  background: var(--navy);
  color: #cbd5e1;
  padding: 116px 0 36px;
}

.footer-shell {
  position: relative;
  padding-top: 6px;
}

.footer-brand-block {
  padding-right: 18px;
}

.footer-ref .ft-grid {
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-logo-card {
  margin-bottom: 28px;
  display: grid;
  justify-items: center;
  align-content: start;
  width: 100px;
  min-height: 90px;
  padding: 7px 7px 9px;
  text-align: center;
  border-radius: 0 0 14px 14px;
  background: #0a2447;
  box-shadow: 0 18px 36px rgba(5, 18, 39, 0.22);
  color: #fff;
  gap: 5px;
}

.footer-ref .ft-about {
  max-width: 360px;
  margin: 0 0 22px;
  color: #97a7bf;
}

.footer-ref .ft-contact,
.footer-ref .ft-col ul {
  display: grid;
  gap: 14px;
}

.footer-ref .ft-contact a,
.footer-ref .ft-col a,
.footer-ref .ft-bottom {
  color: #cbd5e1;
}

.footer-ref .ft-contact a,
.footer-ref .ft-col a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-ref .ft-contact a:hover,
.footer-ref .ft-col a:hover {
  color: #fff;
}

.footer-ref .ft-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-ref .ft-bottom {
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-rail {
  position: fixed;
  right: 0;
  top: 56%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  border-radius: 18px 0 0 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(5, 18, 39, 0.22);
  z-index: 95;
}

.footer-cta-rail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 108px;
  width: 52px;
  padding: 14px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.footer-cta-rail-link svg {
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
}

.rail-quote {
  background: var(--red);
}

.rail-call {
  background: #0a2447;
}

.footer-mobile-bar {
  display: none;
}

@media (max-width: 1180px) {
  .nav-main {
    padding-left: 112px;
    gap: 18px;
  }

  .nav-ref .nav-links {
    gap: 18px;
  }

  .nav-quote-btn {
    padding: 12px 18px;
    min-width: 154px;
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 92px;
  }

  .nav-shell {
    padding-top: 0;
    position: relative;
  }

  .nav-utility,
  .footer-cta-rail {
    display: none;
  }

  .nav-main {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 0;
    position: static;
  }

  .nav-logo-card {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 76px;
    min-height: 76px;
    padding: 5px 5px 6px;
    transform: none;
    border-radius: 0 0 10px 10px;
    background: #0a2447;
    box-shadow: 0 8px 18px rgba(5, 18, 39, 0.18);
    gap: 2px;
    display: grid;
    place-items: center;
    align-content: start;
    text-align: center;
    color: #fff;
  }

  .nav-logo-img {
    width: 48px;
    height: 48px;
  }

  .nav-logo-mark-wrap {
    width: 36px;
    height: 26px;
    margin-bottom: 6px;
  }

  .nav-logo-mark {
    width: 26px;
    height: 18px;
  }

  .nav-logo-title {
    font-size: 11px;
  }

  .nav-logo-sub {
    font-size: 7px;
  }

  .nav-ref .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-left: 0;
    padding: 18px;
    background: #0a1f3f;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(5, 18, 39, 0.22);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    z-index: 110;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-ref .nav-links a,
  .nav-ref .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 16px;
  }

  .nav-mobile-link,
  .mobile-only-link,
  .menu-toggle {
    display: inline-flex;
  }

  .mobile-only-link {
    color: #fff;
    font-weight: 700;
  }

  .nav-quote-btn {
    min-width: 130px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .menu-toggle {
    order: 3;
    justify-self: end;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .nav-ref .nav-dropdown-menu {
    position: static;
    min-width: 0;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    margin-top: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 12px;
    box-shadow: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  /* Mobile: 2-col stacked icon tiles */
  .nav-ref .nav-dropdown-menu .nav-svc-tile {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 8px;
    gap: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    min-height: 100px;
  }

  .nav-ref .nav-dropdown-menu .nav-svc-tile:hover {
    background: rgba(255, 255, 255, 0.11);
  }

  .nav-ref .nav-dropdown-menu .nav-svc-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-ref .nav-dropdown-menu .nav-svc-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: auto;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
  }

  .nav-ref .nav-dropdown-menu .nav-svc-icon svg {
    width: 22px;
    height: 22px;
  }

  .nav-svc-label {
    font-size: 11px;
  }

  .footer-ref {
    padding: 92px 0 26px;
  }

  .footer-ref .ft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 34px;
  }

  .footer-logo-card {
    margin-bottom: 20px;
  }

  .footer-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 110;
    box-shadow: 0 -10px 26px rgba(5, 18, 39, 0.18);
  }

  .footer-mobile-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    color: #fff;
    font-size: 15px;
    font-weight: 800;
  }

  .footer-mobile-action svg {
    width: 18px;
    height: 18px;
  }

  .footer-mobile-quote {
    background: var(--red);
  }

  .footer-mobile-call {
    background: #0a2447;
  }
}

@media (max-width: 560px) {
  .nav-main {
    gap: 12px;
  }

  .nav-quote-btn {
    min-width: 136px;
    padding: 11px 14px;
    font-size: 14px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 430px) {
  .nav-ref .nav-links {
    left: 14px;
    right: 14px;
    padding: 16px 14px;
  }

  .nav-logo-card {
    width: 92px;
    min-height: 88px;
  }

  .nav-logo-title {
    font-size: 12px;
  }

  .nav-logo-sub {
    font-size: 7px;
  }

  .footer-mobile-action {
    font-size: 14px;
    gap: 8px;
  }
}

/* ===================================================
   GLOBAL LAYOUT CORRECTIONS
   =================================================== */

/* Hamburger hidden above 980px, shown only on mobile */
@media (min-width: 981px) {
  .menu-toggle {
    display: none !important;
  }
}

/* 1. Stick the nav to the top of the viewport */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* 2. Hero CTAs align left with copy; section/band CTAs stay centred */
.hero-cta-row,
.hero-ctas {
  justify-content: flex-start;
}

.section-link-row,
.cta-actions {
  justify-content: center;
}

/* 3. Homepage hero – small top pad because the dark background
      extends edge-to-edge and the nav sits directly above it */
.hero-home {
  padding-top: 48px;
}

/* 4. Inner-page hero – needs enough padding so content clears
      the floating logo card that drops below the nav bar.
      80 px gives a clean visual gap at all desktop widths. */
.page-hero {
  padding-top: 80px;
}

/* 5. Thank-you hero uses the same sticky-aware top padding */
.ty-hero {
  padding-top: 80px;
}

/* 6. Tablet/mobile adjustments */
@media (max-width: 980px) {
  /* Floating logo tab is 78px tall — give hero enough top padding to clear it */
  .hero-home  { padding-top: 80px; }
  .page-hero,
  .ty-hero    { padding-top: 56px; }
}

@media (max-width: 760px) {
  /* Stack + stretch CTAs to full-width buttons */
  .hero-cta-row,
  .hero-ctas,
  .section-link-row,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .btn,
  .hero-ctas .btn,
  .section-link-row .btn,
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .hero-home  { padding-top: 80px; padding-bottom: 40px; min-height: 100svh; }
  .page-hero,
  .ty-hero    { padding-top: 40px; }
  .hero-home .hero-grid { grid-template-columns: 1fr !important; }
  .hero-visual { display: block; height: 340px; margin-top: 24px; }
  .page-home .hv-main img { object-position: center 22%; }
}

/* ===================================================
   SERVICE PAGE REDESIGN — MATCHING LOVABLE REFERENCE
   =================================================== */

/* ── SVC HERO ────────────────────────────────────────────────── */
.svc-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 80px 0 72px;
}

.svc-hero-media {
  position: absolute;
  inset: 0;
}

.svc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(11,28,53,0.96) 0%, rgba(11,28,53,0.88) 45%, rgba(11,28,53,0.62) 100%);
}

.svc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: stretch;
  min-width: 0;
}

.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.svc-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.svc-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.svc-hero-copy h1 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 640px;
}

.svc-hero-copy > p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

.svc-hero-checks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 16px;
  margin-bottom: 32px;
}

.svc-hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.svc-hero-checks li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--red);
}

.svc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.svc-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.svc-hero-call svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.svc-hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.svc-hero-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Form panel */
.svc-hero-form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-hero-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.32);
}

.svc-hero-form h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.svc-form-lead {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.svc-quote-form .field {
  margin-bottom: 10px;
}

.svc-quote-form .field-row {
  gap: 10px;
  margin-bottom: 0;
}

.svc-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.svc-form-privacy {
  font-size: 11px;
  color: var(--muted-2);
  text-align: center;
  margin-top: 10px;
}

/* ── TRUST BELT ───────────────────────────────────────────────── */
.trust-belt {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 14px 0;
}

.trust-belt-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: trust-scroll 28s linear infinite;
  width: max-content;
}

.trust-belt-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.trust-sep {
  color: var(--red) !important;
  font-size: 16px !important;
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SVC DETAIL CARDS ────────────────────────────────────────── */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.svc-detail-card {
  padding: 26px;
  border: 1px solid #e8ecf1;
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.svc-detail-card:hover {
  border-color: rgba(200,16,46,0.25);
  box-shadow: 0 8px 28px -8px rgba(11,28,53,0.12);
}

.svc-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200,16,46,0.08);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.svc-detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.svc-detail-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-detail-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-detail-bullets {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-detail-bullets li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}

.svc-detail-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ── BLOG CARD EXTRAS ────────────────────────────────────────── */
.blog-card-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.blog-card-meta {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.18s;
}

.blog-card-link:hover {
  gap: 9px;
  text-decoration: underline;
}

.svc-detail-card--linked {
  display: flex;
  flex-direction: column;
}

.svc-detail-card--linked .blog-card-link {
  margin-top: auto;
  padding-top: 14px;
}

/* ── BLOG POST PAGE ──────────────────────────────────────────── */
.blog-post-hero {
  min-height: 480px;
}

.blog-post-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0 60px;
}

.blog-post-meta-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.blog-post-read {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.blog-post-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-top: 14px;
  max-width: 640px;
}

.blog-post-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.blog-post-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.blog-post-author-row strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.blog-post-author-row span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.blog-post-section {
  background: #f9fafb;
}

.blog-post-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.blog-post-content {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: var(--radius-md);
  padding: 48px;
  line-height: 1.75;
  color: var(--ink);
}

.blog-post-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 12px;
}

.blog-post-content h2:first-child {
  margin-top: 0;
}

.blog-post-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 26px 0 8px;
}

.blog-post-content p {
  font-size: 15px;
  color: #334;
  margin-bottom: 16px;
}

.blog-post-content ul {
  margin: 16px 0 16px 0;
  padding-left: 0;
  list-style: none;
}

.blog-post-content ul li {
  font-size: 15px;
  color: #334;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.blog-post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.blog-post-sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.blog-sidebar-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.blog-sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.blog-sidebar-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.blog-sidebar-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.blog-sidebar-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-sidebar-links ul li a {
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.4;
}

.blog-sidebar-links ul li a:hover {
  color: var(--red);
  text-decoration: underline;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border: 1.5px solid #d1d9e0;
  border-radius: 8px;
  padding: 10px 18px;
  transition: border-color 0.18s, color 0.18s;
}

.btn-ghost-dark:hover {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 900px) {
  .blog-post-wrap {
    grid-template-columns: 1fr;
  }
  .blog-post-sidebar {
    position: static;
  }
  .blog-post-content {
    padding: 28px 20px;
  }
}

@media (max-width: 600px) {
  .blog-post-hero-inner {
    padding: 100px 0 40px;
  }
  .blog-post-lead {
    font-size: 16px;
  }
}

/* ── WHY CHOOSE US — SPLIT LAYOUT ────────────────────────────── */
.svc-why-section {
  background: #f8f5f2;
  color: var(--ink);
}

.svc-why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

/* Image column */
.svc-why-img-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

.svc-why-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  min-height: 320px;
}

.svc-why-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.svc-why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 32px -8px rgba(11,28,53,0.22);
}

.svc-why-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.svc-why-badge-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.svc-why-badge-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.svc-why-badge-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* Content column */
.svc-why-content .eyebrow {
  margin-bottom: 14px;
}

.svc-why-content h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.svc-why-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
}

.svc-why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.svc-why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.svc-why-feature:hover {
  border-color: rgba(200,16,46,0.2);
  box-shadow: 0 4px 16px -4px rgba(11,28,53,0.1);
}

.svc-why-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.svc-why-feat-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.svc-why-feature h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.svc-why-feature p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.svc-why-cta {
  text-align: left;
}

/* ── SERVICE DETAIL CARDS ────────────────────────────────────── */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.svc-detail-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid #eef0f3;
  box-shadow: var(--shadow-md);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -10px rgba(11, 28, 53, 0.22);
}

.svc-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.svc-detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.svc-detail-card-image {
  margin: -24px -24px 16px -24px;
  max-height: 160px;
  overflow: hidden;
}

.svc-detail-card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.svc-detail-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-detail-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex-grow: 1;
}

.svc-detail-bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-detail-bullets li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.svc-detail-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* ── PROCESS ─────────────────────────────────────────────────── */
.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(var(--step-count, 4), minmax(0,1fr));
  gap: 20px;
  position: relative;
}

.svc-process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc((50% / var(--step-count, 4)) + 10px);
  right: calc((50% / var(--step-count, 4)) + 10px);
  height: 2px;
  background: repeating-linear-gradient(90deg, #e2e6ec 0, #e2e6ec 8px, transparent 8px, transparent 14px);
  z-index: 0;
}

.svc-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.svc-process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e2e6ec;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.svc-process-step:hover .svc-process-num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.svc-process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── INDUSTRIES ───────────────────────────────────────────────── */
.svc-industries-section {}

.svc-industry-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.svc-industry-pills span {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid #e0e4ea;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  cursor: default;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-align: center;
}

.svc-industry-pills span:hover {
  border-color: var(--red);
  background: rgba(200,16,46,0.05);
  color: var(--red);
}

/* ── STATS BELT ────────────────────────────────────────────────── */
.svc-stats-belt {
  background: var(--navy);
  padding: 60px 0;
}

.svc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
}

.svc-stat {
  text-align: center;
  padding: 0 24px;
}

.svc-stat + .svc-stat {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.svc-stat-num {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.svc-stat-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
/* ── Testimonial carousel ──────────────────────────────────── */
.testi-section { overflow: visible; }
.testi-carousel-outer {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.testi-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #002045;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  transition: background 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.testi-cta-row {
  text-align: center;
  margin-top: 8px;
}
.testi-nav:hover { background: #FF0000; }
.testi-nav svg { width: 18px; height: 18px; }
.testi-viewport {
  flex: 1;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}
.svc-testi-card {
  flex-shrink: 0;
  padding: 28px;
  box-sizing: border-box;
}

.svc-testi-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.svc-testi-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}

.svc-testi-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.svc-testi-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.svc-testi-author span {
  font-size: 13px;
  color: var(--muted-2);
}

/* ── SERVICE AREAS ────────────────────────────────────────────── */
.svc-area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto 32px;
}

.svc-area-pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #e0e4ea;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
}

.svc-areas-cta {
  text-align: center;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  border: 1.5px solid rgba(11,28,53,0.2);
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost-dark:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-ghost-dark svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── MID CTA ─────────────────────────────────────────────────── */
.svc-mid-cta {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 96px 0;
  color: #fff;
  overflow: hidden;
}

.svc-mid-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,16,32,0.92) 0%, rgba(8,16,32,0.78) 60%, rgba(8,16,32,0.65) 100%);
  z-index: 0;
}

.svc-mid-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.svc-mid-cta-copy h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.cta-title-accent {
  display: block;
  color: var(--red);
  font-style: italic;
}

.svc-mid-cta-copy p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
}

.svc-mid-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-white svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .svc-hero-grid {
    grid-template-columns: 1fr 380px;
    gap: 36px;
  }
  .svc-detail-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .svc-hero {
    padding: 72px 0 60px;
  }

  .svc-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .svc-hero-form-wrap {
    display: none !important;
  }

  .svc-hero-copy h1 {
    font-size: clamp(26px, 5vw, 38px);
  }

  .svc-detail-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .svc-why-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-why-img-wrap {
    aspect-ratio: 16 / 9;
  }

  .svc-process-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .svc-process-grid::before {
    display: none;
  }

  .svc-stats-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 32px;
  }

  .svc-stat + .svc-stat {
    border-left: none;
  }

  .svc-stat:nth-child(odd) + .svc-stat {
    border-left: 1px solid rgba(255,255,255,0.12);
  }

  .svc-mid-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .svc-hero {
    padding: 56px 0 48px;
  }

  .svc-hero-checks {
    grid-template-columns: 1fr;
  }

  .svc-hero-ctas {
    flex-direction: column;
  }

  .svc-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .svc-detail-grid {
    grid-template-columns: 1fr;
  }

  .svc-why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .svc-why-split {
    gap: 24px;
  }

  .svc-why-img-wrap {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .svc-why-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    gap: 10px;
  }

  .svc-why-badge-icon {
    width: 32px;
    height: 32px;
  }

  .svc-why-badge-icon svg {
    width: 15px;
    height: 15px;
  }

  .svc-why-badge-num {
    font-size: 18px;
  }

  .svc-why-badge-lbl {
    font-size: 9px;
  }

  .svc-process-grid {
    grid-template-columns: 1fr;
  }

  .svc-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .svc-mid-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .svc-mid-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .svc-hero-form-wrap { display: none !important; }
}

@media (max-width: 440px) {
  .svc-why-cards {
    grid-template-columns: 1fr;
  }
  .svc-why-img-wrap {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 560px) {
  .svc-hero {
    padding: 48px 0 40px;
  }

  .svc-hero-form {
    padding: 22px 18px;
  }

  .svc-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════
   NEW HEADER / FOOTER  (ported from bigbullmoversltd)
   ════════════════════════════════════════════════════════════════ */

/* ── Site shell (used by new header + footer) ── */
.site-shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) { .site-shell { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .site-shell { padding-left: 2rem; padding-right: 2rem; } }

/* ── Header ── */
.site-header {
  background: #001a38;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .site-shell { position: relative; }
.top-tier, .desktop-nav { padding-inline: 0; }

/* ── Brand Logo (drop-down tab) ── */
.brand-logo-container {
  position: absolute;
  top: 0;
  left: 1rem;
  width: 120px;
  height: 135px;
  background-color: #002045;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  z-index: 60;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  text-decoration: none;
}
.brand-logo-container .brand-text { display: block; text-align: center; }
.brand-logo-container .brand-img {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  overflow: hidden;
  margin-bottom: 0.15rem;
  box-sizing: border-box;
  flex-shrink: 0;
}
.brand-logo-container .brand-img img { width: 100%; height: 100%; object-fit: contain; }
.brand-logo-container .brand-text span:first-child {
  display: block;
  color: #ffffff;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 8px;
}
.brand-logo-container .brand-text span:last-child {
  display: block;
  color: #FF0000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Mobile inline brand (always hidden — floating logo used on all sizes) ── */
.mobile-brand-inline { display: none !important; }

/* ── Top utility bar ── */
.top-tier {
  display: flex;
  justify-content: flex-end;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.top-tier-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.top-tier-inner a { color: inherit; text-decoration: none; transition: color .15s; }
.top-tier-inner a:hover, .top-tier-inner a.tt-active { color: #fff; }
.top-tier-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.top-tier-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}
.top-tier-phone svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ── Main nav row ── */
.desktop-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 0;
  gap: 28px;
}
.desktop-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-links a, .desktop-links .dd-trigger-link {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}
.desktop-links a:hover, .desktop-links a.nav-active,
.desktop-links .dd-trigger-link.nav-active { color: rgba(255,255,255,.7); }
.nav-chev { width: 15px; height: 15px; flex-shrink: 0; }

.desktop-divider { width: 1px; height: 24px; background: rgba(255,255,255,.2); flex-shrink: 0; }

.desktop-quote-btn {
  background: var(--red);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.desktop-quote-btn:hover { background: #a12022; }

.mobile-call {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.mobile-call svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ── Mega dropdown ── */
.mega-dropdown-trigger { position: static; }
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 160px;
  right: 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  padding: 24px 28px 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 100;
  pointer-events: none;
}
.mega-dropdown-trigger.dd-open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-dropdown-grid { display: grid; gap: 6px; }
.mega-dropdown-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.mega-dropdown-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.mega-dropdown-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
.mega-dropdown-grid.cols-5 { grid-template-columns: repeat(5,1fr); }
.mega-dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.mega-dropdown-grid a:hover { background: #f3f4f6; color: #002045; }
.dd-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.dd-icon svg { width: 20px; height: 20px; color: #002045; }
.mega-dropdown-grid a:hover .dd-icon { background: #e5e7eb; }
.mega-dropdown-heading {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9ca3af;
  padding: 12px 14px 4px;
}
.mega-dropdown-divider { grid-column: 1 / -1; height: 1px; background: #f0f0f0; margin: 8px 0; }

/* ── Mobile toggle ── */
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-menu-toggle svg { width: 24px; height: 24px; }

/* ── Mobile inline brand (always hidden — floating logo used on all sizes) ── */
.mobile-brand-inline { display: none !important; }

/* ── Mobile CTA pill (hidden desktop) ── */
.mobile-cta-center { display: none; }
.mobile-cta-center a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

/* ── Slide-in mobile menu overlay ── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu-overlay.open { pointer-events: auto; visibility: visible; }
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .35s ease;
}
.mobile-menu-overlay.open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100%;
  background: #002045;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-overlay.open .mobile-menu-drawer { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mobile-menu-logo img { width: 42px; height: 42px; border-radius: 8px; object-fit: contain; background: #fff; }
.mobile-menu-logo-text { display: flex; flex-direction: column; }
.mobile-menu-brand { color: #fff; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 900; line-height: 1.1; }
.mobile-menu-sub   { color: var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }
.mobile-menu-header button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.mobile-menu-header button:hover { background: rgba(255,255,255,.18); }
.mobile-menu-header button svg { width: 20px; height: 20px; }
.mobile-menu-links { flex: 1; padding: 0 0 24px; }
.mobile-menu-links a {
  display: flex;
  align-items: center;
  min-height: 52px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 24px;
  transition: background .2s;
}
.mobile-menu-links a:hover { background: rgba(255,255,255,.06); }
.mobile-menu-cta {
  padding: 16px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s;
}
.menu-cta-quote { background: var(--red); color: #fff; margin-bottom: 10px; }
.menu-cta-quote:hover { background: #a12022; }
.menu-cta-call { background: rgba(181,36,38,.12); color: var(--red); border: 1px solid rgba(181,36,38,.25); }
.menu-cta-call:hover { background: rgba(181,36,38,.2); }
.menu-cta-call svg { width: 18px; height: 18px; flex-shrink: 0; }
body.menu-open { overflow: hidden; }
body.menu-open .sticky-side-cta { display: none; }

/* ── Mobile accordion (inside drawer) ── */
.mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 24px;
  background: none;
  cursor: pointer;
  transition: background .2s;
}
.mobile-accordion-toggle:hover { background: rgba(255,255,255,.06); }
.acc-chev { width: 18px; height: 18px; transition: transform .25s ease; flex-shrink: 0; }
.mobile-accordion-toggle.acc-open .acc-chev { transform: rotate(180deg); }
.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: rgba(0,0,0,.18);
}
.mobile-accordion-panel.acc-open { max-height: 600px; }
.mobile-accordion-panel .acc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4px;
  padding: 12px 12px 16px;
}
.mobile-accordion-panel .acc-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 0;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 4px 8px;
  gap: 6px;
  transition: background .2s;
}
.mobile-accordion-panel .acc-grid a:hover { background: rgba(255,255,255,.08); color: #fff; }
.acc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acc-icon svg { width: 20px; height: 20px; color: #fff; }

/* ── Mobile nav right (desktop only) ── */
.mobile-nav-right { display: contents; }

/* ════ RESPONSIVE ════ */
@media (min-width: 992px) {
  .mobile-call,
  .mobile-menu-toggle,
  .mobile-menu-overlay,
  .mobile-brand-inline,
  .mobile-cta-center { display: none !important; }
  .mobile-nav-right { display: contents; }
}
@media (max-width: 991px) {
  .top-tier { display: none !important; }
  /* Scale the floating logo down — keep visible on all sizes (same as source) */
  .brand-logo-container {
    width: 72px;
    height: 78px;
    padding: 0.3rem;
    left: 1rem;
  }
  .brand-logo-container .brand-img { width: 36px !important; height: 36px !important; margin-bottom: 0.1rem; }
  .brand-logo-container .brand-text span:first-child { font-size: 8px; margin-top: 2px; }
  .brand-logo-container .brand-text span:last-child { font-size: 5px; }
  .desktop-nav { justify-content: flex-end; padding: 10px 0; gap: 12px; }
  .desktop-links, .desktop-divider, .desktop-quote-btn, .mobile-call { display: none !important; }
  .mobile-cta-center { display: inline-flex; }
  .mobile-menu-toggle { display: inline-flex; }
  .mobile-nav-right   { display: none; }
}
@media (max-width: 576px) {
  .desktop-nav { padding: 8px 0; }
  .brand-logo-container {
    width: 95px;
    height: 95px;
    padding: 0.6rem;
    left: 0.75rem;
  }
  .brand-logo-container .brand-img { width: 36px !important; height: 36px !important; }
  .brand-logo-container .brand-text span:first-child { font-size: 10px; }
  .brand-logo-container .brand-text span:last-child { font-size: 6px; }
  .mobile-cta-center a { padding: 7px 12px; font-size: 11px; }
}
@media (max-width: 430px) {
  .brand-logo-container {
    width: 85px;
    height: 85px;
    padding: 0.5rem;
    left: 0.75rem;
  }
  .brand-logo-container .brand-img { width: 36px !important; height: 36px !important; }
  .brand-logo-container .brand-text span:first-child { font-size: 9px; }
  .brand-logo-container .brand-text span:last-child { font-size: 5.5px; }
  .mobile-cta-center a { padding: 6px 10px; font-size: 10px; border-radius: 8px; }
}
@media (max-width: 360px) {
  .brand-logo-container {
    width: 75px;
    height: 75px;
    padding: 0.4rem;
    left: 0.5rem;
  }
  .brand-logo-container .brand-img { width: 28px; height: 28px; }
  .brand-logo-container .brand-text span:first-child { font-size: 8px; }
  .brand-logo-container .brand-text span:last-child { font-size: 5px; }
  .mobile-cta-center a { padding: 5px 8px; font-size: 9px; border-radius: 8px; }
}
@media (min-width: 1440px) {
  .brand-logo-container { left: 2.5rem; width: 130px; height: 140px; }
  .brand-logo-container .brand-img { width: 80px; height: 80px; }
}
@media (max-width: 560px) {
  .mobile-accordion-panel .acc-grid { grid-template-columns: repeat(2,1fr); }
}

/* ════════════════════════════════════════════════════════════════
   NEW FOOTER
   ════════════════════════════════════════════════════════════════ */
.bb-footer {
  background: #00152e;
  color: #fff;
  overflow: hidden;
}
.bb-footer-inner {
  padding-top: 56px;
  padding-bottom: 56px;
}
.bb-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 0;
}

/* Brand column */
.bb-ft-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.bb-ft-logo-img-box {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}
.bb-ft-logo-img-box img { width: 100%; height: 100%; object-fit: contain; }
.bb-ft-logo-name {
  display: block;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.bb-ft-logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.bb-ft-desc {
  color: rgba(255,255,255,.5);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.bb-ft-socials { display: flex; gap: 10px; }
.bb-ft-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a365d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background .2s;
}
.bb-ft-social:hover { background: var(--red); }
.bb-ft-social svg { width: 15px; height: 15px; }

/* Link columns */
.bb-ft-col h4 {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.bb-ft-col ul { list-style: none; padding: 0; margin: 0; }
.bb-ft-col ul li { margin-bottom: 10px; }
.bb-ft-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
  text-decoration: none;
  transition: color .15s;
}
.bb-ft-col ul li a:hover { color: #fff; }

/* Contact column */
.bb-ft-contact-list { display: flex; flex-direction: column; gap: 12px; }
.bb-ft-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
}
.bb-ft-contact-row svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--red); margin-top: 2px; }
.bb-ft-contact-row a { color: inherit; text-decoration: none; }
.bb-ft-contact-row a:hover { color: #fff; }

/* Divider + bottom row */
.bb-ft-divider { height: 1px; background: rgba(255,255,255,.1); margin: 40px 0 24px; }
.bb-ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bb-ft-bottom p { color: rgba(255,255,255,.35); font-size: 12px; }
.bb-ft-bottom p a { color: rgba(255,255,255,.5); text-decoration: none; }
.bb-ft-bottom p a:hover { color: #fff; }
.bb-ft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.bb-ft-cta-btn:hover { background: #a12022; }

/* Footer responsive */
@media (max-width: 900px) {
  .bb-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .bb-footer-grid { grid-template-columns: 1fr; }
  .bb-ft-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   STICKY SIDE CTAs
   ════════════════════════════════════════════════════════════════ */
.sticky-side-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 18px 13px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: padding .25s;
}
.sticky-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  writing-mode: initial;
  transform: rotate(90deg);
}
.sticky-cta-quote { background: var(--red); border-radius: 12px 0 0 0; box-shadow: -2px 0 12px rgba(181,36,38,.35); }
.sticky-cta-quote:hover { padding: 18px 17px; }
.sticky-cta-call  { background: #002045; border-radius: 0 0 0 12px; box-shadow: -2px 0 12px rgba(0,32,69,.35); }
.sticky-cta-call:hover  { padding: 18px 17px; }
.sticky-cta-label { display: inline; }

@media (max-width: 760px) {
  .bb-footer-inner { padding-bottom: calc(50px + 1.5rem + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 760px) {
  .sticky-side-cta {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    border-radius: 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,.22);
  }
  .sticky-cta-btn {
    flex: 1;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    justify-content: center;
    padding: 16px 12px;
    font-size: 14px;
    border-radius: 0;
    box-shadow: none;
  }
  .sticky-cta-btn svg {
    transform: none;
  }
  .sticky-cta-quote { border-radius: 0; }
  .sticky-cta-call  { border-radius: 0; }
  .sticky-cta-btn:hover { padding: 16px 12px; }
}

/* Prevent sticky bottom bar from covering page content on mobile */
@media (max-width: 760px) {
  body { padding-bottom: 60px !important; }
}

/* Physical spacer element pushed into the DOM right before the sticky bar */
.mobile-sticky-spacer { display: none; }
@media (max-width: 760px) {
  .mobile-sticky-spacer { display: block; height: 54px; }
}

/* ── Scroll to top button ── */
#scrollToTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: #002045;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
#scrollToTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollToTopBtn:hover { background: #FF0000; }
#scrollToTopBtn svg { width: 20px; height: 20px; }
@media (max-width: 760px) {
  #scrollToTopBtn { bottom: 5rem; right: 1rem; width: 40px; height: 40px; }
}

/* ── Mobile Quote Sheet ─────────────────────────────────────────────── */
.mq-sheet-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mq-sheet-backdrop--open {
  display: block;
  opacity: 1;
}
.mq-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1101;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
  max-height: 92svh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mq-sheet--open {
  transform: translateY(0);
}
.mq-sheet-handle {
  width: 40px;
  height: 4px;
  background: #d1d5db;
  border-radius: 2px;
  margin: 12px auto 0;
}
.mq-sheet-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #6b7280;
  line-height: 0;
}
.mq-sheet-close svg { width: 20px; height: 20px; }
.mq-sheet-inner {
  padding: 16px 20px 32px;
}
.mq-sheet-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}
.mq-sheet-lead {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 18px;
}
.mq-sheet-privacy {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-top: 10px;
}
.mq-sheet-form .field-row { gap: 10px; }
.mq-sheet-form .field label { font-size: 12px; }
.mq-sheet-form .field input,
.mq-sheet-form .field textarea,
.mq-sheet-form .field select { font-size: 14px; }
@media (max-width: 480px) {
  .mq-sheet-form .field-row { grid-template-columns: 1fr; }
}

/* ── Homepage Quote section ────────────────────────────── */
.home-quote-section { background: #f8f9fb; }

.home-quote-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.home-quote-left {
  align-self: stretch;
}

.home-quote-left-inner {
  will-change: transform;
  transition: transform 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-quote-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 10px 0 14px;
}
.home-quote-title .accent { color: var(--red); }

.home-quote-lead {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}

.home-quote-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.home-quote-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.home-quote-benefits li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
  stroke: var(--red);
}
.home-quote-benefits li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.home-quote-benefits li strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.home-quote-benefits li span {
  font-size: 0.875rem;
  color: #64748b;
}

.home-quote-right .quote-form-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .home-quote-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-quote-lead { max-width: 100%; }
  .home-quote-left { align-self: auto; }
  .home-quote-left-inner { will-change: auto; transform: none !important; }
}

/* ── Google Reviews section ────────────────────────────── */
.gr-section { background: #eef0f4; }

.gr-header { margin-bottom: 36px; }
.gr-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.gr-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.gr-score {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.gr-stars { font-size: 28px; color: #f59e0b; letter-spacing: 2px; }
.gr-count-link {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
}
.gr-count-link:hover { text-decoration: underline; }
.gr-google {
  background: linear-gradient(90deg, #4285F4 0%, #EA4335 33%, #FBBC05 66%, #34A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Cards */
.gr-carousel-outer {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto 20px;
  padding: 0 24px;
}
.gr-carousel-outer .gr-carousel-wrap {
  flex: 1;
  overflow: hidden;
  margin-bottom: 0;
}
.gr-carousel-wrap { overflow: hidden; margin-bottom: 20px; }
.gr-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.gr-card {
  flex-shrink: 0;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border-left: 4px solid var(--navy);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(11,28,53,0.07);
}
.gr-card-stars { font-size: 16px; color: #c8102e; letter-spacing: 2px; }
.gr-card-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.gr-card-author { display: flex; align-items: center; gap: 12px; }
.gr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gr-author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.gr-author-time { font-size: 12px; color: var(--muted-2); }

/* Dots */
.gr-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.gr-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #c5cad4;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.gr-dot.active { background: var(--navy); width: 24px; }

/* CTA */
.gr-cta-row { text-align: center; }
.btn.gr-review-btn,
.gr-review-btn {
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn.gr-review-btn:hover,
.gr-review-btn:hover { background: var(--navy-3); transform: translateY(-2px); color: #fff; }

.gr-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.home-industry-grid .resource-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.home-coverage-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.home-coverage-copy h2 {
  margin: 12px 0 18px;
}

.home-coverage-copy p {
  margin-bottom: 28px;
  line-height: 1.75;
  font-size: 17px;
}

.home-coverage-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.home-coverage-visual img,
.home-coverage-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.home-coverage-visual img {
  object-fit: cover;
}

.home-coverage-map-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 28, 53, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.home-coverage-map-link:hover {
  background: var(--red);
  color: #fff;
}

@media (max-width: 980px) {
  .svc-mini-grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-coverage-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .gr-score { font-size: 36px; }
  .gr-stars { font-size: 22px; }
  .gr-subtitle { display: block; width: 100%; margin-top: 4px; }
  .svc-mini-grid.cols-3 { grid-template-columns: 1fr; }
}
