@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --bg-elevated: #f6f6f7;
  --panel: #ffffff;
  --panel-strong: #141414;
  --panel-border: rgba(17, 17, 17, 0.08);
  --text: #141414;
  --muted: #5f6368;
  --accent: #b4111f;
  --accent-strong: #d82634;
  --accent-soft: rgba(180, 17, 31, 0.08);
  --accent-green: #b4111f;
  --accent-green-strong: #c61c2b;
  --danger: #c62828;
  --warning: #d9822b;
  --success: #1d7d46;
  --shadow: 0 20px 48px rgba(14, 14, 14, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: min(1180px, calc(100vw - 2rem));
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --touch-target: 44px;
  --header-height: 86px;
  --mobile-nav-height: 74px;
  --mobile-sheet-offset: calc(var(--mobile-nav-height) + var(--safe-bottom) + 1rem);
}

body.theme-estate-clean,
body.theme-route-bright {
  background:
    radial-gradient(circle at top right, rgba(180, 17, 31, 0.1), transparent 26%),
    radial-gradient(circle at 8% 16%, rgba(20, 20, 20, 0.05), transparent 20%),
    linear-gradient(180deg, #ffffff, #fbfbfb 50%, #f4f4f5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: #ffffff;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at top right, rgba(180, 17, 31, 0.1), transparent 28%),
    radial-gradient(circle at left top, rgba(17, 17, 17, 0.04), transparent 22%),
    linear-gradient(180deg, #ffffff, #fbfbfb 48%, #f3f3f4);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  font-size: 16px;
}

main {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-topbar {
  background: #141414;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar__inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.site-topbar__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  font-weight: 700;
}

.site-topbar__dot {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--accent);
}

.site-topbar__quote {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: var(--safe-top);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.04);
}

.site-header__inner {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #121212;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

.brand__logo {
  width: clamp(3.3rem, 4.4vw, 4.4rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: #ffffff;
  border: 2px solid rgba(180, 17, 31, 0.12);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
}

.brand__mark {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #141414;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__links,
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-nav__actions .button {
  white-space: nowrap;
}

.site-nav__links a {
  color: #3f4347;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav__links a.is-active,
.site-nav__links a:hover {
  color: #111111;
}

/* Scoped to .site-header so display:none beats the later .button-secondary rule
   (both classes are on this element); otherwise the hamburger leaks to desktop. */
.site-header .site-menu-toggle {
  display: none;
  min-width: var(--touch-target);
  min-height: var(--touch-target);
  padding: 0.72rem 0.95rem;
}

.site-menu-toggle__bars {
  display: grid;
  gap: 0.24rem;
}

.site-menu-toggle__bars span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.site-mobile-drawer {
  display: none;
}

.button,
.button-secondary,
.button-ghost {
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: var(--touch-target);
  padding: 0.92rem 1.35rem;
  font-weight: 800;
  transition: transform 140ms ease, opacity 140ms ease, background 140ms ease, color 140ms ease;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(180, 17, 31, 0.2);
}

.button-secondary {
  background: #141414;
  color: #ffffff;
  border: 1px solid #141414;
  box-shadow: 0 14px 28px rgba(20, 20, 20, 0.08);
}

.button-ghost {
  background: transparent;
  color: #3f4347;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.hero {
  padding: 2.8rem 0 4rem;
}

.hero--spotlight {
  padding: 2.1rem 0 2.8rem;
}

.hero-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: stretch;
}

.hero-spotlight__content,
.hero-spotlight__photo,
.hero-spotlight__stack-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-spotlight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-spotlight__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-spotlight__logo {
  width: clamp(5rem, 8vw, 6.5rem);
  border-radius: 24px;
  background: #ffffff;
  border: 2px solid rgba(180, 17, 31, 0.12);
  box-shadow: 0 14px 28px rgba(20, 20, 20, 0.08);
}

.hero-spotlight__brand-copy {
  display: grid;
  gap: 0.35rem;
}

.hero-spotlight__brand-copy span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-spotlight__content h1 {
  max-width: 8.7ch;
  margin: 1.1rem 0 0.95rem;
  font-size: clamp(3.9rem, 8vw, 6.6rem);
  line-height: 0.9;
}

.hero-spotlight__copy {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-spotlight__actions {
  margin-top: 1.6rem;
}

.hero-spotlight__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-spotlight__proof-item {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: var(--bg-elevated);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-spotlight__proof-item strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.hero-spotlight__proof-item span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-spotlight__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.42fr;
  gap: 1rem;
}

.hero-spotlight__photo,
.hero-spotlight__stack-card {
  margin: 0;
  overflow: hidden;
}

.hero-spotlight__photo img,
.hero-spotlight__stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-spotlight__photo img {
  min-height: 680px;
}

.hero-spotlight__stack {
  display: grid;
  gap: 1rem;
}

.hero-spotlight__stack-card img {
  min-height: 332px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-strip__item {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.service-strip__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  min-height: 2.1rem;
  border-radius: 10px;
  background: rgba(180, 17, 31, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-strip__item h3 {
  margin: 1rem 0 0.5rem;
  font-size: 2rem;
}

.service-strip__item p {
  margin: 0;
  color: var(--muted);
}

body[data-page="home"] {
  background: #f5f7f2;
}

.home-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
}

.home-hero__image,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__image {
  background-image: url("/assets/images/first-on-mower-field.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.home-hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 11, 9, 0.86), rgba(8, 11, 9, 0.56) 44%, rgba(8, 11, 9, 0.18)),
    linear-gradient(180deg, rgba(8, 11, 9, 0.1), rgba(8, 11, 9, 0.82));
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 5.2rem 0 2.2rem;
}

.home-hero__copy {
  max-width: 42rem;
}

.home-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 10ch;
  margin: 1rem 0;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 5.6rem;
  letter-spacing: 0;
  line-height: 0.9;
}

.home-hero p {
  max-width: 37rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.home-hero__actions .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  box-shadow: none;
}

.home-proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.home-proof-bar div {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.1rem;
}

.home-proof-bar div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.home-proof-bar strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0;
}

.home-proof-bar span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.home-funnel-section {
  padding: 2rem 0 4rem;
}

.home-funnel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.4rem;
  align-items: start;
}

.home-funnel__intro {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.home-funnel__intro h2,
.home-process__copy h2,
.home-services h3,
.home-quote-form h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0;
  line-height: 0.95;
}

.home-funnel__intro h2,
.home-process__copy h2 {
  max-width: 10ch;
  color: #141414;
  font-size: 4.1rem;
}

.home-funnel__intro p {
  max-width: 34rem;
  margin: 0;
  color: #565d52;
  line-height: 1.75;
}

.home-funnel__checks {
  display: grid;
  gap: 0.72rem;
  margin-top: 0.35rem;
}

.home-funnel__checks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #252a24;
  font-weight: 800;
}

.home-funnel__checks li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #1d7d46;
}

.home-quote-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(17, 24, 18, 0.12);
}

.home-quote-form__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.home-quote-form__header span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-quote-form h3 {
  margin-top: 0.2rem;
  font-size: 2.2rem;
}

.home-quote-form__header strong {
  color: #141414;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-addons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.home-addons label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.68rem 0.75rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #f6f8f3;
  color: #20241f;
  font-size: 0.9rem;
  font-weight: 800;
}

.home-addons input {
  accent-color: #1d7d46;
}

.home-quote-result {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(29, 125, 70, 0.18);
  border-radius: 8px;
  background: #f2f8f1;
}

.home-hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
}

.home-hero__stars {
  color: #ffce3a;
  letter-spacing: 2px;
}

.trust-strip {
  background: #141414;
  color: #ffffff;
  border-top: 3px solid var(--accent);
}

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

.trust-strip__item {
  display: grid;
  gap: 0.18rem;
  padding: 1.15rem 1.25rem;
}

.trust-strip__item + .trust-strip__item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip__item strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.trust-strip__item span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  font-weight: 700;
}

.band {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.band--tint {
  background: #f1f4ec;
}

.band__head {
  max-width: 48rem;
  margin-bottom: 2.4rem;
}

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

.band__head h2 {
  margin: 0.85rem 0 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.band__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem 2.6rem;
}

.services__item {
  padding-top: 1.15rem;
  border-top: 2px solid var(--accent);
}

.services__item h3 {
  margin: 0 0 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.services__item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}

.feature__media {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.feature__media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.feature__copy h2 {
  margin: 0.8rem 0 0.9rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.feature__copy p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  line-height: 1.75;
}

.feature__list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.feature__list li {
  position: relative;
  padding-left: 1.7rem;
  color: #20241f;
  font-weight: 600;
  line-height: 1.5;
}

.feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 3px;
  background: var(--accent);
}

.quote-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(circle at top right, rgba(216, 38, 52, 0.26), transparent 42%),
    linear-gradient(180deg, #141414, #1c1c1c);
}

.quote-band .home-funnel__intro h2 {
  color: #ffffff;
}

.quote-band .home-funnel__intro p {
  color: rgba(255, 255, 255, 0.76);
}

.quote-band .home-funnel__checks li {
  color: #ffffff;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.review {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 1.6rem;
  background: #ffffff;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.review__stars {
  color: #f5a623;
  letter-spacing: 2px;
}

.review blockquote {
  margin: 0;
  color: #20241f;
  font-size: 1.02rem;
  line-height: 1.6;
}

.review figcaption {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.closing-cta__image,
.closing-cta__shade {
  position: absolute;
  inset: 0;
}

.closing-cta__image {
  background-image: url("/assets/images/first-on-mower-tree.jpg");
  background-position: center;
  background-size: cover;
}

.closing-cta__shade {
  background: linear-gradient(180deg, rgba(8, 11, 9, 0.68), rgba(8, 11, 9, 0.88));
}

.closing-cta__content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  text-align: center;
}

.closing-cta__content h2 {
  margin: 0.85rem 0 0.7rem;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.closing-cta__content p {
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.closing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.closing-cta__actions .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  box-shadow: none;
}

.hero--minimal {
  padding: 2.4rem 0 2rem;
}

.minimal-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.2rem;
  align-items: stretch;
}

.minimal-hero__content,
.minimal-hero__aside {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.minimal-hero__content {
  background: #ffffff;
  padding: clamp(1.6rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.minimal-hero__content h1 {
  max-width: 8ch;
  margin: 0.8rem 0 0.85rem;
  font-size: clamp(3.8rem, 8vw, 6.2rem);
  line-height: 0.9;
}

.minimal-hero__content p {
  max-width: 25rem;
  font-size: 1rem;
  line-height: 1.6;
}

.minimal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.minimal-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.7rem 0.95rem;
  border-radius: 8px;
  background: var(--bg-elevated);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: #181818;
  font-size: 0.9rem;
  font-weight: 800;
}

.minimal-hero__aside {
  display: grid;
  overflow: hidden;
  background: #ffffff;
}

.minimal-hero__aside--photo {
  padding: 0;
}

.minimal-hero__photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.minimal-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.minimal-services .feature-card {
  padding: 1.2rem;
  text-align: center;
}

.minimal-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.minimal-gallery__card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.minimal-gallery__card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.minimal-gallery__card--tall img {
  min-height: 480px;
}

.minimal-cta {
  gap: 1rem;
}

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

.minimal-cta p {
  display: none;
}

.hero--home {
  position: relative;
  overflow: hidden;
}

.hero--home::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 23rem;
  background: linear-gradient(135deg, #181818 0%, #181818 46%, #b4111f 100%);
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 42px 90px rgba(12, 12, 12, 0.12);
}

.hero-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.hero-badge-card {
  display: grid;
  gap: 1.35rem;
  align-content: center;
  padding: clamp(1.7rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #141414, #1a1a1a);
  color: #ffffff;
}

.hero-badge-card__media {
  border-radius: 28px;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f1f1f1);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.hero-badge-card__body {
  display: grid;
  gap: 0.8rem;
}

.hero-badge-card__body h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.hero-badge-card .muted {
  color: rgba(255, 255, 255, 0.76);
}

.hero-badge-card .badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.8rem;
  border-radius: 8px;
  background: rgba(180, 17, 31, 0.08);
  border: 1px solid rgba(180, 17, 31, 0.14);
  color: var(--accent);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.feature-card h3,
.detail-card h3,
.section-header h2,
.panel h3,
.intro-banner h2,
.value-card h3,
.proof-card h3,
.step-card h3,
.cta-banner h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 1rem;
  line-height: 0.92;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(4rem, 9vw, 7rem);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
}

.hero p,
.page-hero p,
.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero__actions,
.stack-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.toolbar-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-checklist {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.8rem;
}

.clean-list,
.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: var(--bg-elevated);
  border: 1px solid rgba(17, 17, 17, 0.06);
  color: #1d1f21;
  font-weight: 700;
}

.hero-checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 5px rgba(180, 17, 31, 0.08);
}

.hero-logo {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 22px;
}

.section {
  padding: 0 0 4rem;
}

.section--tight {
  padding-top: 0.3rem;
}

.section--contrast {
  margin: 0 0 4rem;
  padding: 4rem 0;
  background:
    radial-gradient(circle at top right, rgba(216, 38, 52, 0.2), transparent 24%),
    linear-gradient(180deg, #141414, #191919);
}

.section--contrast .section-header h2,
.section--contrast .proof-card h3 {
  color: #ffffff;
}

.section--contrast .section-header p,
.section--contrast .proof-card p,
.section--contrast .muted {
  color: rgba(255, 255, 255, 0.74);
}

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

.section-header--center {
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.section-header p {
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.75;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

.intro-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.intro-banner__eyebrow,
.value-card__number,
.proof-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-banner h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.intro-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-grid,
.feature-grid,
.city-grid,
.detail-grid,
.stats-grid,
.value-grid,
.proof-grid,
.steps-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

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

.feature-card,
.detail-card,
.panel,
.stat-card,
.value-card,
.proof-card,
.step-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.feature-card,
.detail-card,
.panel,
.value-card,
.proof-card,
.step-card {
  padding: 1.4rem;
}

.feature-card h3,
.detail-card h3,
.value-card h3,
.proof-card h3,
.step-card h3,
.panel h3 {
  margin: 0 0 0.7rem;
  font-size: 2rem;
  line-height: 0.95;
}

.muted {
  color: var(--muted);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.9rem;
}

.stat-card {
  padding: 1.15rem 1.2rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.9rem;
  line-height: 1;
  color: #111111;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.value-card {
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.value-card p,
.proof-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.4rem;
  align-items: start;
}

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

.quote-panel {
  position: sticky;
  top: calc(var(--header-height) + var(--safe-top) + 1rem);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #141414, #1a1a1a);
  color: #ffffff;
}

.quote-panel h3,
.cta-banner h2 {
  color: #ffffff;
}

.quote-panel .summary-row {
  color: rgba(255, 255, 255, 0.74);
}

.quote-panel .summary-row strong,
.quote-panel .summary-total strong {
  color: #ffffff;
}

.quote-panel .summary-total {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.quote-panel .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: none;
}

.page-hero {
  padding: 2.6rem 0 1.4rem;
}

.page-hero .container {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(180, 17, 31, 0.08), rgba(17, 17, 17, 0.02));
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.form-section {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 20px;
  background: var(--bg-elevated);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.form-section + .form-section {
  margin-top: 1rem;
}

.form-section__eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-section h2,
.form-section h3 {
  margin: 0.1rem 0 0;
  font-size: 1.95rem;
  line-height: 0.95;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.form-section p {
  margin: 0;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: #141414;
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: var(--touch-target);
  padding: 0.92rem 1rem;
  color: #141414;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

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

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--touch-target);
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #ffffff;
}

.checkbox-pill input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent);
}

.quote-layout,
.booking-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.4rem;
  align-items: start;
}

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

.quote-summary,
.booking-summary {
  position: sticky;
  top: calc(var(--header-height) + var(--safe-top) + 1rem);
}

.summary-list {
  display: grid;
  gap: 0.9rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.summary-row strong {
  color: #141414;
}

.summary-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  font-size: 1.08rem;
}

.highlight-card {
  background:
    radial-gradient(circle at top right, rgba(216, 38, 52, 0.16), transparent 32%),
    linear-gradient(180deg, #141414, #191919);
  color: #ffffff;
}

.highlight-card .muted,
.highlight-card p,
.highlight-card .notice {
  color: rgba(255, 255, 255, 0.78);
}

.highlight-card .summary-row {
  color: rgba(255, 255, 255, 0.78);
}

.highlight-card .summary-row strong,
.highlight-card h3 {
  color: #ffffff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: rgba(180, 17, 31, 0.08);
  border: 1px solid rgba(180, 17, 31, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steps-panel {
  padding: 1.9rem;
}

.step-card {
  display: grid;
  gap: 0.8rem;
  background: var(--bg-elevated);
  box-shadow: none;
}

.step-card__count {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #141414;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.proof-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1.18fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 16px;
  background: linear-gradient(135deg, #141414 0%, #b4111f 100%);
  box-shadow: 0 26px 54px rgba(180, 17, 31, 0.18);
}

.cta-banner h2 {
  margin: 0.45rem 0 0.7rem;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 0.94;
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.cta-banner .badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.cta-banner .button {
  background: #ffffff;
  color: #141414;
  box-shadow: none;
}

.cta-banner .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 3rem;
  background: #141414;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-footer strong,
.site-footer a {
  color: #ffffff;
}

.site-footer__logins {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.notice {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(180, 17, 31, 0.06);
  border: 1px solid rgba(180, 17, 31, 0.12);
  color: #6d4549;
}

.toast-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: grid;
  gap: 0.75rem;
}

.mobile-quote-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  padding:
    0.75rem
    calc(1rem + var(--safe-right))
    calc(0.75rem + var(--safe-bottom))
    calc(1rem + var(--safe-left));
  background: rgba(20, 20, 20, 0.96);
  color: #ffffff;
  border-top: 2px solid rgba(216, 38, 52, 0.32);
  backdrop-filter: blur(18px);
}

.mobile-quote-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.mobile-quote-bar__copy {
  display: grid;
  gap: 0.2rem;
}

.mobile-quote-bar__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-quote-bar__amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}

.toast {
  min-width: 240px;
  max-width: 340px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: var(--shadow);
}

.toast.is-error {
  border-color: rgba(198, 40, 40, 0.2);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero-spotlight__proof,
  .service-strip,
  .value-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-spotlight,
  .hero-spotlight__media,
  .minimal-hero,
  .minimal-gallery,
  .hero-showcase,
  .home-funnel,
  .home-process,
  .home-about,
  .intro-banner,
  .split-feature,
  .quote-layout,
  .booking-layout,
  .service-grid,
  .feature-grid,
  .city-grid,
  .detail-grid,
  .stats-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-spotlight__photo img {
    min-height: 420px;
  }

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

  .hero-spotlight__stack-card img {
    min-height: 240px;
  }

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

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

  .stat-strip,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .quote-panel,
  .quote-summary,
  .booking-summary {
    position: static;
  }

  .minimal-hero__photo {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .site-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-nav {
    display: none;
  }

  .site-header .site-menu-toggle {
    display: inline-flex;
  }

  .site-mobile-drawer {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: end stretch;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 140ms ease;
    z-index: 40;
  }

  .public-menu-open .site-mobile-drawer {
    opacity: 1;
    pointer-events: auto;
  }

  .site-mobile-drawer__panel {
    margin-top: auto;
    padding:
      1rem
      calc(1rem + var(--safe-right))
      calc(1.1rem + var(--safe-bottom))
      calc(1rem + var(--safe-left));
    border-radius: 26px 26px 0 0;
    background: #ffffff;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 -16px 36px rgba(20, 20, 20, 0.14);
  }

  .site-mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
  }

  .site-mobile-drawer__nav {
    display: grid;
    gap: 0.55rem;
  }

  .site-mobile-drawer__nav a {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: var(--bg-elevated);
    color: #1c1c1c;
    font-weight: 800;
  }

  .site-mobile-drawer__nav a.is-active {
    background: rgba(180, 17, 31, 0.08);
    color: var(--accent);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 1.1rem, 100%);
    --header-height: 78px;
    --mobile-nav-height: 78px;
  }

  body[data-page="quote"],
  body[data-page="booking"] {
    padding-bottom: calc(var(--mobile-nav-height) + var(--safe-bottom));
  }

  .hero {
    padding-top: 1.8rem;
    padding-bottom: 3rem;
  }

  .home-hero {
    min-height: 68svh;
  }

  .home-hero__shade {
    background:
      linear-gradient(180deg, rgba(8, 11, 9, 0.44), rgba(8, 11, 9, 0.9)),
      linear-gradient(90deg, rgba(8, 11, 9, 0.76), rgba(8, 11, 9, 0.24));
  }

  .home-hero__content {
    padding-top: 3.5rem;
  }

  .home-hero h1 {
    font-size: 4rem;
  }

  .home-proof-bar,
  .home-services,
  .home-addons,
  .home-process__steps,
  .home-about__values {
    grid-template-columns: 1fr;
  }

  .home-proof-bar div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .home-funnel-section {
    padding-bottom: 2.8rem;
  }

  .home-funnel__intro h2,
  .home-process__copy h2 {
    max-width: none;
    font-size: 3.25rem;
  }

  .home-quote-form__header {
    flex-direction: column;
  }

  .hero--home::before {
    height: 16rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .service-grid--stacked,
  .hero-spotlight__proof,
  .service-strip,
  .value-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-spotlight__content h1 {
    max-width: none;
    font-size: clamp(3.3rem, 14vw, 5.4rem);
  }

  .hero-spotlight__brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-spotlight__logo {
    width: 4.9rem;
  }

  .hero-spotlight__photo img {
    min-height: 300px;
  }

  .hero-spotlight__stack {
    grid-template-columns: 1fr;
  }

  .hero-spotlight__stack-card img {
    min-height: 220px;
  }

  .minimal-services {
    grid-template-columns: 1fr;
  }

  .minimal-hero__content h1 {
    max-width: none;
  }

  .minimal-hero__photo {
    min-height: 300px;
  }

  .minimal-gallery__card img,
  .minimal-gallery__card--tall img {
    min-height: 220px;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .site-menu-toggle {
    width: auto;
    min-width: var(--touch-target);
    flex: 0 0 auto;
  }

  .hero-badge-card,
  .hero-copy,
  .panel,
  .feature-card,
  .detail-card,
  .value-card,
  .proof-card,
  .step-card,
  .cta-banner {
    padding: 1.2rem;
  }

  .page-hero {
    padding-top: 1.8rem;
  }

  .mobile-quote-bar {
    display: block;
  }

  .toast-stack {
    right: 0.8rem;
    left: 0.8rem;
    bottom: calc(var(--mobile-sheet-offset) + 0.4rem);
  }

  .toast {
    min-width: auto;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 0.65rem;
    font-size: 1.45rem;
  }

  .brand__logo {
    width: 3rem;
    border-radius: 12px;
  }

  .section {
    padding-bottom: 2.8rem;
  }
}

@media (max-width: 980px) {
  .feature__inner,
  .reviews {
    grid-template-columns: 1fr;
  }

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

  .feature__media img {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .services,
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-strip__item + .trust-strip__item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Detailed add-on pricing pills (public quote + onboarding) */
.checkbox-pill--detailed { align-items: flex-start; text-align: left; }
.checkbox-pill--detailed .checkbox-pill__body { display: flex; flex-direction: column; gap: 0.15rem; width: 100%; }
.checkbox-pill__title { display: flex; justify-content: space-between; gap: 0.5rem; font-weight: 600; width: 100%; }
.checkbox-pill__price { white-space: nowrap; }
.checkbox-pill__desc { font-size: 0.85rem; opacity: 0.75; }

/* Recommended add-on badge */
.addon-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; color: #2f855a; background: rgba(47,133,90,0.12); border-radius: 999px; padding: 0.05rem 0.4rem; margin-left: 0.25rem; vertical-align: middle; }

/* Stripe Elements card container (onboarding) */
#card-element { padding: 0.85rem 0.9rem; border: 1px solid rgba(0,0,0,0.18); border-radius: 10px; background: #fff; margin-bottom: 0.5rem; }
