:root {
  --ink: #061b33;
  --muted: #536c82;
  --teal: #00788f;
  --teal-dark: #003d73;
  --mint: #d9fbff;
  --blue: #0575e6;
  --blue-dark: #0047ab;
  --cyan: #00b8d9;
  --coral: #e84b45;
  --sun: #ffd166;
  --sky: #e7f5ff;
  --paper: #f3f9ff;
  --white: #ffffff;
  --line: #cfe3f2;
  --shadow: 0 22px 55px rgba(0, 63, 125, 0.18);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #e8f6ff 0%, #f8fbff 32%, #f3f9ff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

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

.hero-copy,
.lead-form,
.section-copy,
.poster-panel,
.split-layout > *,
.area-layout > *,
.contact-layout > *,
.feature-card,
.step-grid article,
.mobile-cta a {
  min-width: 0;
}

.narrow {
  width: min(760px, calc(100% - 32px));
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--teal-dark);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only,
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header.compact,
.site-header.is-scrolled {
  background: rgba(245, 251, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 63, 125, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand span {
  display: grid;
  gap: 0;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(5, 117, 230, 0.12);
}

.nav-call {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white) !important;
}

.nav-call svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  display: none;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 63, 125, 0.16);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 209, 102, 0.34), transparent 26%),
    linear-gradient(135deg, #0052cc 0%, #0575e6 45%, #00b8d9 100%);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(236, 248, 255, 0.98) 0%, rgba(226, 246, 255, 0.92) 39%, rgba(5, 117, 230, 0.24) 72%),
    linear-gradient(180deg, rgba(214, 242, 255, 0.94) 0%, rgba(255, 255, 255, 0.18) 35%, rgba(0, 61, 115, 0.38) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
  padding: 122px 0 76px;
}

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

.eyebrow,
.form-kicker,
.poster-label {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), #fff1bd);
  color: #003d73;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 100%;
  white-space: normal;
  line-height: 1.2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1.02;
  max-width: 11ch;
}

h2 {
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  color: #23445f;
  font-size: 18px;
}

.hero-actions,
.form-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.center-actions {
  justify-content: center;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff5148, #e22f43);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(232, 75, 69, 0.28);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #0aa67f, #008b78);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.25);
}

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
  border: 1px solid var(--line);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.lead-form {
  background: rgba(255, 255, 255, 0.96);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(207, 227, 242, 0.75);
}

.form-head {
  margin-bottom: 18px;
}

.form-head h2 {
  margin-bottom: 0;
  font-size: 25px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #2b3c40;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  outline: 0;
  font-weight: 500;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(5, 117, 230, 0.15);
}

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

.trust-strip {
  background: linear-gradient(135deg, #0047ab, #0067c7 46%, #008da8);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid strong {
  font-size: 24px;
  line-height: 1.1;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 84px 0;
}

.section-clean {
  background: #f8fbff;
}

.section-tint {
  background:
    linear-gradient(135deg, rgba(0, 184, 217, 0.13), rgba(255, 209, 102, 0.17)),
    var(--sky);
}

.split-layout,
.area-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 44px;
  align-items: center;
}

.section-copy p,
.seo-copy p,
.page-hero p {
  color: var(--muted);
  font-size: 17px;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.price-card {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 63, 125, 0.1);
}

.price-card-primary {
  border-color: rgba(232, 75, 69, 0.35);
  background: linear-gradient(145deg, rgba(255, 209, 102, 0.32), rgba(232, 75, 69, 0.09) 42%, var(--white) 78%);
}

.price-card span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.price-card p {
  max-width: 100%;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: break-word;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  transform: translateY(-50%);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.72em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translateY(-65%) rotate(-45deg);
}

.poster-panel {
  min-height: 420px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0, 47, 107, 0.94), rgba(0, 184, 217, 0.42)),
    url("../images/hero-installation.png") center right / cover;
  box-shadow: var(--shadow);
}

.poster-panel h3 {
  font-size: 34px;
  max-width: 12ch;
}

.poster-panel p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 320px;
}

.poster-panel .poster-label {
  background: var(--sun);
  color: var(--ink);
}

.kit-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 209, 102, 0.34), transparent 26%),
    linear-gradient(135deg, #f4fbff 0%, #e4f5ff 48%, #d9fbff 100%);
}

.kit-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.kit-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    linear-gradient(145deg, #d9fbff, #fff1bd);
  border: 1px solid rgba(207, 227, 242, 0.8);
  box-shadow: var(--shadow);
}

.kit-photo {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(238, 0, 134, 0.13), transparent 30%),
    radial-gradient(circle at 82% 80%, rgba(255, 207, 43, 0.2), transparent 28%),
    linear-gradient(145deg, #f6e9ff 0%, #edf9ff 54%, #fff6cf 100%);
}

.kit-photo img {
  width: min(100%, 470px);
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 28px rgba(0, 46, 89, 0.2));
}

.kit-copy p {
  color: var(--muted);
  font-size: 17px;
}

.kit-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.kit-includes span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(0, 63, 125, 0.1);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.kit-actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 63, 125, 0.1);
}

.kit-actions a {
  min-height: 96px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 12px 8px;
  border-right: 1px solid var(--line);
  color: #3f145e;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.kit-actions a:last-child {
  border-right: 0;
}

.kit-actions svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.plan-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
}

.center-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.center-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

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

.plan-card {
  min-height: 230px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 63, 125, 0.1);
  text-align: center;
}

.plan-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.plan-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.plan-blue .plan-icon {
  background: #dff1ff;
  color: #0575e6;
}

.plan-green .plan-icon {
  background: #d9fbec;
  color: #008b78;
}

.plan-purple .plan-icon {
  background: #f2e4ff;
  color: #8d3edb;
}

.plan-orange .plan-icon {
  background: #fff1dc;
  color: #d7651d;
}

.plan-card h3 {
  margin-bottom: 0;
}

.plan-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.plan-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

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

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

.feature-card,
.step-grid article {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 35px rgba(0, 63, 125, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mint), #fff1bd);
  color: var(--blue-dark);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-card p,
.step-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.area-list a {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #edf8ff);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0, 63, 125, 0.1);
  text-decoration: none;
  font-weight: 800;
}

.process-band {
  background: linear-gradient(135deg, #003d73, #0052cc 48%, #00788f);
  color: var(--white);
}

.process-band .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.step-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.step-grid span {
  color: var(--sun);
  font-weight: 900;
}

.step-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

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

.cta-band {
  padding: 42px 0;
  background: linear-gradient(135deg, #ffd166 0%, #ffb84d 42%, #00b8d9 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  margin-bottom: 0;
}

.site-footer {
  padding: 52px 0 28px;
  background: linear-gradient(135deg, #061b33, #003d73);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

.footer-brand,
.footer-brand small,
.footer-grid a {
  color: var(--white);
}

.footer-grid p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid h2 {
  font-size: 16px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

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

.footer-bottom p {
  margin-bottom: 0;
}

.page-hero {
  padding: 140px 0 70px;
  background:
    linear-gradient(120deg, rgba(0, 184, 217, 0.22), rgba(255, 209, 102, 0.36)),
    linear-gradient(135deg, #f4fbff, #e7f5ff);
  text-align: center;
}

.page-hero h1 {
  max-width: none;
  margin-inline: auto;
  font-size: 48px;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-tile {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 63, 125, 0.1);
}

.contact-tile span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-tile strong {
  font-size: 20px;
  overflow-wrap: anywhere;
}

.page-form {
  box-shadow: 0 18px 42px rgba(0, 63, 125, 0.14);
}

.legal-content {
  padding: 54px 0 84px;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 24px;
}

.legal-content p {
  color: var(--muted);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background: var(--paper);
}

.thank-you-page .page-hero {
  padding-top: 80px;
  background: transparent;
}

.thank-you-page img {
  margin: 0 auto 18px;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: min(340px, calc(100% - 24px));
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(0, 63, 125, 0.24);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #ff5148, #e22f43);
  font-weight: 900;
  white-space: nowrap;
}

.mobile-cta a:last-child {
  background: linear-gradient(135deg, #0aa67f, #008b78);
}

.mobile-cta svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(245, 251, 255, 0.94);
    box-shadow: 0 10px 30px rgba(0, 63, 125, 0.12);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open,
  .site-nav.always-open {
    display: flex;
  }

  .site-nav.always-open {
    position: static;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-layout,
  .kit-layout,
  .area-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 108px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(232, 247, 255, 0.97) 0%, rgba(223, 245, 255, 0.9) 46%, rgba(5, 117, 230, 0.14) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(0, 184, 217, 0.12));
  }

  h1 {
    max-width: 12ch;
    font-size: 43px;
  }

  h2 {
    font-size: 28px;
  }

  .lead-form {
    max-width: 520px;
  }

  .trust-grid,
  .feature-grid,
  .plan-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(calc(100% - 32px), 358px);
    margin-left: auto;
    margin-right: auto;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand small {
    max-width: 140px;
  }

  .site-nav.always-open a:not(.nav-call) {
    display: none;
  }

  .hero-grid {
    gap: 28px;
    padding: 96px 0 52px;
    justify-items: center;
  }

  .hero-copy,
  .hero .lead-form {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    display: inline-block;
    width: auto;
    overflow-wrap: anywhere;
    font-size: 11px;
    padding: 5px 9px;
  }

  .hero-media {
    object-position: 68% center;
  }

  h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .page-hero p {
    max-width: 27ch;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .page-hero .narrow,
  .contact-layout {
    max-width: 300px;
  }

  .hero-text,
  .section-copy p,
  .seo-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-text {
    max-width: 32ch;
  }

  .hero-actions,
  .form-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-copy .hero-actions,
  .hero .lead-form {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    width: 100%;
  }

  .lead-form {
    width: 100%;
    padding: 18px;
  }

  .trust-grid,
  .feature-grid,
  .plan-grid,
  .step-grid,
  .footer-grid,
  .area-list,
    .pricing-grid,
    .kit-includes {
    grid-template-columns: 1fr;
  }

  .kit-visual {
    min-height: 260px;
    padding: 22px;
  }

  .kit-actions {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
  }

  .kit-actions a {
    min-height: 76px;
    gap: 6px;
    padding: 9px 4px;
    font-size: 10px;
  }

  .kit-actions svg {
    width: 22px;
    height: 22px;
  }

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

  .plan-card {
    min-height: 174px;
    padding: 18px 10px;
  }

  .plan-icon {
    width: 52px;
    height: 52px;
  }

  .plan-icon svg {
    width: 25px;
    height: 25px;
  }

  .plan-card h3 {
    font-size: 15px;
  }

  .plan-card p {
    font-size: 12px;
  }

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

  .price-card strong {
    font-size: 24px;
  }

  .trust-grid div,
  .trust-grid div:last-child {
    min-height: 86px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 58px 0;
  }

  .poster-panel {
    min-height: 350px;
  }

  .poster-panel h3 {
    font-size: 30px;
  }

  .page-hero {
    padding: 112px 0 56px;
  }

  .mobile-cta {
    width: min(340px, calc(100% - 24px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 32px), 358px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid {
    justify-items: center;
  }

  .hero-copy,
  .hero .lead-form {
    max-width: min(100%, 358px);
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-cta {
    left: 12px;
    right: auto;
    width: calc(100% - 24px);
    transform: translateY(12px);
  }

  .mobile-cta.is-visible {
    transform: none;
  }
}

@media (max-width: 300px) {
  .container {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid {
    padding-top: 86px;
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: 30px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 14px;
  }

  .lead-form {
    padding: 14px;
  }

  .form-head h2 {
    font-size: 22px;
  }

  .btn {
    padding: 11px 12px;
    font-size: 14px;
  }
}
