:root {
  --white: #ffffff;
  --mint: #e8f7f0;
  --teal: #12a37a;
  --teal-dark: #087c5e;
  --sky: #e6f2fb;
  --navy: #12253a;
  --navy-soft: #4f6275;
  --sunny: #ffcf5c;
  --line: #d8e7e1;
  --shadow-soft: 0 22px 60px rgba(18, 37, 58, 0.1);
  --shadow-card: 0 14px 36px rgba(18, 37, 58, 0.08);
  --radius-small: 0.85rem;
  --radius-medium: 1.35rem;
  --radius-large: 2rem;
  --radius-xl: 2.6rem;
  --container: 73.75rem;
  --font-heading: "Outfit", sans-serif;
  --font-body: "Nunito Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  color: var(--navy);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 10vw, 5.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 3.65rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

button,
a,
input,
select,
textarea {
  border-radius: 0.35rem;
}

:focus-visible {
  outline: 0.18rem solid var(--navy);
  outline-offset: 0.24rem;
  box-shadow: 0 0 0 0.38rem var(--sunny);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section-heading {
  width: min(100%, 47rem);
  margin: 0 auto clamp(2.6rem, 6vw, 4.25rem);
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--navy-soft);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.kicker {
  margin-bottom: 0.7rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.3rem;
  border: 0.125rem solid transparent;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(8, 124, 94, 0.24);
}

.button-primary:hover {
  background: var(--navy);
  box-shadow: 0 16px 30px rgba(18, 37, 58, 0.24);
}

.button-secondary {
  border-color: var(--teal);
  background: var(--white);
  color: var(--teal-dark);
}

.button-secondary:hover {
  background: var(--mint);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.75rem 1.15rem;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 0.8rem 1rem 0;
  pointer-events: none;
}

.nav-pill {
  position: relative;
  display: flex;
  width: min(100%, 68rem);
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
  padding: 0.62rem 0.72rem 0.62rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.89);
  box-shadow: 0 14px 38px rgba(18, 37, 58, 0.12);
  backdrop-filter: blur(1rem);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 0.78rem 0.78rem 0.78rem 0.25rem;
  background: var(--teal);
  transform: rotate(-4deg);
}

.brand-mark::before,
.brand-mark span {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 1.2rem;
  border-radius: 100% 0;
  background: var(--white);
  transform: rotate(-42deg) translate(-0.2rem, -0.1rem);
}

.brand-mark span {
  width: 0.58rem;
  height: 0.9rem;
  transform: rotate(38deg) translate(0.28rem, 0.13rem);
  opacity: 0.72;
}

.menu-toggle {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 auto;
  place-content: center;
  gap: 0.28rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 1.15rem;
  height: 0.125rem;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(0.405rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-0.405rem) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  left: 0;
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

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

.site-nav a {
  padding: 0.72rem 0.85rem;
  border-radius: 0.8rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--mint);
  color: var(--teal-dark);
}

.nav-cta {
  display: none;
}

.hero {
  position: relative;
  padding-top: clamp(4.2rem, 9vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 207, 92, 0.28), transparent 17rem),
    radial-gradient(circle at 85% 40%, rgba(18, 163, 122, 0.14), transparent 19rem),
    linear-gradient(180deg, var(--sky) 0%, rgba(230, 242, 251, 0.28) 62%, var(--white) 100%);
}

.hero-inner {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 0.52rem 0.85rem;
  border: 1px solid rgba(18, 163, 122, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0.28rem rgba(18, 163, 122, 0.13);
}

.hero h1 {
  max-width: 61rem;
  margin-inline: auto;
}

.hero h1 span {
  color: var(--teal-dark);
}

.hero-copy {
  max-width: 42rem;
  margin: 0 auto 1.65rem;
  color: var(--navy-soft);
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
}

.hero-button {
  width: min(100%, 17rem);
}

.call-link {
  display: block;
  width: fit-content;
  margin: 0.8rem auto 0;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

.trust-chips {
  display: grid;
  width: min(100%, 49rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 2rem auto 2.4rem;
  padding: 0;
  list-style: none;
}

.trust-chips li {
  display: flex;
  min-width: 0;
  min-height: 4.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.65rem 0.3rem;
  border: 1px solid rgba(18, 37, 58, 0.08);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(18, 37, 58, 0.05);
  font-size: clamp(0.66rem, 2.7vw, 0.9rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.mini-check {
  display: none;
  color: var(--teal);
}

.photo-slot {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(20rem, 48vw, 36rem);
  place-items: center;
  overflow: hidden;
  border: 0.55rem solid var(--white);
  border-radius: clamp(1.5rem, 5vw, var(--radius-xl));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 45%),
    linear-gradient(145deg, #bfe8d6 0%, var(--mint) 45%, #c7e2f4 100%);
  box-shadow: var(--shadow-soft);
}

.photo-slot.has-photo {
  min-height: 0;
  aspect-ratio: 1600 / 904;
  background: var(--mint);
}

.photo-slot.has-photo::before {
  display: none;
}

.photo-slot > img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center;
}

.photo-slot::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 4%;
  bottom: 4%;
  width: 62%;
  height: 70%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  transform: rotate(-8deg);
}

.photo-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.photo-bubble-one {
  top: 8%;
  left: 7%;
  width: clamp(4rem, 10vw, 8rem);
  aspect-ratio: 1;
}

.photo-bubble-two {
  right: 9%;
  bottom: 10%;
  width: clamp(6rem, 15vw, 12rem);
  aspect-ratio: 1;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  padding: 1.4rem;
  text-align: center;
}

.photo-placeholder strong {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.photo-placeholder small {
  margin-top: 0.25rem;
  color: var(--navy-soft);
  font-weight: 700;
}

.photo-icon {
  position: relative;
  width: 3.5rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  border: 0.2rem solid var(--teal-dark);
  border-radius: 0.8rem;
}

.photo-icon::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sunny);
}

.photo-icon::after {
  content: "";
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  left: 0.45rem;
  height: 1.15rem;
  background: var(--teal);
  clip-path: polygon(0 100%, 35% 25%, 53% 62%, 70% 38%, 100% 100%);
}

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

.price-toggle-wrap {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin: 0 auto 2.9rem;
}

.toggle-label {
  font-weight: 800;
}

.price-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
  padding: 0.32rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mint);
}

.toggle-option {
  min-height: 2.75rem;
  padding: 0.62rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.toggle-option.is-active {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 5px 14px rgba(18, 37, 58, 0.1);
}

.plan-grid {
  display: grid;
  align-items: stretch;
  gap: 1.25rem;
  padding-top: 1rem;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 2rem 1.35rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.plan-card.featured {
  border: 0.16rem solid var(--teal);
  background: linear-gradient(180deg, var(--mint) 0%, var(--white) 48%);
  box-shadow: 0 24px 52px rgba(18, 163, 122, 0.15);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--sunny);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-frequency {
  margin-bottom: 0.4rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-bottom: 1.15rem;
  font-size: 1.8rem;
}

.plan-price {
  display: flex;
  min-height: 4rem;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.price-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-unit {
  color: var(--navy-soft);
  font-weight: 700;
}

.plan-summary {
  min-height: 4.9rem;
  margin-bottom: 1.3rem;
  color: var(--navy-soft);
}

.plan-features {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.plan-features li span {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-button {
  width: 100%;
  margin-top: 2rem;
}

.pricing-note {
  max-width: 45rem;
  margin: 1.5rem auto 0;
  color: var(--navy-soft);
  font-size: 0.88rem;
  text-align: center;
}

.service-list {
  padding-inline: 1rem;
  background: var(--white);
}

.service-shell {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 4.5rem);
  border-radius: var(--radius-xl);
  background: var(--mint);
}

.service-content-grid {
  display: grid;
  min-width: 0;
  align-items: stretch;
  gap: 1.25rem;
}

.service-photo-frame {
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0.45rem solid var(--white);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.service-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center;
}

.checklist-grid {
  display: grid;
  min-width: 0;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 163, 122, 0.13);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.service-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 1rem;
  list-style: none;
}

.service-checklist + .service-checklist {
  border-top: 1px solid var(--line);
}

.service-checklist li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-checklist li:last-child {
  border-bottom: 0;
}

.check-icon {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-checklist strong,
.service-checklist small {
  display: block;
}

.service-checklist strong {
  margin-bottom: 0.12rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.service-checklist small {
  color: var(--navy-soft);
  font-size: 0.87rem;
  line-height: 1.45;
}

.swap-note {
  width: fit-content;
  max-width: 50rem;
  margin: 1.4rem auto 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.swap-note span {
  color: #b77d00;
}

.service-area {
  background: linear-gradient(180deg, var(--white), var(--sky));
}

.area-inner {
  text-align: center;
}

.area-tags {
  display: flex;
  width: min(100%, 56rem);
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 auto 1.8rem;
  padding: 0;
  list-style: none;
}

.area-tags li {
  padding: 0.67rem 1rem;
  border: 1px solid rgba(18, 37, 58, 0.08);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(18, 37, 58, 0.05);
  font-weight: 800;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-underline-offset: 0.28rem;
}

.steps-grid,
.review-grid {
  display: grid;
  align-items: stretch;
  gap: 1.2rem;
}

.step-card {
  position: relative;
  min-height: 100%;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.step-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.8;
}

.step-number {
  display: block;
  margin-bottom: 1.2rem;
  color: rgba(18, 163, 122, 0.18);
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.step-card h3 {
  margin-bottom: 0.75rem;
}

.step-card p {
  margin: 0;
  color: var(--navy-soft);
}

.reviews {
  background: var(--mint);
}

.review-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.65rem;
  border: 1px solid rgba(18, 163, 122, 0.12);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.stars {
  margin-bottom: 1rem;
  color: #a06000;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.review-card blockquote {
  margin: 0 0 1.6rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
}

.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-card footer strong {
  font-family: var(--font-heading);
}

.review-card footer span {
  color: var(--navy-soft);
  font-size: 0.86rem;
}

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

.faq-container {
  max-width: 53rem;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: 0 7px 20px rgba(18, 37, 58, 0.045);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover {
  background: var(--mint);
}

.faq-item button > span {
  position: relative;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--mint);
}

.faq-item button > span::before,
.faq-item button > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 0.12rem;
  border-radius: 999px;
  background: var(--teal-dark);
  transform: translate(-50%, -50%);
}

.faq-item button > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
}

.faq-answer p {
  margin: 0;
  color: var(--navy-soft);
}

.quote-section {
  background:
    radial-gradient(circle at 10% 90%, rgba(255, 207, 92, 0.2), transparent 18rem),
    var(--sky);
}

.quote-grid {
  display: grid;
  align-items: stretch;
  gap: 1.25rem;
}

.quote-form,
.reassurance-card {
  min-width: 0;
  height: 100%;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.quote-form {
  border: 1px solid rgba(18, 37, 58, 0.07);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field label span {
  color: var(--navy-soft);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid #b9ccc5;
  border-radius: 0.8rem;
  background: var(--white);
  color: var(--navy);
}

.form-field textarea {
  min-height: 7.2rem;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--teal);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal-dark);
  outline: 0.16rem solid var(--navy);
  outline-offset: 0.12rem;
  box-shadow: 0 0 0 0.32rem rgba(255, 207, 92, 0.9);
}

.form-submit {
  width: 100%;
  margin-top: 1.25rem;
  border: 0;
}

.form-note {
  margin: 0.75rem 0 0;
  color: var(--navy-soft);
  font-size: 0.84rem;
  text-align: center;
}

.form-success {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 163, 122, 0.25);
  border-radius: 0.8rem;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 800;
}

.reassurance-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.reassurance-kicker {
  margin-bottom: 0.55rem;
  color: var(--sunny);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reassurance-card h3 {
  margin-bottom: 1.8rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.next-steps {
  display: grid;
  gap: 1.2rem;
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
}

.next-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.next-steps li > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dark);
  font-family: var(--font-heading);
  font-weight: 800;
}

.next-steps p {
  margin: 0;
}

.next-steps strong,
.next-steps small {
  display: block;
}

.next-steps small {
  margin-top: 0.18rem;
  color: #bfd0df;
  line-height: 1.45;
}

.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  margin-top: auto;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.07);
}

.contact-icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sunny);
  color: var(--navy);
}

.contact-card small {
  display: block;
  color: #bfd0df;
}

.contact-card a {
  display: block;
  width: fit-content;
  margin: 0.08rem 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

.contact-card p {
  margin: 0;
  color: #bfd0df;
  font-size: 0.8rem;
}

.guarantee {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  color: #dbe7f0;
  font-size: 0.87rem;
}

.guarantee > span {
  color: var(--sunny);
  font-weight: 900;
}

.guarantee p {
  margin: 0;
}

.site-footer {
  padding: 4.5rem 0 1.7rem;
  background: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}

.footer-brand > p {
  max-width: 23rem;
  margin: 1rem 0 0;
  color: var(--navy-soft);
}

.footer-links,
.footer-areas {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links h2,
.footer-areas h2 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links a {
  width: fit-content;
  color: var(--navy-soft);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.footer-areas p {
  max-width: 26rem;
  margin: 0;
  color: var(--navy-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  color: var(--navy-soft);
  font-size: 0.82rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 35rem) {
  .mini-check {
    display: inline;
  }

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

  .form-field-wide {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(8rem, 0.6fr) minmax(0, 1fr);
  }
}

@media (min-width: 48rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .service-list {
    padding-inline: 1.5rem;
  }

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

  .service-checklist {
    padding: 0 1.5rem;
  }

  .service-checklist + .service-checklist {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .service-checklist li:last-child {
    border-bottom: 0;
  }

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

@media (min-width: 53rem) {
  .site-header {
    padding-top: 1rem;
  }

  .nav-pill {
    padding-left: 1.25rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    width: auto;
    flex-direction: row;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.65rem 0.72rem;
    font-size: 0.9rem;
  }

  .nav-cta {
    display: inline-flex;
  }
}

@media (min-width: 60rem) {
  .plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-card {
    padding: 2.35rem 1.7rem 1.7rem;
  }

  .quote-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.85fr);
  }

  .service-content-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .service-photo-frame {
    aspect-ratio: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Standard: back-to-top button with scroll-progress ring */
.btt-button {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900;
  width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(17, 17, 17, 0.85); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btt-button.btt-visible { opacity: 1; visibility: visible; transform: none; }
.btt-button:focus-visible { outline: 3px solid #12a37a; outline-offset: 3px; }
.btt-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.btt-ring circle { fill: none; stroke-width: 3; }
.btt-ring-track { stroke: rgba(255, 255, 255, 0.22); }
.btt-ring-fill { stroke: #12a37a; stroke-dasharray: 125.66; stroke-dashoffset: 125.66; stroke-linecap: round; }
.btt-arrow { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (prefers-reduced-motion: reduce) { .btt-button { transition: none; } }
