:root {
  --navy: #0d385a;
  --navy-deep: #082a45;
  --navy-soft: #174d76;
  --blue: #bfe0fb;
  --soft: #e7f4ff;
  --accent: #8dc8f4;
  --accent-text: #27678f;
  --paper: #f7f9fb;
  --white: #fff;
  --ink: #122637;
  --muted: #4b6070;
  --line: #d8e2ea;
  --gold: #ffb800;
  --gold-text: #805500;
  --success: #176044;
  --shadow: 0 20px 60px rgba(7, 39, 64, 0.14);
  --shadow-soft: 0 12px 34px rgba(7, 39, 64, 0.09);
  --max: 1180px;
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@supports (overflow: clip) { html, body { overflow-x: clip; } }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
iframe { display: block; width: 100%; border: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { max-width: 100%; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p, figure, blockquote { margin-top: 0; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.12; letter-spacing: -0.035em; }
h1, h2, h3, h4, strong { font-weight: 800; }
small, .small { font-size: 14px; }
[id] { scroll-margin-top: 82px; }
::selection { color: var(--white); background: var(--navy); }
:focus-visible {
  outline: 3px solid #005f99;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #fff;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.sr-only, .rl-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.shell.narrow, .narrow { max-width: 820px; }
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-grid-gap { margin-top: 42px; }
.section-action { margin-top: 34px; text-align: center; }
.section-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.section-actions.align-left { justify-content: flex-start; }
.about-copy .section-actions { margin-top: 0; }
.bg-white { background: var(--white); }
.bg-blue { background: var(--blue); }
.bg-soft { background: var(--soft); }
.center-copy { max-width: 770px; margin-inline: auto; text-align: center; }
.max-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--accent-text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow::before { width: 8px; height: 8px; flex: 0 0 auto; background: var(--accent-text); border-radius: 50%; content: ""; }
.eyebrow.light, .dark-panel .eyebrow, .photo-section .eyebrow, .contact-banner .eyebrow { color: #d7ecff; }
.eyebrow.light::before, .dark-panel .eyebrow::before, .photo-section .eyebrow::before, .contact-banner .eyebrow::before { background: var(--blue); }
.section-title { margin-bottom: 18px; font-size: clamp(38px, 5vw, 62px); }
.section-title.compact { font-size: clamp(34px, 4.3vw, 52px); }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 19px); line-height: 1.7; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading > p { margin-bottom: 2px; color: var(--muted); }
.narrative-copy p { margin: 0 0 14px; color: var(--muted); }
.narrative-copy p:last-child { margin-bottom: 2px; }
.section-closing { max-width: 820px; margin: 34px auto 0; color: var(--muted); text-align: center; }
.section-closing p:last-child { margin-bottom: 0; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--navy-soft); border-color: var(--navy-soft); transform: translateY(-2px); text-decoration: none; }
.btn-light { color: var(--navy); background: var(--blue); border-color: var(--blue); }
.btn-light:hover { background: var(--white); border-color: var(--white); }
.btn-white { color: var(--navy); background: var(--white); border-color: var(--white); }
.btn-outline { color: var(--navy); background: transparent; }
.btn-outline:hover { color: var(--white); background: var(--navy); }
.btn-arrow::after { content: "↗"; font-size: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-weight: 800; }
.text-link::after { content: "→"; transition: transform 0.2s; }
.text-link:hover::after { transform: translateX(4px); }

/* Header */
.site-header { position: relative; z-index: 50; background: var(--navy-deep); }
.topbar { color: #dcecf8; background: var(--navy-deep); }
.topbar-inner { display: grid; min-height: 38px; grid-template-columns: repeat(3, 1fr); align-items: center; font-size: 14px; }
.topbar-item { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 8px; }
.topbar-item:first-child { justify-content: flex-start; }
.topbar-item:last-child { justify-content: flex-end; }
.nav-wrap { position: absolute; top: 52px; left: 0; width: 100%; z-index: 30; }
.navbar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 26px;
  background: rgba(232, 246, 255, 0.96);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(2, 25, 42, 0.17);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  min-width: 240px;
  align-items: center;
  gap: 14px;
  color: var(--navy-deep);
  text-decoration: none;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--navy-deep);
}
.brand-mark svg {
  width: 44px;
  height: 44px;
  display: block;
}
.brand-divider {
  width: 1.5px;
  height: 38px;
  background-color: var(--navy-deep);
  opacity: 0.75;
  flex-shrink: 0;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}
.brand-copy strong {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-copy span {
  margin-top: 3px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* Footer brand adjustments */
.footer .brand-mark { color: #ffffff; }
.footer .brand-divider { background-color: rgba(255, 255, 255, 0.35); }
.footer .brand-copy strong { color: #ffffff; }
.footer .brand-copy span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links > a, .nav-dropdown-trigger > a { position: relative; padding: 29px 0; color: #354e62; font-size: 15px; font-weight: 700; white-space: nowrap; }
.nav-links > a:not(.btn)::after, .nav-dropdown-trigger > a::after { position: absolute; right: 0; bottom: 21px; left: 0; height: 2px; background: var(--navy); transform: scaleX(0); content: ""; transition: transform 0.2s; }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after, .nav-dropdown-trigger > a:hover::after, .nav-dropdown-trigger > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links .btn { min-height: 48px; padding: 0 24px; color: var(--white); }
.nav-links .btn::after { display: none; }
.nav-dropdown { position: relative; display: flex; align-self: stretch; align-items: center; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 2px; }
.nav-dropdown-toggle {
  display: grid;
  width: 27px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: #354e62;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.nav-dropdown-toggle:hover { color: var(--navy); background: rgba(13, 56, 90, 0.08); }
.nav-dropdown-toggle svg { width: 16px; transition: transform 0.2s ease; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  z-index: 60;
  width: min(520px, calc(100vw - 48px));
  padding: 12px;
  visibility: hidden;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(13, 56, 90, 0.13);
  border-top: 4px solid var(--accent);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 24px 55px rgba(7, 39, 64, 0.2);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}
.nav-dropdown.is-open .nav-dropdown-panel {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.nav-dropdown.is-open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-list {
  display: grid;
  max-height: min(360px, calc(100vh - 180px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-dropdown-item {
  display: grid;
  min-width: 0;
  min-height: 48px;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  color: var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
.nav-dropdown-item:hover { color: var(--navy); background: var(--soft); transform: translateX(2px); }
.nav-dropdown-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--accent-text);
  background: var(--soft);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.nav-dropdown-all {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 9px 12px;
  color: var(--navy);
  background: var(--soft);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
}
.nav-dropdown-all span { font-size: 18px; transition: transform 0.16s ease; }
.nav-dropdown-all:hover span { transform: translateX(3px); }
.nav-toggle { display: none; width: 48px; height: 48px; place-items: center; padding: 0; color: var(--navy); background: transparent; border: 1px solid #8faabd; border-radius: 10px; cursor: pointer; }
.nav-toggle svg { width: 24px; }
.nav-toggle .nav-close-icon { display: none; }
.nav-toggle[aria-expanded="true"] .nav-open-icon { display: none; }
.nav-toggle[aria-expanded="true"] .nav-close-icon { display: block; }

/* Hero and request rail */
.hero { position: relative; min-height: 745px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.hero-bg, .inner-hero-bg { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5, 35, 58, 0.94) 0%, rgba(7, 44, 70, 0.76) 50%, rgba(7, 44, 70, 0.2) 100%); content: ""; }
.hero::after { position: absolute; inset: auto 0 0; z-index: 1; height: 150px; background: linear-gradient(transparent, rgba(3, 28, 45, 0.35)); content: ""; }
.hero-inner { position: relative; z-index: 2; padding: 154px 0 132px; }
.hero-copy { max-width: 745px; }
.hero-kicker { display: block; margin-bottom: 17px; font-size: 14px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; color: var(--blue); }
.hero h1 { max-width: 800px; margin-bottom: 23px; color: var(--white); font-size: clamp(44px, 6.5vw, 76px); }
.hero p { max-width: 620px; margin-bottom: 28px; color: #e0edf5; font-size: 18px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges { position: absolute; right: 0; bottom: 145px; z-index: 2; display: grid; gap: 10px; }
.hero-badge { min-width: 160px; padding: 12px 16px; color: var(--navy); background: rgba(255, 255, 255, 0.94); border-radius: 10px; font-size: 14px; font-weight: 800; box-shadow: var(--shadow-soft); }
.quote-zone { position: relative; }
.quote-overlap { position: relative; z-index: 10; margin-top: -68px; }
.quote-panel { padding: 26px 32px 25px; color: var(--white); background: var(--navy); border-radius: 24px; box-shadow: var(--shadow); }
.quote-panel h2 { margin-bottom: 20px; color: var(--white); font-size: 23px; letter-spacing: -0.02em; }
.quote-form { display: grid; grid-template-columns: 0.9fr 0.9fr 1.45fr; gap: 12px; }
.field-stack, .quote-message { display: grid; gap: 12px; }
.field-stack label, .quote-message { color: #e6f0f6; font-size: 13px; font-weight: 700; }
.field-stack label { display: grid; gap: 5px; }
.field { width: 100%; min-height: 48px; padding: 0 15px; color: var(--ink); background: #f8fafc; border: 1px solid transparent; border-radius: 8px; font-size: 15px; }
textarea.field { min-height: 108px; padding-top: 13px; resize: vertical; }
.field:focus { border-color: var(--accent-text); outline: 3px solid rgba(141, 200, 244, 0.35); }
.quote-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 16px; }
.consent { display: flex; max-width: 690px; align-items: flex-start; gap: 9px; color: #d8e5ee; font-size: 14px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; }
.form-success { display: none; margin: 14px 0 0; color: #baf5db; font-size: 14px; font-weight: 700; }
.form-success.visible { display: block; }
.form-error { display: none; margin: 14px 0 0; color: #ffd1d1; font-size: 14px; font-weight: 700; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-top: 72px; }
.trust-item { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 15px; }
.icon-box { display: grid; width: 44px; height: 44px; place-items: center; color: var(--navy); background: var(--soft); border-radius: 12px; font-size: 1.25rem; }
.trust-item h3 { margin: 1px 0 8px; font-size: 18px; letter-spacing: -0.02em; }
.trust-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Homepage cards and storytelling */
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid rgba(13, 56, 90, 0.1); border-radius: 18px; box-shadow: var(--shadow-soft); transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card img { height: 245px; object-fit: cover; }
.service-card-body { display: flex; min-height: 260px; flex: 1; align-items: flex-start; flex-direction: column; padding: 25px; }
.service-card h3 { margin-bottom: 12px; font-size: 25px; }
.service-card p { margin-bottom: 22px; color: var(--muted); font-size: 15px; }
.service-card .btn { margin-top: auto; }
.about-mosaic { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about-copy .check-list { margin: 25px 0 28px; }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; top: 2px; left: 0; display: grid; width: 21px; height: 21px; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; content: "✓"; font-size: 14px; font-weight: 900; }
.mosaic { position: relative; min-height: 560px; }
.mosaic-main { position: absolute; top: 0; right: 0; width: 78%; height: 470px; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); background: var(--navy-soft); }
.mosaic-small { position: absolute; bottom: 0; left: 0; width: 54%; height: 245px; object-fit: cover; border: 8px solid var(--white); border-radius: 24px; box-shadow: var(--shadow-soft); background: var(--navy); }
.stat-sticker { position: absolute; right: 15px; bottom: 28px; max-width: 170px; padding: 20px; color: var(--white); background: var(--navy); border-radius: 18px; box-shadow: var(--shadow); }
.stat-sticker strong { display: block; font-size: 34px; line-height: 1; }
.stat-sticker span { display: block; margin-top: 7px; font-size: 14px; }
.logo-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-row { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); align-items: center; }
.logo-cell { display: grid; min-height: 115px; place-items: center; padding: 18px; border-right: 1px solid var(--line); text-align: center; }
.logo-cell:first-child { justify-items: start; color: var(--muted); font-size: 14px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.logo-cell:last-child { border-right: 0; }
.wordmark { color: var(--navy); font-size: 18px; font-weight: 800; letter-spacing: -0.03em; opacity: 0.72; }
.offer-ribbon { padding: 32px 0; color: var(--white); background: var(--navy); }
.offer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.offer-copy { display: flex; align-items: center; gap: 18px; }
.offer-pill { display: grid; min-width: 78px; height: 78px; place-items: center; color: var(--navy); background: var(--blue); border-radius: 50%; font-size: 22px; font-weight: 900; }
.offer-copy h2 { margin: 0 0 4px; color: var(--white); font-size: 28px; }
.offer-copy p { margin: 0; color: #cfe1ee; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; }
.feature-card { min-height: 285px; padding: 30px 25px; background: var(--white); border-right: 1px solid var(--line); }
.feature-card:last-child { border-right: 0; }
.feature-number { display: block; margin-bottom: 52px; color: var(--accent-text); font-size: 14px; font-weight: 800; }
.feature-card h3 { margin-bottom: 11px; font-size: 22px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 15px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.price-card { position: relative; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-soft); }
.price-card.featured { color: var(--white); background: var(--navy); transform: translateY(-10px); }
.price-card.featured h3, .price-card.featured .price { color: var(--white); }
.price-card h3 { margin-bottom: 8px; font-size: 25px; }
.price-card > p { min-height: 52px; color: var(--muted); font-size: 14px; }
.price-card.featured > p { color: #cfe0ec; }
.price { display: block; margin: 26px 0 21px; color: var(--navy); font-size: 42px; font-weight: 800; letter-spacing: -0.05em; }
.price small { font-size: 14px; letter-spacing: 0; }
.price-card .check-list { min-height: 168px; margin-bottom: 24px; font-size: 14px; }
.price-card.featured .check-list li::before { color: var(--navy); background: var(--blue); }
.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: step; }
.process-step { position: relative; min-height: 285px; padding: 28px; overflow: hidden; color: var(--white); background: var(--navy); border-radius: 20px; counter-increment: step; }
.process-step::before { display: block; margin-bottom: 74px; color: var(--blue); content: "0" counter(step); font-size: 15px; font-weight: 800; }
.process-step::after { position: absolute; top: -36px; right: -30px; width: 120px; height: 120px; border: 22px solid rgba(191, 224, 251, 0.08); border-radius: 50%; content: ""; }
.process-step h3 { margin-bottom: 10px; color: var(--white); font-size: 22px; }
.process-step p { margin: 0; color: #c9dae7; font-size: 14px; }
.problems-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.problems-image { position: relative; }
.problems-image img { height: 600px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); background: var(--navy-soft); }
.floating-note { position: absolute; right: -24px; bottom: 30px; width: min(230px, calc(100% - 20px)); padding: 22px; color: var(--white); background: var(--navy); border-radius: 17px; box-shadow: var(--shadow); }
.floating-note strong { display: block; margin-bottom: 7px; font-size: 20px; }
.floating-note span { display: block; font-size: 14px; }
.problem-list { display: grid; border-top: 1px solid var(--line); }
.problem-row { display: grid; grid-template-columns: 50px minmax(0, 1fr); gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.problem-row b { display: grid; width: 42px; height: 42px; place-items: center; color: var(--navy); background: var(--blue); border-radius: 50%; }
.problem-row h3 { margin: 0 0 5px; font-size: 20px; }
.problem-row p { margin: 0; color: var(--muted); font-size: 15px; }

/* Reviews */
.photo-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.photo-section::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(3, 28, 46, 0.94), rgba(3, 28, 46, 0.45)); content: ""; }
.photo-section > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.photo-section-inner { position: relative; z-index: 2; padding-block: 96px; }
.photo-section h2 { color: var(--white); }
.review-intro { color: #d6e5ef; }
.review-board { margin-top: 34px; padding: 32px; color: var(--ink); background: rgba(255, 255, 255, 0.97); border-radius: 22px; box-shadow: var(--shadow); }
.review-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.google-line { display: flex; align-items: center; gap: 16px; }
.google-line strong { display: block; color: var(--navy); font-size: 32px; line-height: 1; }
.google-line > span { color: var(--muted); }
.stars { color: var(--gold-text); letter-spacing: 2px; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.review-card { min-width: 0; min-height: 225px; padding: 22px; background: #f2f5f7; border: 1px solid #e2e7eb; border-radius: 14px; }
.review-person { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.avatar { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-weight: 800; }
.review-person strong { display: block; }
.review-person span { color: var(--muted); font-size: 14px; }
.review-card p { margin: 8px 0 0; color: #374b5a; font-size: 14px; }

/* Locations, FAQ and map */
.locations-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.location-pills { display: flex; flex-wrap: wrap; gap: 11px; margin: 28px 0; }
.location-pill { display: inline-flex; min-height: 45px; align-items: center; gap: 8px; padding: 8px 18px; color: var(--navy); background: var(--blue); border: 0; border-radius: 999px; font-size: 14px; font-weight: 800; }
.location-pill.active, a.location-pill:first-child { color: var(--white); background: var(--navy); }
.map-card { position: relative; min-height: 430px; overflow: hidden; background: #d9eaf3; border: 10px solid var(--white); border-radius: 24px; box-shadow: var(--shadow); display: block; }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(13, 56, 90, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 56, 90, 0.09) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(-6deg) scale(1.15); }
.map-road { position: absolute; height: 9px; background: rgba(255, 255, 255, 0.92); border: 2px solid rgba(13, 56, 90, 0.09); border-radius: 20px; }
.road-a { top: 47%; left: -10%; width: 125%; transform: rotate(16deg); }
.road-b { top: 20%; left: 15%; width: 110%; transform: rotate(76deg); }
.road-c { bottom: 17%; left: -5%; width: 95%; transform: rotate(-18deg); }
.map-pin { position: absolute; top: 45%; left: 53%; display: grid; width: 62px; height: 62px; place-items: center; color: var(--white); background: var(--navy); border: 8px solid var(--white); border-radius: 50% 50% 50% 0; box-shadow: var(--shadow); transform: rotate(-45deg); }
.map-pin > * { transform: rotate(45deg); font-style: normal; }
.map-label { position: absolute; top: 20px; left: 20px; max-width: calc(100% - 40px); padding: 17px; background: var(--white); border-radius: 13px; box-shadow: var(--shadow-soft); }
.map-label strong { display: block; color: var(--navy); }
.map-label span { display: block; color: var(--muted); font-size: 14px; }
.faq-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 65px; align-items: start; }
.accordion { display: grid; gap: 12px; }
.accordion details { overflow: hidden; background: #eef2f5; border: 1px solid #d9e2e8; border-radius: 14px; }
.accordion summary { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 20px; color: var(--ink); cursor: pointer; font-weight: 750; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 30px; height: 30px; flex: 0 0 auto; background: var(--white); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--navy); content: ""; transform: translate(-50%, -50%); }
.accordion summary span::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.2s; }
.accordion details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.accordion .answer { padding: 0 20px 20px; color: var(--muted); font-size: 15px; }
.accordion .answer p { margin: 0; }
.city-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.city-card { position: relative; min-width: 0; min-height: 215px; display: flex; align-items: flex-end; overflow: hidden; padding: 22px; color: var(--white); background: var(--navy); border-radius: 17px; }
.city-card::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(transparent, rgba(3, 28, 46, 0.95)); content: ""; }
.city-card img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; transition: transform 0.3s; }
.city-card:hover img { transform: scale(1.04); }
.city-card div { position: relative; z-index: 2; }
.city-card h3 { margin: 0 0 3px; color: var(--white); font-size: 21px; }
.city-card span { color: #c8dbe8; font-size: 14px; }

/* Contact and footer */
.contact-banner { position: relative; min-height: 470px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.contact-banner > img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.contact-banner::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(3, 25, 42, 0.96) 0%, rgba(3, 25, 42, 0.74) 55%, rgba(3, 25, 42, 0.2) 100%); content: ""; }
.contact-banner-inner { position: relative; z-index: 2; max-width: 650px; padding: 74px 0; }
.contact-banner h2 { margin-bottom: 20px; color: var(--white); font-size: clamp(42px, 6vw, 64px); }
.contact-banner p { color: #d6e5ef; font-size: 17px; }
.call-row { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; margin-top: 28px; }
.call-number { font-size: 17px; }
.call-number strong { display: block; color: var(--blue); font-size: 25px; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-cards { display: grid; gap: 13px; margin-top: 26px; }
.contact-card { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 15px; padding: 18px; overflow-wrap: anywhere; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.contact-card strong { display: block; color: var(--navy); }
.contact-card small { display: block; color: var(--muted); }
.full-form { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; padding: 30px; background: var(--white); border-radius: 22px; box-shadow: var(--shadow-soft); }
.full-form .field { background: var(--paper); border-color: var(--line); }
.full-form .full { grid-column: 1 / -1; }
.full-form label { display: grid; gap: 7px; color: var(--navy); font-size: 14px; font-weight: 800; }
.footer { color: #d4e2ec; background: var(--navy-deep); }
.footer-main { display: grid; grid-template-columns: 1.45fr 0.7fr 0.7fr 1fr; gap: 60px; padding: 68px 0 46px; }
.footer .brand { margin-bottom: 23px; color: var(--white); }
.footer .brand-mark { color: var(--navy); background: var(--blue); }
.footer-about p { max-width: 330px; color: #a9bfce; font-size: 14px; }
.footer h3 { margin-bottom: 19px; color: var(--white); font-size: 16px; letter-spacing: 0; }
.footer-links { display: grid; min-width: 0; gap: 10px; }
.footer-links a, .footer-links span { overflow-wrap: anywhere; color: #b9ccd9; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0 27px; color: #9db4c4; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 14px; }

/* Inner and detail pages */
.inner-hero { position: relative; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.inner-hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(4, 31, 50, 0.95), rgba(4, 31, 50, 0.5)); content: ""; }
.inner-hero-content { position: relative; z-index: 2; padding: 155px 0 72px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; color: #cfe0ec; font-size: 14px; font-weight: 700; }
.breadcrumbs a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; }
.breadcrumbs a:hover { text-decoration-color: currentColor; }
.breadcrumbs span { opacity: 0.65; }
.inner-hero h1 { max-width: 820px; margin-bottom: 18px; color: var(--white); font-size: clamp(38px, 6vw, 68px); }
.inner-hero p { max-width: 680px; margin-bottom: 27px; color: #d7e6ef; font-size: 18px; }
.hero-fact-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-fact { padding: 11px 15px; color: var(--navy); background: rgba(255, 255, 255, 0.94); border-radius: 9px; font-size: 14px; font-weight: 800; }
.split-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 68px; align-items: center; }
.content-image { position: relative; margin: 0; }
.content-image img { min-height: 440px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); background: var(--navy-soft); }
.content-image figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 17px 20px; color: var(--white); background: rgba(7, 40, 64, 0.92); border-radius: 13px; font-size: 14px; }
.included-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.included-card { min-width: 0; padding: 27px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-soft); }
.included-card > span:first-child { display: block; margin-bottom: 20px; color: var(--accent-text); font-size: 24px; font-weight: 800; }
.included-card h3 { margin-bottom: 9px; font-size: 21px; }
.included-card p { margin: 0; color: var(--muted); font-size: 14px; }
.tablewrap { overflow-x: auto; background: var(--white); border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 1rem; }
table.cal { width: 100%; border-collapse: collapse; text-align: left; }
table.cal th, table.cal td { padding: 12px 16px; border-bottom: 1px solid var(--line); }
table.cal th { color: var(--navy); font-weight: 800; }
.peak { display: inline-block; padding: 4px 10px; background: var(--blue); color: var(--navy); border-radius: 999px; font-weight: 800; font-size: 13px; }
.mod { display: inline-block; padding: 4px 10px; background: var(--soft); color: var(--accent-text); border-radius: 999px; font-weight: 800; font-size: 13px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-card { min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
.blog-card-image { display: block; overflow: hidden; }
.blog-card-image img { height: 240px; object-fit: cover; transition: transform 0.3s; background: var(--navy-soft); }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card h2 { font-size: 23px; }
.blog-card h2 a:hover { color: var(--accent-text); }
.blog-card p { color: var(--muted); }
.article-hero { padding: 160px 0 56px; background: var(--soft); }
.article-hero .breadcrumbs { color: var(--muted); }
.article-hero h1 { margin-bottom: 22px; font-size: clamp(38px, 6vw, 64px); }
.article-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--muted); }
.article-byline .avatar { width: 38px; height: 38px; }
.article-byline strong { color: var(--navy); }
.article-section { padding-top: 60px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 64px; align-items: start; }
.article-toc { position: sticky; top: 82px; padding: 22px; background: var(--soft); border-radius: 16px; }
.article-toc ol { display: grid; gap: 11px; padding: 0; margin: 0; list-style: none; }
.article-toc li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 6px; font-size: 14px; }
.article-toc li > span { color: var(--accent-text); font-weight: 800; }
.article-toc a { color: var(--navy); }
.prose { font-size: 17px; line-height: 1.75; color: #2a3e4d; }
.prose h2 { font-size: 28px; margin-top: 36px; margin-bottom: 14px; }
.prose h3 { font-size: 22px; margin-top: 28px; margin-bottom: 10px; }
.prose p { margin-bottom: 18px; }

/* Responsive */
@media (max-width: 1100px) {
  .nav-links { gap: 13px; }
  .nav-links > a, .nav-dropdown-trigger > a { font-size: 14px; }
  .brand { min-width: 185px; }
}

@media (max-width: 1020px) {
  .shell { width: min(var(--max), calc(100% - 36px)); }
  .topbar-item:nth-child(2) { display: none; }
  .topbar-inner { grid-template-columns: 1fr 1fr; }
  .nav-wrap { top: 45px; }
  .navbar { min-height: 70px; padding: 0 15px; backdrop-filter: none; }
  .brand { position: relative; z-index: 42; min-width: 0; max-width: calc(100% - 70px); }
  .brand-mark { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 17px; }
  .nav-toggle { position: relative; z-index: 42; display: grid; flex: 0 0 auto; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    z-index: 40;
    display: grid;
    align-content: start;
    gap: 0;
    padding: calc(120px + env(safe-area-inset-top)) 30px calc(30px + env(safe-area-inset-bottom));
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    background: var(--soft);
    box-shadow: -20px 0 60px rgba(7, 39, 64, 0.2);
    opacity: 0;
    transform: translateX(110%);
    transition: transform 0.25s, opacity 0.2s, visibility 0s linear 0.25s;
  }
  .nav-links.open { visibility: visible; pointer-events: auto; opacity: 1; transform: none; transition-delay: 0s; }
  .nav-links > a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-links > a::after { display: none; }
  .nav-links .btn { margin-top: 20px; }
  .nav-dropdown { display: block; align-self: auto; width: 100%; }
  .nav-dropdown-trigger { display: grid; grid-template-columns: minmax(0, 1fr) 48px; border-bottom: 1px solid var(--line); }
  .nav-dropdown-trigger > a { min-width: 0; padding: 15px 0; font-size: 17px; }
  .nav-dropdown-trigger > a::after { display: none; }
  .nav-dropdown-toggle { width: 48px; height: 100%; min-height: 54px; justify-self: end; }
  .nav-dropdown-toggle svg { width: 19px; }
  .nav-dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    padding: 10px 0 14px 14px;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav-dropdown.is-open .nav-dropdown-panel { display: block; transform: none; }
  .nav-dropdown-list { max-height: none; grid-template-columns: 1fr; gap: 2px; overflow: visible; }
  .nav-dropdown-item { min-height: 44px; padding: 7px 9px; font-size: 15px; }
  .nav-dropdown-item:hover { transform: none; }
  .nav-dropdown-index { width: 28px; height: 28px; }
  .nav-dropdown-all { margin-top: 6px; background: rgba(255, 255, 255, 0.55); font-size: 14px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card:nth-child(2n) { border-right: 0; }
  .feature-card:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .city-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .section { padding: 76px 0; }
  .hero { min-height: 720px; }
  .hero-inner { padding: 132px 0 150px; }
  .hero-badges { display: none; }
  .quote-form { grid-template-columns: 1fr 1fr; }
  .quote-message { grid-column: 1 / -1; }
  .quote-foot { align-items: flex-start; flex-direction: column; }
  .section-heading, .about-mosaic, .problems-layout, .locations-layout, .faq-layout, .contact-grid, .split-section { grid-template-columns: 1fr; gap: 42px; }
  .section-heading { align-items: start; }
  .service-grid, .pricing-grid, .included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card.featured { transform: none; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; }
  .logo-row { grid-template-columns: 1fr 1fr; }
  .logo-cell { border-bottom: 1px solid var(--line); }
  .logo-cell:nth-child(2n) { border-right: 0; }
  .logo-cell:first-child { grid-column: 1 / -1; justify-items: center; border-right: 0; }
  .logo-cell:last-child { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; order: -1; }
}

@media (max-width: 580px) {
  body { font-size: 15px; }
  .shell { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 64px 0; }
  .section-title, .section-title.compact { font-size: clamp(32px, 10vw, 40px); }
  .topbar-inner { min-height: 34px; grid-template-columns: 1fr; font-size: 13px; }
  .topbar-item:last-child { display: none; }
  .nav-wrap { top: 42px; }
  .navbar { border-radius: 12px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy span { display: none; }
  .hero { min-height: 660px; }
  .hero-inner { padding: 120px 0 130px; }
  .hero h1 { font-size: clamp(36px, 11vw, 48px); }
  .hero p { font-size: 16px; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .quote-overlap { margin-top: -45px; }
  .quote-panel { padding: 22px 18px; border-radius: 18px; }
  .quote-panel h2 { font-size: 20px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-message { grid-column: auto; }
  .quote-foot .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; gap: 25px; padding-top: 52px; }
  .service-grid, .pricing-grid, .included-grid, .process, .city-cards, .blog-grid { grid-template-columns: 1fr; }
  .service-card img { height: 215px; }
  .about-mosaic { gap: 36px; }
  .mosaic { min-height: 450px; }
  .mosaic-main { width: 88%; height: 380px; }
  .mosaic-small { width: 61%; height: 190px; }
  .stat-sticker { right: 5px; bottom: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child { border-bottom: 0; }
  .offer-inner, .offer-copy, .review-summary, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .offer-pill { min-width: 64px; height: 64px; }
  .offer-inner .btn { width: 100%; }
  .problems-image img { height: 450px; }
  .floating-note { right: 10px; bottom: 10px; }
  .review-board { padding: 18px; }
  .google-line { align-items: flex-start; flex-direction: column; }
  .map-card { min-height: 350px; border-width: 6px; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .full-form { grid-template-columns: 1fr; padding: 20px; }
  .full-form .full { grid-column: auto; }
  .inner-hero { min-height: 440px; }
  .inner-hero-content { padding: 135px 0 55px; }
  .split-section { gap: 32px; }
  .content-image img { min-height: 320px; }
  .contact-banner h2 { font-size: 38px; }
}

/* ==========================================================================
   FLOATING CALL CTA (RESPONSIVE FOR DESKTOP & MOBILE)
   ========================================================================== */
.floating-call-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  pointer-events: auto;
}

.floating-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 14px;
  background: linear-gradient(135deg, #082a45 0%, #0d385a 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(8, 42, 69, 0.38), 0 4px 12px rgba(0, 0, 0, 0.18);
  font-family: var(--font);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.floating-call-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #0d385a 0%, #174d76 100%);
  box-shadow: 0 16px 36px rgba(8, 42, 69, 0.5), 0 6px 16px rgba(0, 0, 0, 0.22);
}

.floating-call-btn:active {
  transform: translateY(0) scale(0.98);
}

.floating-call-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  transition: background 0.2s ease;
}

.floating-call-btn:hover .floating-call-icon {
  background: rgba(255, 255, 255, 0.25);
}

.floating-call-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.floating-call-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.floating-call-num {
  font-size: 13px;
  font-weight: 700;
  color: #bfe0fb;
  letter-spacing: 0.02em;
}

.floating-call-status-dot {
  width: 7px;
  height: 7px;
  background-color: #00e676;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  animation: floating-pulse 2s infinite;
}

@keyframes floating-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(0, 230, 118, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

@media (max-width: 640px) {
  .floating-call-cta {
    bottom: 16px;
    right: 16px;
  }
  .floating-call-btn {
    padding: 9px 18px 9px 12px;
    gap: 10px;
  }
  .floating-call-icon {
    width: 32px;
    height: 32px;
  }
  .floating-call-icon svg {
    width: 16px;
    height: 16px;
  }
  .floating-call-title {
    font-size: 13px;
  }
  .floating-call-num {
    font-size: 12px;
  }
}
