:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #5d6966;
  --line: #dce6e1;
  --paper: #f7faf8;
  --white: #ffffff;
  --teal: #087d79;
  --teal-dark: #075f5e;
  --lime: #d6ea77;
  --clay: #bf6b45;
  --navy: #203348;
  --shadow: 0 22px 70px rgba(19, 42, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 40px rgba(18, 33, 31, 0.14);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  background: var(--teal);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #354440;
  font-size: 0.92rem;
  font-weight: 600;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 29, 27, 0.88) 0%, rgba(10, 29, 27, 0.68) 38%, rgba(10, 29, 27, 0.2) 72%),
    linear-gradient(180deg, rgba(10, 29, 27, 0.18), rgba(10, 29, 27, 0.44));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 92px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  letter-spacing: 0;
}

h2 {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  background: var(--navy)
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 18px;
  margin: 48px 0 0;
}

.hero-stats div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

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

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-band span {
  padding: 22px 18px;
  text-align: center;
  color: #32413d;
  background: var(--white);
  font-weight: 800;
}

.section,
.split-section,
.quote-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 780px;
}

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

.service-card {
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(19, 42, 39, 0.07);
}

.service-card.residential {
  border-top: 6px solid var(--teal);
}

.service-card.commercial {
  border-top: 6px solid var(--clay);
}

.service-card.specialty {
  border-top: 6px solid var(--navy);
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 1.6rem;
}

.service-card p,
.split-copy p,
.steps p,
.quote-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: #33433f;
  line-height: 1.5;
}

.service-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--teal);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(19, 42, 39, 0.06);
}

.steps span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.borough-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.borough-list span {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.testimonial {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.testimonial p {
  font-size: 1.35rem;
  line-height: 1.5;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
  padding-top: 26px;
}

.phone-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: 1.7rem;
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #31403d;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfdcd7;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfc;
  font: inherit;
}

button:disabled {
  cursor: progress;
  opacity: 0.7;
}

textarea {
  resize: vertical;
}

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

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status[data-status="success"] {
  color: var(--teal-dark);
}

.form-status[data-status="error"] {
  color: #b33b2e;
}

.form-status[data-status="pending"] {
  color: var(--navy);
}

.portal-body {
  background:
    linear-gradient(180deg, #eef6f2 0%, #f7faf8 420px),
    var(--paper);
}

.portal-header {
  position: sticky;
  transform: none;
  left: auto;
  margin: 16px auto 0;
}

.portal-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 92px;
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.58fr);
  gap: 34px;
  align-items: stretch;
  padding: 56px 0 28px;
}

.portal-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.portal-hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 76px;
}

.panel-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 42, 39, 0.07);
}

.signin-card {
  align-self: start;
  box-shadow: var(--shadow);
}

.signin-card h2,
.panel-card h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.signin-card p,
.panel-card p {
  color: var(--muted);
  line-height: 1.6;
}

.signin-card .button {
  width: 100%;
  margin-top: 8px;
}

.panel-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-card {
  color: var(--white);
  background: var(--ink);
}

.status-card .panel-kicker {
  color: var(--lime);
}

.status-card p {
  color: rgba(255, 255, 255, 0.76);
}

.portal-request {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.live-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
  margin: 0 0 76px;
  padding: 42px 0 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.live-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.live-player-card {
  overflow: hidden;
  border: 1px solid #203348;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.live-player {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(8, 125, 121, 0.22), rgba(32, 51, 72, 0.44)),
    var(--ink);
}

.live-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.live-placeholder {
  display: grid;
  min-height: 100%;
  place-content: center;
  gap: 12px;
  padding: 26px;
  color: var(--white);
  text-align: center;
}

.live-placeholder h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.live-placeholder p {
  max-width: 430px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.live-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 4px;
  border-radius: 999px;
  background: var(--clay);
  box-shadow: 0 0 0 8px rgba(191, 107, 69, 0.18);
}

.live-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.live-meta span:first-child {
  color: var(--lime);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(16px, calc((100vw - 1120px) / 2));
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.mobile-sticky {
  display: none;
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8, 23, 22, 0.16) 0%, rgba(8, 23, 22, 0.84) 48%, rgba(8, 23, 22, 0.96) 100%);
  }

  .hero-content {
    padding: 110px 0 74px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-stats,
  .trust-band,
  .service-grid,
  .section-heading,
  .split-section,
  .coverage-layout,
  .quote-section,
  .portal-hero,
  .panel-grid,
  .live-section,
  .portal-request,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 12px;
  }

  .service-card {
    min-height: auto;
  }

  .section,
  .split-section,
  .quote-section {
    padding: 68px 0;
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .borough-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    padding-bottom: 84px;
  }

  .portal-shell {
    padding-top: 32px;
  }

  .portal-hero {
    padding-top: 44px;
  }

  .portal-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .live-section {
    margin-bottom: 54px;
    padding-bottom: 54px;
  }

  .live-player {
    min-height: 210px;
  }

  .live-meta {
    display: grid;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 12;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--teal);
    box-shadow: 0 14px 34px rgba(8, 125, 121, 0.34);
    font-weight: 800;
  }
}

@media (max-width: 480px) {
  .brand {
    min-width: 0;
  }

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

  .brand small {
    font-size: 0.72rem;
  }

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

/* Single-screen landing page */
.simple-page {
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--ink);
}

.simple-shell,
.simple-hero {
  min-height: 100svh;
}

.simple-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 96px 0 34px;
}

.simple-bg,
.simple-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.simple-bg {
  object-fit: cover;
  object-position: 62% center;
}

.simple-overlay {
  background:
    linear-gradient(90deg, rgba(9, 27, 25, 0.92) 0%, rgba(9, 27, 25, 0.82) 44%, rgba(9, 27, 25, 0.38) 100%),
    linear-gradient(180deg, rgba(9, 27, 25, 0.16), rgba(9, 27, 25, 0.58));
}

.simple-header {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(9, 27, 25, 0.48);
  box-shadow: 0 16px 48px rgba(4, 14, 13, 0.28);
  backdrop-filter: blur(16px);
}

.simple-brand small {
  color: rgba(255, 255, 255, 0.72);
}

.simple-header .header-cta {
  background: var(--teal);
}

.simple-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.74fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  color: var(--white);
  padding: 1rem 0;
}

.simple-copy h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
}

.simple-copy .hero-copy {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.simple-services,
.simple-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 690px;
}

.simple-services span,
.simple-services button,
.simple-proof span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.simple-services span,
.simple-services button {
  padding: 0 12px;
  border: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font: inherit;
}

.simple-services button:hover,
.simple-services button[aria-expanded="true"] {
  color: var(--white);
  background: var(--teal);
}

.modal-open {
  overflow: hidden;
}

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

.package-modal[hidden] {
  display: none;
}

.package-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 13, 0.72);
  backdrop-filter: blur(8px);
}

.package-modal-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(720px, calc(100svh - 40px));
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: #10211f;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.44);
}

.package-modal-card .panel-kicker {
  margin-bottom: 10px;
  color: var(--lime);
}

.package-modal-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.package-modal-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.modal-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 16px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.modal-image[hidden] {
  display: none;
}

.modal-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 20px 0;
}

.modal-detail-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
}

.modal-detail-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.modal-note {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.modal-select {
  width: 100%;
  margin-top: 16px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
}

.simple-proof {
  margin-top: 14px;
}

.simple-proof span {
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.simple-phone {
  margin-top: 24px;
  color: var(--lime);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.simple-form {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: center;
  padding: clamp(18px, 3vw, 24px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 72px rgba(4, 14, 13, 0.34);
  backdrop-filter: blur(18px);
}

.form-heading {
  grid-column: 1 / -1;
}

.form-heading h2 {
  margin: 0 0 4px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.02;
}

.simple-form .eyebrow {
  margin-bottom: 8px;
}

.simple-form label {
  gap: 6px;
  font-size: 0.82rem;
}

.simple-form input,
.simple-form select,
.simple-form textarea {
  min-height: 44px;
}

.simple-form textarea {
  min-height: 84px;
}

@media (max-width: 920px) {
  .simple-page {
    overflow: auto;
  }

  .simple-hero {
    min-height: 100svh;
    align-items: start;
    padding: 78px 0 16px;
  }

  .simple-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .simple-copy h1 {
    max-width: 520px;
    margin-bottom: 10px;
    font-size: clamp(2.35rem, 11vw, 3.65rem);
    line-height: 0.96;
  }

  .simple-copy .hero-copy {
    max-width: 560px;
    margin-bottom: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .simple-services {
    gap: 6px;
  }

  .simple-services span,
  .simple-services button {
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.72rem;
  }

  .package-modal-card {
    padding: 20px;
  }

  .modal-image {
    margin: 12px 0 14px;
  }

  .modal-detail-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .simple-phone {
    margin-top: 12px;
    font-size: 1.45rem;
  }

  .simple-form {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 9px;
    padding: 14px;
  }

  .form-heading h2 {
    font-size: 1.3rem;
  }

  .simple-form .eyebrow {
    margin-bottom: 5px;
  }

  .simple-form label {
    gap: 4px;
    font-size: 0.76rem;
  }

  .simple-form input,
  .simple-form select {
    min-height: 39px;
    padding: 8px 10px;
  }

  .simple-form .details-field {
    display: none;
  }

  .simple-form .email-field {
    display: none;
  }

  .simple-form .button {
    min-height: 42px;
  }
}

@media (max-width: 560px) {
  .simple-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 9px 10px;
  }

  .simple-header .header-cta {
    display: none;
  }

  .simple-hero {
    padding-top: 72px;
  }

  .simple-bg {
    object-position: 70% center;
  }

  .simple-overlay {
    background:
      linear-gradient(180deg, rgba(9, 27, 25, 0.72) 0%, rgba(9, 27, 25, 0.9) 58%, rgba(9, 27, 25, 0.96) 100%),
      linear-gradient(90deg, rgba(9, 27, 25, 0.55), rgba(9, 27, 25, 0.26));
  }

  .simple-brand .brand-mark {
    width: 36px;
    height: 36px;
  }

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

  .simple-brand small {
    font-size: 0.68rem;
  }

  .simple-copy h1 {
    font-size: clamp(2.15rem, 10.4vw, 3.05rem);
  }

  .simple-copy .hero-copy {
    font-size: 0.9rem;
  }

  .simple-phone {
    font-size: 1.28rem;
  }

  .simple-services span,
  .simple-services button,
  .simple-proof span {
    min-height: 28px;
    font-size: 0.72rem;
  }

  .package-modal {
    padding: 12px;
    place-items: end center;
  }

  .package-modal-card {
    max-height: calc(100svh - 24px);
    padding: 18px;
  }

  .package-modal-card h2 {
    padding-right: 36px;
    font-size: 1.55rem;
  }

  .package-modal-card p,
  .modal-detail-grid ul {
    font-size: 0.88rem;
  }

  .modal-image {
    max-height: 190px;
  }
}

@media (max-width: 390px) {
  .simple-hero {
    padding-top: 66px;
  }

  .simple-copy h1 {
    margin-bottom: 8px;
    font-size: 2.05rem;
  }

  .simple-copy .hero-copy {
    margin-bottom: 9px;
    font-size: 0.84rem;
  }

  .simple-services span,
  .simple-services button {
    min-height: 26px;
    font-size: 0.66rem;
  }

  .simple-phone {
    margin-top: 9px;
    font-size: 1.16rem;
  }

  .simple-form {
    gap: 7px;
    padding: 12px;
  }

  .simple-form input,
  .simple-form select {
    min-height: 35px;
    font-size: 0.88rem;
  }

  .form-heading h2 {
    font-size: 1.16rem;
  }

  .form-status {
    min-height: 16px;
    font-size: 0.76rem;
  }
}

.copyright,
footer {
  color: white;
  padding: 1rem;
}