:root {
  --ink: #07182f;
  --muted: #557085;
  --line: #d4e8f5;
  --soft: #eef8ff;
  --soft-strong: #d9f0ff;
  --white: #ffffff;
  --teal: #128bd4;
  --teal-dark: #075c9c;
  --mint: #c7ecff;
  --blue: #e8f5ff;
  --gold: #f6c761;
  --shadow: 0 20px 55px rgba(7, 35, 71, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 231, 230, 0.85);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #55c8ff);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 96px;
  height: 54px;
  flex: 0 0 96px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(18, 139, 212, 0.18);
  border-radius: var(--radius);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #284e70;
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  padding: 8px 0;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.btn-primary,
.btn-call {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(8, 127, 122, 0.2);
}

.btn-primary:hover,
.btn-call:hover {
  background: var(--teal-dark);
}

.btn-secondary,
.btn-outline {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 44px;
  align-items: center;
  width: min(100%, var(--max));
  min-height: calc(100vh - 79px);
  margin: 0 auto;
  padding: 64px 22px 72px;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 6vw, 5.45rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-stats dt {
  font-weight: 800;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 248, 255, 0.95)),
    radial-gradient(circle at top right, var(--blue), transparent 35%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel-top,
.checklist p,
.mini-quote {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-panel-top {
  color: var(--teal-dark);
  font-weight: 800;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #2cbf7b;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(44, 191, 123, 0.14);
}

.checklist {
  margin: 30px 0;
}

.checklist p {
  margin: 14px 0;
  color: #1f4869;
}

.icon-check {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background: var(--mint);
  border-radius: 50%;
}

.icon-check::after {
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid var(--teal-dark);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.mini-quote {
  align-items: flex-start;
  flex-direction: column;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-quote span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 78px 22px;
}

.muted {
  width: 100%;
  max-width: none;
  padding-left: max(22px, calc((100% - var(--max)) / 2 + 22px));
  padding-right: max(22px, calc((100% - var(--max)) / 2 + 22px));
  background: var(--soft);
}

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

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid,
.package-grid,
.trust-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(25, 62, 66, 0.06);
}

.service-card,
.package-card,
.trust-grid .card {
  padding: 24px;
}

.service-card h3,
.package-card h3,
.trust-grid h3 {
  margin: 16px 0 8px;
  font-size: 1.18rem;
}

.service-card p,
.trust-grid p,
.why-grid p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--soft-strong);
  border-radius: var(--radius);
}

.card-icon::before,
.card-icon::after {
  position: absolute;
  content: "";
}

.icon-sparkle::before {
  width: 18px;
  height: 18px;
  background: var(--teal);
  clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
}

.icon-home::before {
  width: 22px;
  height: 17px;
  border: 3px solid var(--teal);
  border-top: 0;
  bottom: 10px;
}

.icon-home::after {
  width: 18px;
  height: 18px;
  border-left: 3px solid var(--teal);
  border-top: 3px solid var(--teal);
  top: 12px;
  transform: rotate(45deg);
}

.icon-building::before {
  width: 24px;
  height: 28px;
  border: 3px solid var(--teal);
}

.icon-building::after {
  width: 4px;
  height: 4px;
  background: var(--teal);
  box-shadow: 8px 0 var(--teal), 0 8px var(--teal), 8px 8px var(--teal), 0 16px var(--teal), 8px 16px var(--teal);
  left: 14px;
  top: 10px;
}

.icon-deep::before {
  width: 24px;
  height: 24px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.icon-deep::after {
  width: 10px;
  height: 3px;
  background: var(--teal);
  right: 9px;
  bottom: 12px;
  transform: rotate(45deg);
}

.icon-key::before {
  width: 13px;
  height: 13px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  left: 10px;
}

.icon-key::after {
  width: 20px;
  height: 3px;
  background: var(--teal);
  right: 9px;
  top: 22px;
  box-shadow: 8px 5px 0 -1px var(--teal);
}

.icon-tools::before {
  width: 26px;
  height: 4px;
  background: var(--teal);
  transform: rotate(-45deg);
}

.icon-tools::after {
  width: 16px;
  height: 16px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  right: 8px;
  top: 8px;
}

.package-card {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 100%;
}

.package-card.featured {
  border-color: rgba(8, 127, 122, 0.45);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  padding: 5px 10px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.package-card ul {
  flex: 1;
  margin: 14px 0 24px;
  padding: 0 0 0 20px;
  color: var(--muted);
}

.package-card li {
  margin: 9px 0;
}

.split,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

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

.plan-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.plan-item strong {
  font-size: 1.1rem;
}

.plan-item span {
  color: var(--muted);
}

.addon-grid,
.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.addon-grid span,
.area-grid span {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.addon-grid span {
  background: var(--blue);
}

.trust-section {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 34px;
}

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

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

.why-grid div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-cards a {
  display: grid;
  gap: 3px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-cards span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

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

label {
  display: grid;
  gap: 7px;
  color: #243f5b;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfefd;
  border: 1px solid #cfe1df;
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(8, 127, 122, 0.24);
  outline-offset: 2px;
}

.full-width {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 26px;
  padding: 44px max(22px, calc((100% - var(--max)) / 2 + 22px));
  color: #d8ecea;
  background: #07182f;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 14px 0 0;
  color: #b7cecc;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: #d8ecea;
}

.footer-brand .brand-mark {
  background: var(--teal);
}

.footer-brand .brand-logo {
  background: var(--white);
}

.footer-brand small {
  color: #b7cecc;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
    padding-top: 12px;
  }

  .site-header.nav-open .main-nav a {
    padding: 11px 0;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .header-call {
    display: inline-flex;
    grid-column: 1 / -1;
  }

  .hero,
  .split,
  .trust-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 13px 16px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .hero,
  .section,
  .muted {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

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

  .hero-stats,
  .service-grid,
  .package-grid,
  .trust-grid,
  .why-grid,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .plan-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .quote-form,
  .hero-panel {
    padding: 20px;
  }
}
