@font-face {
  font-family: "El Messiri";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("/fonts/el-messiri-arabic-500.woff2") format("woff2");
}

@font-face {
  font-family: "El Messiri";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/fonts/el-messiri-arabic-600.woff2") format("woff2");
}

@font-face {
  font-family: "El Messiri";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("/fonts/el-messiri-arabic-700.woff2") format("woff2");
}

:root {
  --ink: #0a1821;
  --navy: #0b2737;
  --navy-light: #123c52;
  --blue: #0f769f;
  --accent: #b8ed2c;
  --accent-hover: #a5d923;
  --paper: #f4f6f5;
  --white: #fff;
  --muted: #607079;
  --line: #dce3e2;
  --soft: #eaf3f5;
  --warning: #fff6dc;
  --shadow: 0 24px 70px rgba(8, 29, 41, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "El Messiri", Tahoma, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  right: 20px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  font-weight: 700;
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(10, 24, 33, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--accent);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  transform: rotate(-14deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 700;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
}

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

.desktop-nav a {
  color: #40515a;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease;
}

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

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

.btn-accent {
  background: var(--accent);
  color: var(--ink);
}

.btn-accent:hover {
  background: var(--accent-hover);
}

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

.nav-cta {
  min-height: 46px;
  padding: 10px 17px;
  font-size: 13px;
}

.mobile-menu {
  display: none;
  margin-right: auto;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
  border-radius: 12px;
  background: var(--navy);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.mobile-menu nav {
  position: absolute;
  top: 100%;
  right: 14px;
  left: 14px;
  display: grid;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 0 0 16px 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 12px 14px;
  border-radius: 9px;
  font-weight: 700;
}

.mobile-menu nav a:hover {
  background: var(--paper);
}

.conversion-hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 29, 0.22), rgba(5, 20, 29, 0.96) 68%),
    linear-gradient(0deg, rgba(5, 20, 29, 0.45), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 80px 88px;
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #d8e5ea;
  font-size: 13px;
  font-weight: 700;
}

.hero-kicker svg {
  color: var(--accent);
}

.hero-content h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(47px, 5.7vw, 78px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.hero-content h1 span {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 0.65em;
}

.hero-content > p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.9;
}

.hero-primary {
  min-width: 285px;
  margin-top: 30px;
}

.hero-phone {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.hero-phone:hover {
  color: var(--white);
}

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.hero-promises span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-promises svg {
  color: var(--accent);
}

.section,
.content-section {
  padding-block: 88px;
}

.section-heading {
  margin-bottom: 36px;
}

.compact-heading {
  max-width: 750px;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--accent);
}

.section-heading h2,
.boundary-copy h2,
.proof-copy h2,
.coverage-strip h2,
.faq-intro h2,
.contact-cta h2,
.content-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.section-heading p,
.boundary-copy > p,
.proof-copy > p,
.coverage-strip p,
.faq-intro > p,
.contact-cta p,
.content-heading p {
  color: var(--muted);
}

.issue-section {
  background: var(--paper);
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.issue-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.issue-card:hover {
  border-color: rgba(15, 118, 159, 0.35);
  box-shadow: 0 16px 42px rgba(8, 29, 41, 0.08);
  transform: translateY(-3px);
}

.issue-card > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--soft);
  color: var(--blue);
}

.issue-card > svg {
  color: #92a0a5;
}

.issue-card h3 {
  margin: 0;
  font-size: 17px;
}

.issue-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.boundary-section {
  background: var(--white);
}

.boundary-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 700;
}

.boundary-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.boundary-cards article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.boundary-cards .boundary-dark {
  border-color: transparent;
  background: var(--navy);
  color: var(--white);
}

.boundary-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.boundary-dark .boundary-label {
  color: var(--accent);
}

.boundary-cards h3 {
  margin: 9px 0 20px;
  font-size: 21px;
}

.boundary-cards ul,
.service-card ul,
.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-cards li,
.service-card li,
.check-list li {
  position: relative;
  padding-right: 16px;
  color: var(--muted);
  font-size: 13px;
}

.boundary-dark li {
  color: rgba(255, 255, 255, 0.7);
}

.boundary-cards li::before,
.service-card li::before,
.check-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 10px;
  right: 0;
  border-radius: 50%;
  background: var(--accent-hover);
}

.steps-section {
  background: var(--paper);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps-grid article {
  min-height: 220px;
  padding: 28px;
  border-top: 3px solid var(--accent);
  border-radius: 0 0 20px 20px;
  background: var(--white);
}

.steps-grid strong {
  color: var(--blue);
  font-size: 28px;
}

.steps-grid h3 {
  margin: 22px 0 6px;
  font-size: 20px;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.proof-section {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 65px;
  align-items: center;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 440px;
  gap: 12px;
}

.proof-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.business-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}

.business-facts a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--blue);
}

.business-facts span {
  display: flex;
  flex-direction: column;
}

.business-facts small {
  color: var(--muted);
  font-size: 10px;
}

.business-facts b {
  color: var(--ink);
  font-size: 13px;
}

.confirmation-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 12px;
  padding: 18px;
  border-radius: 15px;
  background: var(--navy);
  color: var(--white);
}

.confirmation-box > svg {
  flex: 0 0 auto;
  color: var(--accent);
}

.confirmation-box p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.coverage-strip {
  padding-block: 70px;
  background: var(--navy);
  color: var(--white);
}

.coverage-strip-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.coverage-strip h2 {
  font-size: clamp(28px, 3.5vw, 40px);
}

.coverage-strip p {
  color: rgba(255, 255, 255, 0.65);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area-list span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.safety-section {
  padding-top: 48px;
}

.safety-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  border: 1px solid #f1d98e;
  border-radius: 18px;
  background: var(--warning);
}

.safety-box > svg {
  flex: 0 0 auto;
  color: #b37a00;
}

.safety-box h2 {
  margin: 0;
  font-size: 19px;
}

.safety-box p {
  margin: 3px 0 0;
  color: #6e5d2a;
  font-size: 13px;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 21px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue);
  font-size: 22px;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 21px 20px;
  color: var(--muted);
  font-size: 14px;
}

.contact-cta {
  padding-block: 70px;
  background:
    radial-gradient(circle at 15% 20%, rgba(15, 118, 159, 0.28), transparent 28%),
    var(--navy);
  color: var(--white);
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.contact-cta h2 {
  max-width: 760px;
}

.contact-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.66);
}

.cta-actions {
  min-width: 280px;
  display: grid;
  gap: 11px;
}

.secondary-call {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  text-align: center;
}

.site-footer {
  padding-top: 55px;
  background: #07141c;
  color: var(--white);
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
  padding-bottom: 42px;
}

.footer-main > div:first-child > p {
  max-width: 570px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.footer-contact svg {
  color: var(--accent);
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.mobile-actions {
  display: none;
}

.page-hero {
  padding-block: 80px;
  background: var(--navy);
  color: var(--white);
}

.page-hero-inner {
  max-width: var(--container);
}

.page-hero h1 {
  max-width: 850px;
  margin: 10px 0 0;
  font-size: clamp(39px, 5vw, 62px);
  line-height: 1.3;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 25px;
  color: rgba(255, 255, 255, 0.7);
}

.content-heading {
  max-width: 790px;
  margin-bottom: 35px;
}

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

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.service-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--blue);
}

.service-card > small {
  margin-top: 18px;
  color: #a6b0b3;
  font-weight: 700;
}

.service-card h3 {
  margin: 4px 0 8px;
  font-size: 19px;
}

.service-card > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.info-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-card,
.why-grid article {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.info-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.info-card h3 {
  margin: 15px 0 6px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.process-section {
  background: var(--paper);
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-copy h2,
.contact-panel h2,
.request-guide h2 {
  margin: 10px 0 15px;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.35;
}

.about-copy p,
.contact-panel p,
.request-guide p {
  color: var(--muted);
}

.check-list {
  margin-top: 22px;
}

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

.coverage-card {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.coverage-card span {
  color: var(--blue);
  font-size: 11px;
}

.coverage-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--white);
}

.coverage-note h2 {
  margin: 0;
}

.coverage-note p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-panel,
.request-guide {
  padding: 30px;
  border-radius: 22px;
}

.contact-panel {
  background: var(--navy);
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.65);
}

.request-guide {
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-methods {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.contact-methods > * {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.request-list {
  display: grid;
  gap: 9px;
  margin: 23px 0;
  padding-right: 22px;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding: 70px 20px;
  text-align: center;
}

.not-found div {
  max-width: 620px;
}

.not-found strong {
  color: var(--blue);
  font-size: 75px;
}

.not-found h1 {
  margin: 8px 0;
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .issue-grid,
  .service-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .boundary-grid,
  .proof-grid,
  .coverage-strip-inner,
  .faq-grid,
  .contact-cta-inner,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro {
    position: static;
  }

  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .mobile-menu {
    display: block;
  }

  .conversion-hero {
    min-height: 690px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 20, 29, 0.97) 22%, rgba(5, 20, 29, 0.55)),
      linear-gradient(90deg, rgba(5, 20, 29, 0.2), rgba(5, 20, 29, 0.68));
  }

  .hero-content {
    padding-block: 65px 82px;
  }

  .hero-content h1 {
    font-size: clamp(42px, 10vw, 59px);
  }

  .steps-grid,
  .info-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .proof-gallery {
    grid-template-rows: 350px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  body {
    padding-bottom: 69px;
  }

  .nav-shell {
    min-height: 70px;
  }

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

  .brand-copy strong {
    font-size: 15px;
  }

  .conversion-hero {
    min-height: 660px;
  }

  .hero-media img {
    object-position: 43% center;
  }

  .hero-content {
    padding-block: 58px 70px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.23;
  }

  .hero-content h1 span {
    font-size: 0.62em;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-primary {
    width: 100%;
    min-width: 0;
  }

  .hero-promises {
    display: grid;
  }

  .section,
  .content-section {
    padding-block: 67px;
  }

  .section-heading h2,
  .boundary-copy h2,
  .proof-copy h2,
  .coverage-strip h2,
  .faq-intro h2,
  .contact-cta h2,
  .content-heading h2 {
    font-size: 31px;
  }

  .issue-grid,
  .service-page-grid,
  .boundary-cards {
    grid-template-columns: 1fr;
  }

  .issue-card {
    min-height: 106px;
  }

  .boundary-cards article {
    padding: 24px;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 310px 220px;
  }

  .business-facts {
    grid-template-columns: 1fr;
  }

  .coverage-strip {
    padding-block: 55px;
  }

  .safety-section {
    padding-top: 28px;
  }

  .safety-box {
    padding: 20px;
  }

  .contact-cta {
    padding-block: 60px;
  }

  .cta-actions {
    min-width: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 17px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 30px rgba(8, 29, 41, 0.14);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 11px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
  }

  .page-hero {
    padding-block: 62px;
  }

  .page-hero h1 {
    font-size: 37px;
  }

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

  .coverage-note {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .request-guide {
    padding: 24px;
  }
}

.desktop-nav {
  gap: 21px;
}

.desktop-nav a {
  font-size: 13px;
}

.home-intro {
  padding-block: 64px 78px;
  background:
    radial-gradient(circle at 12% 14%, rgba(15, 118, 159, 0.1), transparent 29%),
    var(--white);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}

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

.home-intro .hero-kicker {
  border-color: var(--line);
  background: var(--paper);
  color: var(--blue);
}

.home-hero-copy h1 {
  margin: 0;
  font-size: clamp(45px, 5vw, 67px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.home-hero-copy h1 span {
  display: block;
  margin-top: 7px;
  color: var(--blue);
  font-size: 0.63em;
}

.home-hero-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

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

.home-intro .hero-promises {
  color: #52636c;
}

.home-intro .hero-promises svg {
  color: var(--blue);
}

.home-hero-visual {
  width: min(100%, 510px);
  min-height: 500px;
  position: relative;
  justify-self: end;
}

.hero-main-photo {
  width: 440px;
  height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-main-photo img,
.hero-small-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-photo img {
  object-position: 58% center;
}

.hero-small-photo {
  width: 225px;
  position: absolute;
  bottom: 18px;
  left: 0;
  margin: 0;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 29, 41, 0.2);
}

.hero-small-photo img {
  height: 135px;
  border-radius: 13px;
}

.hero-small-photo figcaption {
  padding: 9px 8px 4px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.site-facts {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.site-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(8, 29, 41, 0.08);
}

.site-facts-grid > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 25px;
  border-left: 1px solid var(--line);
}

.site-facts-grid > div:last-child {
  border-left: 0;
}

.site-facts-grid svg {
  color: var(--blue);
}

.site-facts-grid span {
  display: flex;
  flex-direction: column;
}

.site-facts-grid small {
  color: var(--muted);
  font-size: 10px;
}

.site-facts-grid b {
  font-size: 13px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}

.split-heading > div:last-child {
  padding-bottom: 4px;
}

.home-services-section {
  background: var(--paper);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.home-about-section {
  background: var(--white);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.home-about-photo {
  width: min(100%, 450px);
  height: 390px;
  overflow: hidden;
  border-radius: 25px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.home-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.35;
}

.home-about-copy > p {
  max-width: 620px;
  color: var(--muted);
}

.home-coverage-section {
  padding-block: 74px;
  background: var(--navy);
  color: var(--white);
}

.home-coverage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.home-coverage-section h2 {
  margin: 10px 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.35;
}

.home-coverage-section p {
  color: rgba(255, 255, 255, 0.65);
}

.home-faq-section {
  background: var(--paper);
}

.map-callout {
  padding-block: 34px;
  background: var(--white);
}

.map-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.map-callout-inner > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.map-callout-inner svg {
  color: var(--blue);
}

.map-callout-inner span {
  display: flex;
  flex-direction: column;
}

.map-callout-inner small {
  color: var(--muted);
  font-size: 10px;
}

.footer-main {
  grid-template-columns: 1.2fr 0.55fr 0.7fr;
  align-items: start;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links > strong,
.footer-contact > strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

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

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 55px;
  align-items: start;
}

.service-detail-main h2 {
  margin: 10px 0 18px;
  font-size: clamp(27px, 3vw, 38px);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.symptom-grid div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  font-size: 13px;
}

.symptom-grid svg {
  color: var(--blue);
}

.service-explanation {
  margin-top: 42px;
}

.service-explanation p {
  max-width: 760px;
  color: var(--muted);
}

.service-side-card {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
}

.service-side-card > svg {
  color: var(--accent);
}

.service-side-card h2 {
  margin: 18px 0 8px;
  font-size: 23px;
}

.service-side-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.service-side-card .btn {
  width: 100%;
}

.faq-page-list {
  max-width: 900px;
  display: grid;
  gap: 10px;
}

.faq-page-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.faq-page-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 21px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-page-list summary::-webkit-details-marker {
  display: none;
}

.faq-page-list summary span {
  color: var(--blue);
  font-size: 22px;
}

.faq-page-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-page-list p {
  margin: 0;
  padding: 0 21px 20px;
  color: var(--muted);
}

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

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 900px) {
  .home-hero-grid,
  .home-about-grid,
  .home-coverage-grid,
  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-hero-visual {
    justify-self: center;
  }

  .site-facts-grid {
    grid-template-columns: 1fr;
  }

  .site-facts-grid > div {
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .site-facts-grid > div:last-child {
    border-bottom: 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / 3;
  }

  .service-side-card {
    position: static;
  }
}

@media (max-width: 580px) {
  .home-intro {
    padding-block: 48px 62px;
  }

  .home-hero-copy h1 {
    font-size: 39px;
  }

  .home-hero-copy > p {
    font-size: 15px;
  }

  .home-hero-actions {
    display: grid;
  }

  .home-hero-actions .btn {
    width: 100%;
  }

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

  .hero-main-photo {
    width: calc(100% - 38px);
    height: 360px;
  }

  .hero-small-photo {
    width: 175px;
    bottom: 0;
  }

  .hero-small-photo img {
    height: 100px;
  }

  .home-about-photo {
    height: 310px;
  }

  .map-callout-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
