:root {
  --ink: #102033;
  --muted: #5d6d7e;
  --soft: #f4f7f9;
  --line: #d9e2ea;
  --paper: #ffffff;
  --sky: #0ea5e9;
  --sky-dark: #0369a1;
  --teal: #0f766e;
  --mint: #d9f7ef;
  --ember: #f97316;
  --shadow: 0 24px 70px rgba(15, 32, 51, 0.16);
  --shadow-soft: 0 18px 40px rgba(15, 32, 51, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body:not([data-page="home"]) main {
  padding-top: 78px;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
body:not([data-page="home"]) .site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(15, 32, 51, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link,
.phone-link,
.nav-actions,
.hero-actions,
.trust-item,
.footer-logo-row {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 12px;
  min-width: 0;
  color: #fff;
}

.site-header.is-scrolled .brand-link,
.site-header.is-open .brand-link,
.site-header.is-scrolled .phone-link,
.site-header.is-open .phone-link,
body:not([data-page="home"]) .brand-link,
body:not([data-page="home"]) .phone-link {
  color: var(--ink);
}

.brand-logo {
  width: 74px;
  height: 52px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.74);
  padding: 3px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  flex: 0 0 auto;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo,
body:not([data-page="home"]) .brand-logo {
  border-color: rgba(14, 165, 233, 0.25);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: min(260px, calc(100vw - 40px));
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  gap: 4px;
}

.site-header.is-open .nav-panel {
  display: grid;
}

.nav-panel a {
  color: #536274;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-panel a:hover,
.nav-panel a.is-active {
  background: #e9f6fc;
  color: var(--sky-dark);
}

.site-header.is-scrolled .nav-panel a,
.site-header.is-open .nav-panel a {
  color: #536274;
}

.site-header.is-scrolled .nav-panel a:hover,
.site-header.is-scrolled .nav-panel a.is-active,
.site-header.is-open .nav-panel a:hover,
.site-header.is-open .nav-panel a.is-active {
  background: #e9f6fc;
  color: var(--sky-dark);
}

.nav-actions {
  order: 3;
  gap: 16px;
}

.phone-link {
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 0.93rem;
  white-space: nowrap;
}

.menu-toggle {
  order: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  min-width: 92px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 14px;
  font-weight: 800;
  line-height: 1;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle,
body:not([data-page="home"]) .menu-toggle {
  color: var(--ink);
  background: #eef5f9;
}

.menu-toggle .close-icon,
.site-header.is-open .menu-toggle .menu-icon {
  display: none;
}

.site-header.is-open .menu-toggle .close-icon {
  display: inline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.button-primary {
  background: var(--sky);
  color: #fff;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.28);
}

.button-primary:hover {
  background: var(--sky-dark);
  box-shadow: 0 18px 36px rgba(3, 105, 161, 0.3);
}

.button-glass,
.button-outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.button-glass:hover,
.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-light {
  background: #fff;
  color: var(--sky-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.button-secondary {
  background: #edf7fb;
  color: var(--sky-dark);
  border-color: #cceaf7;
}

.hero-section {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: #fff;
  background: #102033;
  display: grid;
  align-items: center;
  padding: 126px 0 76px;
}

.hero-section .hero-media,
.hero-section .hero-overlay {
  display: none;
}

.hero-media,
.hero-media img,
.cta-media,
.cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img,
.cta-media img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 32, 51, 0.92), rgba(15, 32, 51, 0.68), rgba(15, 32, 51, 0.18)),
    linear-gradient(0deg, rgba(15, 32, 51, 0.18), rgba(15, 32, 51, 0.18));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 52px;
  align-items: center;
}

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

.availability-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 800;
}

.availability-badge {
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.16);
}

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

h1 {
  font-size: 4.6rem;
  line-height: 0.96;
  margin: 28px 0 24px;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 660px;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 18px;
}

.trust-item {
  gap: 12px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #7dd3fc;
  background: rgba(255, 255, 255, 0.12);
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item small {
  color: rgba(255, 255, 255, 0.62);
}

.hero-proof {
  justify-self: end;
  width: min(390px, 100%);
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-proof img {
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
}

.proof-card {
  margin-top: 22px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.proof-card strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--sky);
}

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

.banner-strip {
  background: linear-gradient(180deg, #102033, #193049);
  padding: 28px 20px;
  display: flex;
  justify-content: center;
}

.banner-strip img {
  width: min(540px, 100%);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.34));
}

.services-section,
.about-section,
.contact-section {
  padding: 92px 0;
}

.services-section,
.benefits-section {
  background: var(--soft);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 46px;
  text-align: center;
}

.eyebrow {
  background: #e3f4fb;
  color: var(--sky-dark);
  padding: 8px 14px;
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.section-heading h2,
.about-copy h2,
.benefits-grid h2,
.cta-content h2 {
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0;
}

.section-heading h2 span,
.about-copy h2 span {
  color: var(--sky);
}

.section-heading p,
.about-copy p,
.benefits-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  text-align: left;
  background: #fff;
  border: 1px solid #e6eef4;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

button.service-card {
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #bce5f6;
}

.service-image {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-image img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 145%;
  object-fit: cover;
  object-position: center bottom;
  transform-origin: center bottom;
  transition: transform 450ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-image-natural img {
  height: 100%;
  object-position: center center;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 32, 51, 0.58));
}

.service-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--sky-dark);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(15, 32, 51, 0.16);
}

.service-label {
  display: block;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
  text-align: center;
}

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

.about-copy .button {
  margin-top: 12px;
}

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

.value-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid #e5edf3;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.value-card .icon {
  width: 36px;
  height: 36px;
  color: var(--sky-dark);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 8px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.highlight-card {
  display: grid;
  align-content: center;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: #fff;
}

.highlight-card strong {
  font-size: 3rem;
  line-height: 1;
}

.highlight-card span {
  font-size: 1.12rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}

.benefits-section {
  padding: 76px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 52px;
  align-items: center;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 32, 51, 0.07);
  font-weight: 750;
}

.benefits-list .icon {
  color: var(--teal);
}

.cta-section {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 86px 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 105, 161, 0.94), rgba(15, 32, 51, 0.9));
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 820px;
}

.cta-content p {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 30px;
}

.centered-actions {
  justify-content: center;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.25fr);
  gap: 36px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.55rem;
  margin-bottom: 22px;
}

.contact-items {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid #e5edf3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 32, 51, 0.06);
}

.contact-item > span {
  grid-row: 1 / 4;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e3f4fb;
  color: var(--sky-dark);
}

.contact-item em,
.contact-item small {
  font-style: normal;
}

.contact-item em {
  color: var(--sky-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-item small {
  color: var(--muted);
}

.callout-panel {
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: #fff;
}

.callout-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.quote-panel {
  position: relative;
  padding: 28px;
  border: 1px solid #e5edf3;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 18px;
}

.hidden-field {
  display: none;
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 750;
  color: #394a5d;
}

label b {
  color: #dc2626;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdbe5;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

legend {
  width: 100%;
  margin-bottom: 8px;
  font-weight: 750;
  color: #394a5d;
}

.service-checks {
  display: grid;
  gap: 10px;
}

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

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d6e2eb;
  border-radius: 8px;
  background: #f8fbfd;
  color: #394a5d;
  font-weight: 750;
}

.checkbox-line input {
  width: auto;
  accent-color: var(--sky);
}

.radio-line {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
}

.radio-line input {
  width: auto;
  accent-color: var(--sky);
}

.submit-button {
  width: 100%;
  border: 0;
}

.privacy-note {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}

.success-panel {
  min-height: 520px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 30px;
}

.success-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--mint);
  border-radius: 50%;
  margin-bottom: 20px;
}

.success-icon .icon {
  width: 42px;
  height: 42px;
}

.success-panel p {
  color: var(--muted);
  max-width: 470px;
}

.site-footer {
  background: #102033;
  color: #fff;
  padding-top: 62px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(170px, 0.5fr) minmax(240px, 0.8fr);
  gap: 42px;
}

.footer-grid h3 {
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  margin: 0 0 10px;
}

.footer-grid a:hover {
  color: #7dd3fc;
}

.footer-logo-row {
  gap: 13px;
  margin-bottom: 16px;
}

.footer-logo-row img {
  width: 92px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 4px;
}

.footer-brand p {
  max-width: 520px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
}

.footer-bottom p {
  margin: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 22, 0.78);
}

.modal-card {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100svh - 44px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.modal-card img {
  width: 100%;
  height: min(390px, calc((100vw - 44px) / 2.2));
  object-fit: cover;
  object-position: center bottom;
  background: #f2f5f7;
}

.modal-body {
  display: none;
}

.modal-body h3 {
  margin-bottom: 8px;
}

.modal-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 20px rgba(15, 32, 51, 0.18);
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-actions {
    display: none;
  }

  .nav-panel {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-panel {
    display: grid;
    gap: 4px;
  }

  .site-header.is-open .nav-panel a {
    border-radius: 8px;
    padding: 12px 14px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .section-heading h2,
  .about-copy h2,
  .benefits-grid h2,
  .cta-content h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 680px) {
  .section-inner,
  .nav-shell {
    width: min(100% - 28px, 1180px);
  }

  .brand-name {
    font-size: 0.88rem;
    max-width: 190px;
  }

  .hero-section {
    min-height: 82svh;
    padding: 112px 0 56px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(15, 32, 51, 0.94), rgba(15, 32, 51, 0.74));
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-subhead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .centered-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .trust-row,
  .services-grid,
  .values-wrap,
  .benefits-list,
  .form-grid,
  .checkbox-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

  .services-section,
  .about-section,
  .contact-section {
    padding: 70px 0;
  }

  .quote-panel {
    padding: 20px;
  }

  .contact-item {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .contact-item > span {
    width: 44px;
    height: 44px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
