:root {
  --color-navy: #07162e;
  --color-navy-2: #0b2446;
  --color-blue: #1557a6;
  --color-blue-soft: #e8f1ff;
  --color-orange: #ff6b18;
  --color-orange-dark: #e95405;
  --color-ink: #111827;
  --color-muted: #5f6f86;
  --color-line: #dce5f2;
  --color-bg: #f4f7fb;
  --color-white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 22px 70px rgba(7, 22, 46, 0.14);
  --shadow-card: 0 14px 44px rgba(7, 22, 46, 0.10);
  --shadow-orange: 0 16px 34px rgba(255, 107, 24, 0.32);
  --container: 1180px;
  --section-padding: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  padding-bottom: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(255, 107, 24, 0.24);
}

.container-shell {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--color-orange);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.emergency-strip {
  position: relative;
  z-index: 60;
  background:
    linear-gradient(90deg, rgba(255, 107, 24, 0.96), rgba(229, 84, 5, 0.96)),
    var(--color-orange);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.emergency-strip .container-shell {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.strip-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.strip-group svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--color-white);
  background: rgba(7, 22, 46, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.site-header.header-scrolled {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(7, 22, 46, 0.08);
  box-shadow: 0 14px 38px rgba(7, 22, 46, 0.10);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.32), transparent 32%),
    linear-gradient(135deg, var(--color-orange), var(--color-blue));
  box-shadow: 0 16px 30px rgba(255, 107, 24, 0.24);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 18px;
}

.brand-text span {
  margin-top: 5px;
  color: currentColor;
  opacity: 0.72;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 11px;
  border-radius: 999px;
  color: currentColor;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.86;
  transition: background-color 180ms ease, opacity 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  opacity: 1;
  background: rgba(255, 107, 24, 0.14);
  color: var(--color-orange);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.mobile-trigger {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.header-scrolled .mobile-trigger {
  border-color: rgba(7, 22, 46, 0.10);
  background: var(--color-bg);
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(420px, 100%);
  transform: translateX(100%);
  overflow-y: auto;
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: -26px 0 70px rgba(7, 22, 46, 0.25);
  transition: transform 280ms ease;
}

.mobile-panel-inner {
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-navy);
}

.mobile-links {
  display: grid;
  gap: 8px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  background: rgba(7, 22, 46, 0.58);
  backdrop-filter: blur(5px);
  transition: opacity 240ms ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-panel {
  transform: translateX(0);
}

body.menu-open .menu-backdrop {
  pointer-events: auto;
  opacity: 1;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
}

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

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  z-index: -1;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: button-shine 4.5s ease-in-out infinite;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 14px 32px rgba(7, 22, 46, 0.22);
}

.btn-ghost {
  border-color: var(--color-line);
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-ghost:hover {
  border-color: rgba(255, 107, 24, 0.48);
  color: var(--color-orange-dark);
  box-shadow: 0 16px 34px rgba(7, 22, 46, 0.09);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.gradient-word {
  color: var(--color-orange);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 107, 24, 0.24), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(21, 87, 166, 0.48), transparent 34%),
    linear-gradient(135deg, #07162e 0%, #0b2446 48%, #07162e 100%);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 42% 43%, transparent 43% 100%),
    linear-gradient(90deg, transparent 0 48%, rgba(255, 107, 24, 0.34) 48% 49%, transparent 49% 100%);
  background-size: 220px 220px, 130px 130px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 86%, transparent);
}

.hero-shell::after {
  content: "";
  position: absolute;
  left: -12vw;
  right: -12vw;
  bottom: -1px;
  height: 90px;
  background: var(--color-white);
  clip-path: ellipse(54% 70% at 50% 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 58px;
  min-height: 720px;
  padding: 78px 0 124px;
}

.hero-copy {
  max-width: 670px;
}

.hero-copy h1,
.page-heading {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 76px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.trust-pill svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-image-card {
  position: absolute;
  inset: 42px 0 18px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
  animation: floaty 7s ease-in-out infinite;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 22, 46, 0.72));
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -58px;
  top: 26px;
  border-radius: 50%;
  background: rgba(255, 107, 24, 0.26);
  filter: blur(18px);
}

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 164px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-navy);
  box-shadow: 0 20px 44px rgba(7, 22, 46, 0.20);
  backdrop-filter: blur(15px);
  font-weight: 900;
}

.float-card svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
}

.float-card small {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.float-1 {
  top: 18px;
  left: 0;
}

.float-2 {
  top: 132px;
  right: -14px;
}

.float-3 {
  left: 6px;
  bottom: 62px;
}

.float-4 {
  right: 26px;
  bottom: 10px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 22%, rgba(21, 87, 166, 0.08), transparent 24%),
    var(--color-bg);
}

.section-dark {
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 107, 24, 0.18), transparent 28%),
    linear-gradient(135deg, #07162e, #0a1f3c 54%, #061225);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  display: block;
}

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head.centered .eyebrow::before {
  display: none;
}

.section-title {
  margin: 0;
  max-width: 760px;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.section-dark .section-title,
.section-dark .section-copy,
.section-dark .eyebrow {
  color: var(--color-white);
}

.section-copy {
  margin: 14px 0 0;
  max-width: 650px;
  color: var(--color-muted);
  font-size: 17px;
}

.answer-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.answer-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(var(--color-orange), var(--color-blue));
}

.answer-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  padding: 30px;
}

.answer-label {
  color: var(--color-orange);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.answer-panel p {
  margin: 0;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 650;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.feature-card,
.stat-card,
.related-card,
.testimonial-card,
.safety-card {
  border: 1px solid rgba(220, 229, 242, 0.9);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 12px 36px rgba(7, 22, 46, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover,
.feature-card:hover,
.related-card:hover,
.safety-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 107, 24, 0.42);
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
}

.service-card.featured {
  grid-column: span 2;
  min-height: 330px;
  color: var(--color-white);
  background:
    linear-gradient(180deg, rgba(7, 22, 46, 0.10), rgba(7, 22, 46, 0.86)),
    var(--card-image, linear-gradient(135deg, var(--color-navy), var(--color-blue)));
  background-size: cover;
  background-position: center;
}

.service-card.service-tall {
  grid-row: span 2;
}

.icon-bubble {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--color-orange);
  background: var(--color-blue-soft);
  margin-bottom: 26px;
}

.service-card.featured .icon-bubble {
  color: var(--color-white);
  background: rgba(255, 107, 24, 0.94);
}

.icon-bubble svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.feature-card h3,
.related-card h3,
.safety-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .text-link {
  color: var(--color-white);
}

.service-card p,
.feature-card p,
.related-card p,
.safety-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--color-orange-dark);
  font-weight: 900;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 22, 46, 0.76));
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  color: var(--color-navy);
  box-shadow: 0 20px 46px rgba(7, 22, 46, 0.20);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
}

.feature-row strong {
  display: block;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.feature-row p {
  margin: 4px 0 0;
  color: var(--color-muted);
}

.number-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--color-white);
  background: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 950;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 107, 24, 0.20), rgba(255, 107, 24, 0.90), rgba(21, 87, 166, 0.28));
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.timeline-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 8px solid var(--color-white);
  border-radius: 24px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-orange), var(--color-blue));
  box-shadow: 0 16px 32px rgba(7, 22, 46, 0.12);
  margin-bottom: 20px;
}

.timeline-icon svg {
  width: 28px;
  height: 28px;
}

.timeline-step span {
  display: block;
  color: var(--color-orange-dark);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.timeline-step h3 {
  margin: 8px 0 8px;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

.timeline-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.coverage-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(7, 22, 46, 0.90), rgba(6, 18, 37, 0.94)),
    var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.coverage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 28% 38%, rgba(255, 107, 24, 0.55) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 68%, rgba(255, 107, 24, 0.50) 0 3px, transparent 4px),
    linear-gradient(130deg, transparent 0 34%, rgba(255, 255, 255, 0.22) 34.4% 34.8%, transparent 35% 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 180px 180px;
}

.coverage-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.90);
  font-weight: 850;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 26px;
}

.stat-card strong {
  display: block;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 46px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-weight: 800;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 36px;
  align-items: center;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.circle-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.circle-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 45%);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 6px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.testimonial-card {
  scroll-snap-align: start;
  padding: 24px;
}

.testimonial-card p {
  margin: 0;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 750;
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  color: var(--color-muted);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--color-navy);
  text-align: left;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.faq-symbol {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-orange);
  background: rgba(255, 107, 24, 0.12);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--color-muted);
}

.faq-item.is-open .faq-symbol {
  color: var(--color-white);
  background: var(--color-orange);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 48px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 107, 24, 0.34), transparent 30%),
    linear-gradient(135deg, #07162e, #0b2446);
  box-shadow: var(--shadow-soft);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.28) 23px 24px);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 50px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.03;
}

.final-cta p {
  margin: 14px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.80);
}

.site-footer {
  background: #061225;
  color: var(--color-white);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 42px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--color-orange);
}

.service-hero .hero-grid {
  min-height: 620px;
}

.service-hero .hero-copy h1 {
  font-size: 68px;
}

.info-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: #fff3eb;
  border: 1px solid rgba(255, 107, 24, 0.26);
  color: var(--color-navy);
}

.info-band svg {
  width: 30px;
  height: 30px;
  color: var(--color-orange);
}

.info-band strong {
  display: block;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0;
}

.info-band p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

.content-card {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.content-card h2,
.content-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.content-card h2 {
  font-size: 42px;
}

.content-card h3 {
  font-size: 22px;
}

.content-card p {
  color: var(--color-muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-navy);
  font-weight: 800;
}

.check-list svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--color-orange);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.related-card,
.safety-card {
  padding: 24px;
}

.feature-card .icon-bubble,
.related-card .icon-bubble,
.safety-card .icon-bubble {
  margin-bottom: 20px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
}

.contact-box {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contact-box h2,
.contact-form-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 40px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form-card {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-navy);
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-bg);
  color: var(--color-navy);
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 107, 24, 0.70);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 107, 24, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--color-line);
  box-shadow: 0 -14px 38px rgba(7, 22, 46, 0.12);
  backdrop-filter: blur(18px);
}

.mobile-bottom-bar .btn {
  min-height: 48px;
  padding-inline: 12px;
  font-size: 14px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes button-shine {
  0%,
  42% {
    left: -45%;
  }

  58%,
  100% {
    left: 120%;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-trigger {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 62px;
    gap: 34px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-image-card {
    inset: 30px 0 34px 0;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline::before {
    left: 39px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    padding: 0;
  }

  .timeline-icon {
    margin: 0;
  }

  .testimonial-shell,
  .image-split,
  .coverage-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 68px;
  }

  body {
    padding-bottom: 78px;
  }

  .container-shell {
    width: min(100% - 24px, var(--container));
  }

  .emergency-strip .container-shell {
    min-height: 38px;
  }

  .strip-group span.optional,
  .brand-text span {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero-shell::after {
    height: 54px;
  }

  .hero-grid {
    padding: 44px 0 84px;
  }

  .hero-copy h1,
  .page-heading {
    font-size: 48px;
  }

  .service-hero .hero-copy h1 {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .final-cta h2,
  .content-card h2,
  .contact-box h2,
  .contact-form-card h2 {
    font-size: 32px;
  }

  .stat-card strong {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-image-card {
    inset: 48px 0 20px;
    border-radius: 24px;
  }

  .float-card {
    min-width: auto;
    padding: 11px 12px;
    font-size: 13px;
  }

  .float-1 {
    left: 0;
    top: 10px;
  }

  .float-2 {
    right: 0;
    top: 86px;
  }

  .float-3 {
    left: 0;
    bottom: 18px;
  }

  .float-4 {
    display: none;
  }

  .section-head {
    display: block;
    margin-bottom: 28px;
  }

  .answer-grid,
  .two-column,
  .service-grid,
  .related-grid,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .answer-grid {
    gap: 12px;
    padding: 24px;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .image-panel {
    min-height: 380px;
  }

  .coverage-shell,
  .final-cta {
    padding: 28px;
    border-radius: 24px;
  }

  .final-cta-content {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    grid-auto-columns: minmax(260px, 84%);
  }

  .stats-grid,
  .safety-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-bottom-bar {
    display: grid;
  }

  .js .reveal {
    transition-delay: 0ms !important;
  }
}

@media (max-width: 420px) {
  .float-card small {
    display: none;
  }

  .float-card {
    gap: 8px;
  }

  .mobile-panel-inner {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
