:root {
  color-scheme: light;
  --ink: #14212b;
  --muted: #52616d;
  --line: #d8e1e7;
  --soft: #eef5f8;
  --panel: #ffffff;
  --brand: #0f6b78;
  --brand-dark: #0b4d58;
  --accent: #f0b23d;
  --ok: #1f7a4d;
  --shadow: 0 12px 32px rgba(12, 37, 47, 0.12);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfe;
  line-height: 1.55;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.topbar {
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.94rem;
}

.topbar .wrap,
.nav .wrap,
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--brand-dark);
  background: #e7f3f5;
}

.hero {
  position: relative;
  background: #10222b;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 36, 0.92) 0%, rgba(10, 28, 36, 0.76) 46%, rgba(10, 28, 36, 0.22) 100%);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 34px;
  align-items: center;
  min-height: 620px;
  padding: 42px 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #12313a;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: #e9f4f7;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span,
.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.quote-card {
  background: var(--panel);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.field {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd7de;
  border-radius: 7px;
  padding: 10px 11px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

.fine {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 62px 0;
}

.section.alt {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
}

.grid-3,
.grid-2,
.city-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.card p:last-child,
.section-head p:last-child {
  margin-bottom: 0;
}

.list {
  padding-left: 20px;
  margin: 0;
}

.list li + li {
  margin-top: 8px;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
}

.callout h2,
.callout p {
  color: #fff;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.service-nav a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}

.page-hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap {
  padding: 54px 0 34px;
}

.page-hero h1 {
  max-width: 840px;
  color: var(--ink);
}

.page-hero .hero-copy {
  color: var(--muted);
}

.breadcrumbs {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer {
  padding: 34px 0;
  color: #dcebef;
  background: #0b2630;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}

.footer a {
  color: #fff;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 8px;
}

.success {
  display: none;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid #b9dec8;
  border-radius: 7px;
  color: #0d5e37;
  background: #e9f8ef;
  font-weight: 700;
}

.success.show {
  display: block;
}

@media (max-width: 860px) {
  .topbar .wrap,
  .nav .wrap,
  .callout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar .wrap,
  .nav .wrap {
    display: grid;
  }

  .nav-links {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .grid-3,
  .grid-2,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .topbar .wrap,
  .nav .wrap,
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .hero-actions {
    display: grid;
  }

  .button,
  button {
    width: 100%;
  }
}
