:root {
  --bg: #f4f8f2;
  --surface: #ffffff;
  --surface-muted: #edf4ea;
  --text: #102017;
  --text-soft: #3f4f45;
  --accent: #1f8f4e;
  --accent-dark: #15703a;
  --line: #d3dfd2;
  --shadow: 0 14px 34px rgba(16, 32, 23, 0.08);
  --radius: 18px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 100% -50%, rgba(31, 143, 78, 0.12), transparent 70%),
    radial-gradient(900px 400px at -10% 10%, rgba(31, 143, 78, 0.09), transparent 72%),
    var(--bg);
  line-height: 1.45;
  padding-bottom: 84px;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(244, 248, 242, 0.85);
  border-bottom: 1px solid rgba(16, 32, 23, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  min-width: 0;
  text-decoration: none;
  align-self: flex-end;
  transform: translateY(16px);
}

.brand-mark {
  width: clamp(11rem, 30vw, 15rem);
  height: clamp(3.2rem, 8.2vw, 4.35rem);
  border-radius: 0;
  flex: 0 0 auto;
  margin-top: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: transform 0.26s ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.7);
  transform-origin: center;
}

.brand-word {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: scale(1.05);
}

.brand:hover .brand-word,
.brand:focus-visible .brand-word {
  color: var(--accent-dark);
}

.top-nav {
  display: none;
  align-items: center;
  gap: 0.28rem;
  padding: 0;
}

.top-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.42rem 0.58rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.top-nav a:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -0.16rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.9rem;
  border-radius: 999px;
  background: rgba(16, 32, 23, 0.2);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--accent-dark);
  background: rgba(31, 143, 78, 0.09);
  border-color: rgba(31, 143, 78, 0.2);
}

.top-nav a:focus-visible {
  outline: 2px solid rgba(31, 143, 78, 0.28);
  outline-offset: 2px;
}

.section {
  padding: 4.4rem 0;
}

.reveal-section {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal-section {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.62s ease, transform 0.62s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-muted {
  background: linear-gradient(180deg, rgba(237, 244, 234, 0.55), rgba(237, 244, 234, 0.35));
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  line-height: 1.15;
}

.section-head p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
}

.hero {
  padding-top: clamp(2.3rem, 5vw, 3.6rem);
  padding-bottom: clamp(2.2rem, 4.6vw, 3.1rem);
}

.hero-grid {
  display: grid;
  align-items: start;
  gap: clamp(1rem, 2.3vw, 1.8rem);
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  max-width: 36rem;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-city-chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-city-chips li {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  border: 1px solid rgba(31, 143, 78, 0.28);
  background:
    linear-gradient(180deg, rgba(31, 143, 78, 0.18), rgba(31, 143, 78, 0.07)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6.1vw, 3.12rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 14ch;
}

.hero-offer {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(16, 32, 23, 0.16);
  border-bottom: 1px solid rgba(16, 32, 23, 0.16);
  background: transparent;
  box-shadow: none;
}

.hero-offer-text {
  display: grid;
  gap: 0.5rem;
}

.hero-offer-main,
.hero-offer-label,
.hero-pay-line,
.hero-offer-insured {
  margin: 0;
  font-size: clamp(1.04rem, 2.2vw, 1.18rem);
  line-height: 1.38;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

.hero-offer-line {
  display: flex;
  align-items: flex-start;
  gap: 0.42rem;
}

.hero-offer-line-plain {
  padding-left: 1.7rem;
}

.hero-offer-mark {
  flex: 0 0 auto;
  line-height: 1.38;
  font-size: 0.9em;
  color: var(--text);
}

.hero-location {
  margin: 1rem 0 0;
  font-weight: 600;
  color: var(--text-soft);
}

.hero-subtitle {
  margin: 0.75rem 0 0;
  max-width: 48ch;
  color: var(--text-soft);
}

.hero-reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 0.68s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
  animation-delay: var(--hero-delay, 0s);
}

.hero-cta-row {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
}

.hero-cta-row .btn {
  min-width: min(100%, 15.5rem);
}

.hero-main-cta.btn-lg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: clamp(4.6rem, 6.8vw, 5.4rem);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 800;
  border-radius: 20px;
  letter-spacing: 0.01em;
  box-shadow:
    0 16px 30px rgba(21, 112, 58, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-main-cta::after {
  content: "";
  position: absolute;
  top: -12%;
  left: -48%;
  width: 42%;
  height: 124%;
  transform: skewX(-20deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: hero-cta-shine 3.5s cubic-bezier(0.25, 0.75, 0.3, 1) infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-main-cta:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 20px 34px rgba(21, 112, 58, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.hero-trust {
  margin-top: 0.34rem;
  display: grid;
  gap: 0.5rem;
  width: min(100%, 34rem);
}

.hero-trust-title {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-trust-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0.5rem;
}

.hero-logo-card {
  display: grid;
  gap: 0.45rem;
  justify-items: stretch;
  min-width: 0;
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.4rem;
  padding: 0.56rem 0.62rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 32, 23, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 18px rgba(16, 32, 23, 0.08);
}

.hero-logo-badge img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 4.18rem;
  object-fit: contain;
}

.hero-logo-yelp {
  max-width: 100%;
}

.hero-logo-google {
  max-width: 100%;
}

.hero-logo-third {
  max-width: 100%;
}

.hero-logo-link {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-logo-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(16, 32, 23, 0.12);
}

.hero-logo-link:focus-visible {
  outline: 3px solid rgba(31, 143, 78, 0.35);
  outline-offset: 2px;
}

.hero-logo-cta {
  width: 100%;
  min-height: 2.25rem;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  padding-inline: 0.44rem;
  line-height: 1.1;
  text-align: center;
}

.btn {
  --btn-bg: var(--surface);
  --btn-color: var(--text);
  --btn-border: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 14px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-color);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.005em;
  padding: 0.5rem 0.9rem;
  box-shadow: 0 1px 0 rgba(16, 32, 23, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(16, 32, 23, 0.12);
}

.btn:focus-visible {
  outline: 3px solid rgba(31, 143, 78, 0.32);
  outline-offset: 2px;
}

.btn-primary {
  --btn-bg: var(--accent);
  --btn-color: #fff;
  --btn-border: var(--accent);
}

.btn-primary:hover {
  --btn-bg: var(--accent-dark);
  --btn-border: var(--accent-dark);
}

.btn-outline {
  --btn-bg: var(--surface);
  --btn-color: var(--accent-dark);
  --btn-border: rgba(31, 143, 78, 0.4);
}

.btn-ghost {
  --btn-bg: rgba(31, 143, 78, 0.1);
  --btn-color: var(--accent-dark);
  --btn-border: rgba(31, 143, 78, 0);
}

.btn-lg {
  min-height: 3.45rem;
  font-size: 1.03rem;
  padding-inline: 1.2rem;
}

.btn-sm {
  min-height: 2.35rem;
  font-size: 0.88rem;
  padding-inline: 0.72rem;
}

.header-cta {
  min-height: 2.9rem;
  padding-inline: clamp(1rem, 2.1vw, 1.45rem);
  font-size: 0.95rem;
  font-weight: 800;
  border-color: rgba(21, 112, 58, 0.95);
  box-shadow:
    0 10px 22px rgba(31, 143, 78, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 14px 26px rgba(31, 143, 78, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-block {
  width: 100%;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-calendar-card {
  width: 100%;
  padding: clamp(1rem, 2.2vw, 1.3rem);
  border-color: rgba(31, 143, 78, 0.34);
  background:
    linear-gradient(165deg, rgba(31, 143, 78, 0.16), rgba(255, 255, 255, 0.98) 45%),
    var(--surface);
}

.hero-calendar-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -160px;
  top: -150px;
  background: radial-gradient(circle at 30% 30%, rgba(31, 143, 78, 0.25), rgba(31, 143, 78, 0));
  pointer-events: none;
  animation: orb-drift 8.4s ease-in-out infinite;
}

.hero-calendar-card > * {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.calendar-kicker {
  margin: 0 0 0.86rem;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    var(--accent-dark);
}

.calendar-shell {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  padding: clamp(0.76rem, 1.9vw, 1rem);
  background:
    linear-gradient(160deg, rgba(16, 32, 23, 0.48), rgba(31, 143, 78, 0.44)),
    #1b3f2a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.calendar-head {
  display: grid;
  grid-template-columns: 2.3rem 1fr 2.3rem;
  gap: 0.56rem;
  align-items: center;
}

.calendar-month {
  margin: 0;
  text-align: center;
  font-size: clamp(1.08rem, 2.2vw, 1.24rem);
  font-weight: 800;
  color: #eaf4ed;
}

.calendar-nav {
  min-height: 2.3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #eaf4ed;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.calendar-nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.21);
}

.calendar-nav:focus-visible {
  outline: 3px solid rgba(180, 232, 198, 0.5);
  outline-offset: 2px;
}

.calendar-nav:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.calendar-weekdays {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: rgba(234, 244, 237, 0.83);
}

.calendar-grid {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
}

.calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  min-height: clamp(2rem, 4.4vw, 2.3rem);
  border-radius: 11px;
  border: 1px solid rgba(234, 244, 237, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #f4fbf6;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.calendar-day:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.19);
}

.calendar-day:focus-visible {
  outline: 3px solid rgba(180, 232, 198, 0.5);
  outline-offset: 1px;
}

.calendar-day.is-disabled {
  cursor: not-allowed;
  opacity: 0.4;
  background: rgba(255, 255, 255, 0.07);
}

.calendar-day.is-disabled:hover {
  transform: none;
}

.calendar-day.is-outside {
  opacity: 0;
  pointer-events: none;
}

.calendar-day.is-selected {
  border-color: rgba(255, 255, 255, 0.88);
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.calendar-selected-date {
  margin: 0.95rem 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.calendar-slots {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.calendar-slot {
  justify-content: space-between;
  gap: 0.7rem;
  min-height: clamp(2.8rem, 5vw, 3.08rem);
  padding-inline: 0.84rem;
}

.calendar-slot-time {
  font-size: clamp(0.84rem, 2.1vw, 0.92rem);
  font-weight: 700;
}

.calendar-slot-status {
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.18);
}

.cards-grid {
  display: grid;
  gap: 0.9rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
}

.card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.86rem;
  height: 1.86rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 78, 0.34);
  background: linear-gradient(180deg, rgba(31, 143, 78, 0.16), rgba(31, 143, 78, 0.05));
  font-size: 1.01rem;
  line-height: 1;
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--text-soft);
}

.package-card {
  position: relative;
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-head {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 1.72rem;
}

.package-badge {
  margin: 0 0 0 auto;
  width: fit-content;
  min-height: 1.72rem;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(21, 112, 58, 0.26);
  background: linear-gradient(180deg, rgba(31, 143, 78, 0.18), rgba(31, 143, 78, 0.08));
  color: var(--accent-dark);
  font-size: 0.76rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.featured .package-badge {
  transform: none;
}

.package-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.price {
  margin: 0.4rem 0 1.65rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--accent-dark);
}

.package-card .price + * {
  margin-top: 1.04rem;
}

.package-card ul {
  margin: 0.9rem 0 1rem;
  padding-left: 1rem;
  color: var(--text-soft);
}

.package-card li + li {
  margin-top: 0.35rem;
}

.package-intro {
  margin: 0.62rem 0 0;
  color: var(--text-soft);
}

.package-group-title {
  margin: 0.82rem 0 0.34rem;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text);
}

.package-list {
  margin: 0.34rem 0 0.86rem;
}

.package-note {
  margin: 0.32rem 0 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.package-note-addon {
  margin-bottom: 0.86rem;
}

.package-card .btn {
  margin-top: auto;
}

.addons-block {
  margin-top: 1.05rem;
}

.addons-title {
  margin: 0 0 0.58rem;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

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

.addon-card {
  max-width: 34rem;
  width: 100%;
  margin-inline: auto;
}

.addon-card .btn {
  margin-top: 2.2rem;
}

.addon-line {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text);
}

.addon-sep {
  opacity: 0.8;
}

.addon-price {
  color: var(--accent-dark);
}

.featured {
  border-color: rgba(31, 143, 78, 0.72);
  box-shadow:
    0 18px 36px rgba(31, 143, 78, 0.18),
    0 0 0 1px rgba(31, 143, 78, 0.18);
  background:
    radial-gradient(220px 150px at 100% 0, rgba(31, 143, 78, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(31, 143, 78, 0.1), rgba(31, 143, 78, 0)),
    var(--surface);
}

.ba-grid {
  display: grid;
  gap: 1.08rem 1rem;
  align-items: start;
}

.ba-item {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.ba-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.72rem;
  align-self: start;
  height: 100%;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.42rem;
}

.ba-image {
  margin: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ba-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  cursor: zoom-in;
  transition: filter 0.2s ease;
}

.ba-image::after {
  content: "";
  position: absolute;
  right: 0.38rem;
  bottom: 1.5rem;
  z-index: 2;
  width: clamp(132px, 50%, 258px);
  aspect-ratio: 320 / 213;
  background: rgba(245, 255, 249, 0.66);
  -webkit-mask-image: url("assets/images/logo-header-green.svg");
  mask-image: url("assets/images/logo-header-green.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: drop-shadow(0 3px 10px rgba(8, 17, 12, 0.58));
  pointer-events: none;
}

.ba-image:hover img {
  filter: brightness(0.97);
}

.ba-image figcaption {
  position: absolute;
  left: 0.42rem;
  bottom: 0.42rem;
  z-index: 3;
  margin: 0;
  padding: 0.2rem 0.46rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 243, 229, 0.56);
  background: rgba(7, 19, 12, 0.54);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(245, 255, 250, 0.92);
  backdrop-filter: blur(1.5px);
}

.ba-caption {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.ba-caption-location {
  display: inline-block;
  margin-top: 0.14rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-soft);
}

.project-lightbox[hidden] {
  display: none !important;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: clamp(0.9rem, 2.7vw, 2rem);
  background: rgba(7, 15, 11, 0.92);
  backdrop-filter: blur(3px);
}

.project-lightbox-content {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
}

.project-lightbox-media {
  position: relative;
  display: inline-block;
  max-width: min(96vw, 1700px);
  max-height: 88vh;
}

.project-lightbox-media::after {
  content: "";
  position: absolute;
  right: clamp(0.75rem, 1.5vw, 1.4rem);
  bottom: clamp(1rem, 2.4vw, 1.8rem);
  z-index: 2;
  width: clamp(164px, 32vw, 420px);
  aspect-ratio: 320 / 213;
  background: rgba(246, 255, 250, 0.6);
  -webkit-mask-image: url("assets/images/logo-header-green.svg");
  mask-image: url("assets/images/logo-header-green.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: drop-shadow(0 6px 18px rgba(8, 17, 12, 0.64));
  pointer-events: none;
}

.project-lightbox-close {
  position: absolute;
  top: clamp(0.65rem, 1.8vw, 1rem);
  right: clamp(0.65rem, 1.8vw, 1rem);
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.project-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.project-lightbox-nav[data-lightbox-nav="prev"] {
  left: clamp(0.4rem, 1.2vw, 0.9rem);
}

.project-lightbox-nav[data-lightbox-nav="next"] {
  right: clamp(0.4rem, 1.2vw, 0.9rem);
}

.project-lightbox-nav:hover,
.project-lightbox-nav:focus-visible,
.project-lightbox-close:hover,
.project-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.project-lightbox-nav[hidden] {
  display: none;
}

.project-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

.project-lightbox-caption {
  margin-top: 0.55rem;
  color: rgba(242, 249, 244, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 700px) {
  .project-lightbox-nav {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.72rem;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.how-chat {
  position: relative;
  margin: 0 auto;
  display: grid;
  gap: 0.88rem;
  max-width: 70rem;
}

.how-chat::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  bottom: 0.75rem;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(31, 143, 78, 0),
    rgba(31, 143, 78, 0.28),
    rgba(31, 143, 78, 0)
  );
  pointer-events: none;
}

.how-bubble {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.74rem;
  width: min(100%, 39rem);
  padding: 1.02rem 1.14rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 143, 78, 0.24);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(16, 32, 23, 0.09);
  opacity: 1;
  transform: none;
}

.how-bubble-left {
  margin-right: auto;
}

.how-bubble-right {
  margin-left: auto;
  border-color: rgba(31, 143, 78, 0.38);
  background:
    linear-gradient(180deg, rgba(31, 143, 78, 0.13), rgba(255, 255, 255, 0.92)),
    #fff;
}

.how-bubble-shift-right {
  margin-left: 10%;
}

.how-bubble-shift-left {
  margin-right: 25%;
}

.how-bubble-right-shift {
  margin-right: 5%;
}

.how-bubble-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.84rem;
  height: 1.84rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 78, 0.42);
  background: rgba(31, 143, 78, 0.14);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.how-bubble p {
  margin: 0;
  color: var(--text-soft);
}

.how-bubble-copy {
  display: grid;
  gap: 0.2rem;
}

.how-bubble-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.28;
  font-weight: 800;
  color: var(--text);
}

.how-bubble-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.34;
  font-weight: 400;
  color: var(--text-soft);
}

.motion-ready .how-chat .how-bubble {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
}

.motion-ready #how-it-works.is-visible .how-chat .how-bubble {
  animation: how-bubble-pop 0.56s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
  animation-delay: calc(120ms + var(--bubble-index, 0) * 140ms);
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
}

.reviews-nav-btn {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 78, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 32, 23, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.reviews-nav-btn:hover,
.reviews-nav-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(16, 32, 23, 0.15);
  background: rgba(246, 251, 245, 0.98);
}

.reviews-nav-btn:focus-visible {
  outline: 3px solid rgba(31, 143, 78, 0.28);
  outline-offset: 2px;
}

.reviews-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  --reviews-fade-edge: clamp(22px, 3.2vw, 46px);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0, 0, 0, 0.45) calc(var(--reviews-fade-edge) * 0.45),
    #000 var(--reviews-fade-edge),
    #000 calc(100% - var(--reviews-fade-edge)),
    rgba(0, 0, 0, 0.45) calc(100% - (var(--reviews-fade-edge) * 0.45)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0, 0, 0, 0.45) calc(var(--reviews-fade-edge) * 0.45),
    #000 var(--reviews-fade-edge),
    #000 calc(100% - var(--reviews-fade-edge)),
    rgba(0, 0, 0, 0.45) calc(100% - (var(--reviews-fade-edge) * 0.45)),
    transparent 100%
  );
}

.reviews-viewport:active {
  cursor: grabbing;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 0.9rem;
  width: max-content;
  padding: 0.15rem 0.05rem 0.25rem;
}

.review-card {
  width: clamp(17rem, 30vw, 25rem);
  min-height: 10.8rem;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(16, 32, 23, 0.08);
}

.review-text {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.42;
  text-align: justify;
  text-justify: inter-word;
}

.review-rating {
  margin: 0 0 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.review-stars {
  color: #e3ac1a;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(112, 75, 10, 0.28);
}

.review-score {
  font-size: 0.78rem;
  font-weight: 700;
  color: #8a6c1d;
}

.review-meta {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.35;
}

.review-author {
  display: block;
  color: var(--text-soft);
}

.review-date {
  display: block;
  color: #61756a;
  font-weight: 600;
  font-size: 0.84rem;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.78rem;
  align-items: start;
}

.faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(16, 32, 23, 0.06);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 1rem 2.65rem 1rem 1.06rem;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  position: absolute;
  right: 1.04rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-dark);
  background: rgba(31, 143, 78, 0.12);
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 1.06rem 1rem;
  border-top: 1px solid rgba(31, 143, 78, 0.18);
}

.faq-answer p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.final-cta {
  background:
    radial-gradient(500px 260px at 100% 0%, rgba(31, 143, 78, 0.16), transparent 70%),
    #f1f8ef;
}

.final-cta-grid {
  display: grid;
  gap: 1.2rem;
}

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

.quote-form label {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0.35rem 0 0.35rem;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #b9cab9;
  border-radius: 10px;
  font: inherit;
  min-height: 2.95rem;
  padding: 0.65rem 0.7rem;
  color: var(--text);
  background: #fff;
}

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

.quote-form input[type="file"] {
  padding: 0.55rem;
  min-height: 2.5rem;
}

.quote-form input:focus-visible,
.quote-form textarea:focus-visible {
  outline: 3px solid rgba(31, 143, 78, 0.26);
  outline-offset: 1px;
}

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

.site-footer {
  padding: 2.4rem 0 1.35rem;
  border-top: 1px solid rgba(16, 32, 23, 0.11);
  background:
    linear-gradient(180deg, rgba(247, 250, 246, 0.98), rgba(238, 246, 237, 0.98)),
    #f7faf6;
}

.footer-top {
  display: grid;
  gap: 1.15rem;
}

.footer-brand {
  display: grid;
  gap: 0;
  justify-items: start;
  width: min(100%, 32rem);
}

.footer-title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
  font-weight: 800;
}

.footer-text {
  margin: 0;
  color: var(--text-soft);
  max-width: 42ch;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  width: min(100%, 22rem);
  margin-top: 0.08rem;
  margin-bottom: 0.52rem;
}

.footer-actions .btn {
  min-height: 2.6rem;
}

.footer-slot-btn {
  width: 100%;
  min-width: 0;
  min-height: 2.45rem;
  font-size: clamp(0.86rem, 1.15vw, 0.95rem);
  font-weight: 800;
  border-radius: 12px;
  border: 1px solid rgba(31, 143, 78, 0.42);
  box-shadow:
    0 12px 24px rgba(21, 112, 58, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.footer-col-title {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--accent-dark);
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: var(--text-soft);
  text-decoration: none;
}

.footer-col a {
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--accent-dark);
}

.footer-email-btn {
  width: min(100%, 22rem);
  min-height: 2.2rem;
  justify-content: flex-start;
  border-radius: 12px;
  padding-inline: 0.74rem;
  font-size: clamp(0.76rem, 1.02vw, 0.86rem);
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-email-btn:hover,
.footer-email-btn:focus-visible {
  color: #000;
}

.footer-bottom {
  margin-top: 1.1rem;
  padding-top: 0.82rem;
  border-top: 1px solid rgba(16, 32, 23, 0.11);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 0.8rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.52rem;
  padding: 0.58rem;
  background: rgba(244, 248, 242, 0.95);
  backdrop-filter: blur(7px);
  border-top: 1px solid rgba(16, 32, 23, 0.1);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-cta-shine {
  0% {
    left: -52%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  42% {
    left: 118%;
    opacity: 0;
  }
  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, 8px, 0) scale(1.05);
  }
}

@keyframes how-bubble-pop {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  72% {
    opacity: 1;
    transform: translateY(-2px) scale(1.015);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark {
    transition: none;
  }

  .brand:hover .brand-mark,
  .brand:focus-visible .brand-mark {
    transform: none;
  }

  .hero-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-main-cta::after {
    animation: none;
  }

  .hero-logo-link {
    transition: none;
  }

  .hero-logo-link:hover {
    transform: none;
  }

  .hero-calendar-card::before {
    animation: none;
  }

  .motion-ready .how-chat .how-bubble,
  .motion-ready #how-it-works.is-visible .how-chat .how-bubble {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .motion-ready .reveal-section,
  .motion-ready .reveal-section.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 640px) {
  .brand-word {
    font-size: 1.1rem;
  }

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

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  body {
    padding-bottom: 0;
  }

  .top-nav {
    display: flex;
  }

  .header-cta {
    min-height: 3.05rem;
    padding-inline: 1.35rem;
    font-size: 0.98rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    align-items: start;
    gap: 1.65rem;
  }

  .hero-copy {
    padding-top: 0.22rem;
  }

  .hero-main-cta {
    width: 400%;
    max-width: 400%;
  }

  .hero-trust {
    width: min(100%, 37rem);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.7fr) minmax(0, 0.7fr) minmax(0, 0.75fr);
    gap: 1.35rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .hero-calendar-card {
    max-width: 34.5rem;
    justify-self: end;
  }

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

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

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

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

  .final-cta-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 859px) {
  .reviews-carousel {
    grid-template-columns: repeat(2, minmax(0, auto));
    grid-template-areas:
      "viewport viewport"
      "prev next";
    row-gap: 0.52rem;
  }

  .reviews-viewport {
    grid-area: viewport;
    --reviews-fade-edge: clamp(14px, 5vw, 30px);
  }

  .reviews-nav-btn[data-review-nav="prev"] {
    grid-area: prev;
    justify-self: start;
  }

  .reviews-nav-btn[data-review-nav="next"] {
    grid-area: next;
    justify-self: end;
  }

  .review-card {
    width: min(86vw, 22rem);
  }

}

@media (max-width: 520px) {
  .hero-copy {
    gap: 0.78rem;
  }

  h1 {
    max-width: 11.5ch;
  }

  .header-cta {
    min-height: 2.7rem;
    font-size: 0.9rem;
    padding-inline: 0.95rem;
  }

  .hero-main-cta.btn-lg {
    min-height: 4.15rem;
    font-size: 1rem;
  }

  .reviews-nav-btn {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.1rem;
  }

  .hero-offer {
    padding: 0.5rem 0;
  }

  .hero-offer-text {
    gap: 0.44rem;
  }

  .hero-offer-line {
    gap: 0.36rem;
  }

  .hero-offer-line-plain {
    padding-left: 1.42rem;
  }

  .hero-logo-badge {
    min-height: 4.6rem;
    padding: 0.42rem 0.45rem;
  }

  .hero-logo-badge img {
    max-height: 3.35rem;
  }

  .hero-logo-cta {
    min-height: 2.05rem;
    font-size: 0.68rem;
    padding-inline: 0.3rem;
  }

  .how-chat::before {
    left: 0.9rem;
    transform: none;
  }

  .how-bubble,
  .how-bubble-left,
  .how-bubble-right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .how-bubble-shift-right,
  .how-bubble-shift-left,
  .how-bubble-right-shift {
    margin-left: 0;
    margin-right: 0;
  }

  .calendar-slot-status {
    display: none;
  }
}
