:root {
  --ink: #14213d;
  --muted: #617083;
  --paper: #f7f4ee;
  --white: #ffffff;
  --line: #d9e0e7;
  --accent: #0f766e;
  --accent-strong: #134e4a;
  --gold: #f2b84b;
  --coral: #ef6f61;
  --shadow: 0 18px 50px rgba(20, 33, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 224, 231, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--accent);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button.outline {
  color: var(--accent-strong);
  border-color: var(--line);
  background: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 64px) 38px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 22, 39, 0.88), rgba(13, 22, 39, 0.56) 50%, rgba(13, 22, 39, 0.2)),
    linear-gradient(0deg, rgba(13, 22, 39, 0.7), rgba(13, 22, 39, 0.06) 45%);
}

.hero-content,
.hero-proof {
  position: relative;
}

.hero-content {
  max-width: 760px;
  padding-bottom: 48px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

.hero-brochure {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof div {
  min-height: 96px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 24px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 86px clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  background: var(--white);
}

.intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.service-grid,
.coverage-grid,
.plan-grid,
.steps,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.service-category + .service-category {
  margin-top: 40px;
}

.category-title {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 20px;
}

.service-card,
.coverage-grid article,
.plan-card,
.steps article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 245px;
  padding: 26px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--accent-strong);
  background: #dff4ee;
  border-radius: 8px;
  font-weight: 800;
}

.service-card p,
.coverage-grid p,
.plan-card p,
.steps p,
.final-cta p,
.about-copy p,
.about-facts span {
  color: var(--muted);
}

.local-seo {
  background: #eef5f1;
}

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

.coverage-grid article {
  min-height: 230px;
  padding: 26px;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.about-copy p {
  margin: 0;
  font-size: 18px;
}

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

.about-facts article {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 22px;
  color: var(--white);
  background: var(--accent-strong);
  border-radius: 8px;
}

.about-facts article:nth-child(2) {
  background: var(--ink);
}

.about-facts article:nth-child(3) {
  background: var(--coral);
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  font-size: 40px;
  line-height: 1;
}

.about-facts span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.certifications {
  margin-top: 32px;
}

.certifications-title {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cert-list li {
  padding: 8px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.plans {
  background: var(--white);
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
}

.plan-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.tag {
  align-self: flex-start;
  margin: 0 0 18px;
  padding: 5px 9px;
  color: var(--accent-strong);
  background: #dff4ee;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.plan-hours {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 800;
}

.plan-for {
  min-height: 72px;
}

.plans-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.plans-rules article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.plans-rules h3 {
  font-size: 17px;
}

.plans-rules p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding-left: 20px;
  color: var(--ink);
}

.plan-card .button {
  margin-top: auto;
}

.process {
  background: #edf3f3;
}

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

.faq-list {
  max-width: 980px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  min-height: 62px;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

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

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

.steps article {
  min-height: 225px;
  padding: 26px;
}

.steps strong {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
}

.final-cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  color: var(--white);
  background: var(--ink);
}

.final-cta h2 {
  max-width: 10ch;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-options a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
  max-width: 100%;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.channel-field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.channel-field legend {
  width: 100%;
  margin-bottom: 2px;
  font-weight: 700;
}

.channel-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  cursor: pointer;
}

.channel-field input {
  width: auto;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.7);
  background: #0c1728;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.open .main-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.open .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(40px, 14vw, 72px);
  }

  .hero-proof,
  .intro,
  .service-grid,
  .coverage-grid,
  .about-grid,
  .about-facts,
  .plan-grid,
  .plans-rules,
  .steps,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .service-card,
  .coverage-grid article,
  .about-facts article,
  .plan-card,
  .steps article {
    min-height: auto;
  }

  .plan-for {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-copy,
  .intro > p,
  .final-cta p {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .site-footer {
    display: grid;
  }
}
