:root {
  --ink: #102139;
  --muted: #4d5f78;
  --line: rgba(16, 33, 57, 0.12);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ice: #e7f4ff;
  --sky: #8ec5ff;
  --navy: #102139;
  --teal: #1a7f8d;
  --teal-deep: #115c68;
  --orange: #ef7f45;
  --orange-deep: #c85f2a;
  --shadow: 0 24px 70px rgba(16, 33, 57, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(142, 197, 255, 0.55), transparent 38%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.94), transparent 28%),
    linear-gradient(180deg, #eef8ff 0%, #f8fbff 42%, #ecf4fa 100%);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0.65) 2px, transparent 2px),
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.55) 0, rgba(255, 255, 255, 0.55) 1.5px, transparent 1.5px),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 2px, transparent 2px);
  background-size: 240px 240px, 300px 300px, 340px 340px;
  content: "";
  pointer-events: none;
}

body.theme-lawn {
  --ink: #1d3321;
  --muted: #556a4f;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ice: #eef9d8;
  --sky: #c9eb7b;
  --navy: #1d3321;
  --teal: #59a64d;
  --teal-deep: #2e7b37;
  --orange: #f3b54a;
  --orange-deep: #c9871a;
  --shadow: 0 24px 70px rgba(40, 79, 36, 0.16);
  background:
    radial-gradient(circle at top left, rgba(201, 235, 123, 0.42), transparent 36%),
    radial-gradient(circle at top right, rgba(255, 242, 179, 0.5), transparent 24%),
    linear-gradient(180deg, #f7ffe7 0%, #eef8d9 38%, #fdf8ea 100%);
}

body.theme-lawn::before {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0.65) 2px, transparent 2px),
    radial-gradient(circle at 65% 30%, rgba(255, 240, 189, 0.52) 0, rgba(255, 240, 189, 0.52) 1.5px, transparent 1.5px),
    radial-gradient(circle at 80% 10%, rgba(201, 235, 123, 0.32) 0, rgba(201, 235, 123, 0.32) 2px, transparent 2px);
}

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

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

code {
  padding: 0.15rem 0.35rem;
  background: rgba(16, 33, 57, 0.08);
  border-radius: 6px;
  font-family: "Space Grotesk", monospace;
  font-size: 0.92em;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: static;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

body.theme-lawn .site-header {
  background: transparent;
  border-bottom: 0;
}

.sticky-price-bar[hidden] {
  display: none !important;
}

.sticky-price-bar {
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: rgba(29, 51, 33, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(29, 51, 33, 0.3);
  text-decoration: none;
  color: #ffffff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.sticky-price-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(29, 51, 33, 0.38);
}

.sticky-price-icon {
  opacity: 0.8;
  flex-shrink: 0;
}

.sticky-price-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sticky-price-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.sticky-price-value {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .sticky-price-bar {
    top: 12px;
    right: 14px;
    padding: 8px 14px 8px 12px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
  filter: drop-shadow(0 10px 18px rgba(16, 33, 57, 0.08));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.02);
  transition: filter 180ms ease;
}

body.theme-lawn .brand-mark img {
  filter: hue-rotate(-68deg) saturate(1.08) brightness(0.98);
}

body.theme-lawn .brand-mark {
  filter: drop-shadow(0 10px 18px rgba(46, 123, 55, 0.14));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
h1,
h2,
h3,
.hero-price,
.metric-value {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--teal-deep);
}

.lang-switcher {
  display: flex;
  gap: 2px;
  margin-left: 4px;
}

@media (max-width: 760px) {
  .lang-switcher {
    display: none !important;
  }
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--muted);
  cursor: pointer;
  font: 600 0.75rem/1 inherit;
  letter-spacing: 0.03em;
  padding: 3px 6px;
  transition: color 0.15s, border-color 0.15s;
}

.lang-btn:hover {
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}

.lang-btn.is-active {
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}

main {
  padding: 0 clamp(18px, 4vw, 48px) 72px;
}

.hero,
.estimator-section,
.results-section,
.capture-section,
.delivery-section,
.premium-section {
  animation: rise 0.7s ease both;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 52px) 0 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0;
  font-size: 1.24rem;
}

.hero-text,
.helper-copy,
.metric-detail,
.map-caption,
.hero-small {
  color: var(--muted);
}

.hero-text {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.hero-cta-note {
  max-width: 700px;
  margin: -2px 0 0;
  color: var(--teal-deep);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.hero-text-tight {
  margin-bottom: 0;
}

.section-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-subtitle {
  margin: 14px 0 6px;
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.hero-subtitle strong {
  color: var(--ink);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 18px;
}

.aeration-benefits {
  margin: 48px auto;
  padding: 40px clamp(20px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 249, 215, 0.55)),
    linear-gradient(135deg, rgba(46, 123, 55, 0.08), rgba(243, 181, 74, 0.06));
  border: 1px solid rgba(46, 123, 55, 0.14);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(33, 62, 37, 0.06);
}

.aeration-benefits-head {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.aeration-benefits-head .eyebrow {
  color: var(--teal-deep);
}

.aeration-benefits-head h2 {
  margin: 6px 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--ink);
}

.aeration-benefits-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.aeration-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.aeration-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(46, 123, 55, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(33, 62, 37, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.aeration-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(33, 62, 37, 0.1);
}

.aeration-benefit-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.aeration-benefit-card strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.06rem;
  color: var(--teal-deep);
}

.aeration-benefit-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.55;
}

.hero-badge-row,
.support-chip-row,
.inline-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chip,
.support-chip,
.inline-reassurance span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-badge-row {
  margin-bottom: 12px;
}

.hero-proof-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
}

.proof-metric {
  display: grid;
  gap: 6px;
  padding: 18px 18px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 34px rgba(40, 79, 36, 0.08);
}

.proof-metric strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.proof-metric span {
  color: var(--muted);
  line-height: 1.45;
}

.steps-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.premium-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.hero-showcase {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: end;
}

.service-hero.is-flow-started {
  grid-template-columns: minmax(0, 1fr);
}

.service-hero.is-flow-started .hero-showcase {
  display: none;
}

.service-hero.is-flow-started .hero-copy {
  max-width: 980px;
}

.hero-visual-card,
.process-visual-card,
.support-visual,
.final-cta-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(33, 62, 37, 0.16);
}

.hero-visual-card img,
.process-visual-card img,
.support-visual img,
.final-cta-visual img {
  width: 100%;
  height: auto;
}

.hero-visual-card {
  max-width: 700px;
}

.floating-panel {
  position: absolute;
  right: -14px;
  bottom: 24px;
  width: min(320px, 72%);
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 26px 48px rgba(33, 62, 37, 0.16);
  backdrop-filter: blur(14px);
}

.floating-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-panel strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  line-height: 1.15;
}

.floating-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 38px rgba(16, 33, 57, 0.08);
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  border-radius: 999px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.step-copy {
  display: grid;
  gap: 4px;
}

.step-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step-copy strong {
  font-size: 0.94rem;
  line-height: 1.15;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  box-shadow: 0 14px 28px rgba(17, 92, 104, 0.22);
}

.secondary-button {
  color: var(--navy);
  background: rgba(142, 197, 255, 0.2);
  border: 1px solid rgba(16, 33, 57, 0.12);
}

body.theme-lawn .secondary-button {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(46, 123, 55, 0.14);
}

.ghost-button {
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(16, 33, 57, 0.16);
}

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

.primary-button:disabled,
.secondary-button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.hero-points,
.check-list,
.process-list {
  padding-left: 1.15rem;
}

.hero-points li,
.check-list li,
.process-list li {
  margin-bottom: 10px;
}

.hero-card,
.panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 28px;
}

.card-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-price {
  margin-bottom: 4px;
  font-size: clamp(3.2rem, 8vw, 5rem);
  line-height: 0.92;
}

.hero-card-copy {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.1rem;
}

.directory-card-title {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.hero-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(239, 127, 69, 0.1), rgba(255, 255, 255, 0.7));
  border-radius: var(--radius-lg);
}

.hero-example strong {
  font-size: 1.3rem;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin: 28px 0 20px;
}

.section-heading-centered {
  justify-items: center;
  text-align: center;
}

.premium-section {
  padding: 26px 0 10px;
}

.trust-marquee {
  padding-top: 10px;
}

.trust-marquee-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(33, 62, 37, 0.08);
}

.trust-marquee-label {
  color: var(--muted);
  font-weight: 700;
}

.trust-logo-row {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--navy);
  background: rgba(247, 255, 231, 0.85);
  border: 1px solid rgba(46, 123, 55, 0.12);
  border-radius: 999px;
  font-weight: 700;
}

.estimator-grid,
.delivery-grid,
.maps-grid {
  display: grid;
  gap: 22px;
}

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

.single-panel-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1120px;
  margin-inline: auto;
}

.estimator-hero-head {
  width: min(100%, 1100px);
  margin: 18px auto 0;
  padding: clamp(54px, 9vw, 120px) clamp(24px, 5vw, 64px);
  text-align: center;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 48, 33, 0.48) 0%, rgba(20, 48, 33, 0.62) 100%),
    url("assets/hero-pelouse.jpg") center 62% / cover no-repeat;
  box-shadow: 0 18px 44px rgba(28, 47, 34, 0.22);
}

.estimator-hero-head .eyebrow {
  margin-bottom: 12px;
  color: #dcf0cb;
}

.estimator-hero-head h1 {
  margin: 0 auto;
  max-width: 20ch;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.estimator-section--hero-aligned {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  margin-top: 6px;
}

.estimator-section--hero-aligned .single-panel-grid,
.estimator-section--hero-aligned .estimator-panel {
  max-width: none;
  margin-inline: 0;
}

.panel {
  padding: 24px;
}

body.theme-lawn .panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    var(--surface);
}

.focus-target:focus-visible {
  outline: 3px solid rgba(243, 181, 74, 0.65);
  outline-offset: 6px;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--navy);
  background: rgba(142, 197, 255, 0.24);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.accent-pill {
  background: rgba(239, 127, 69, 0.15);
}

.benefits-grid,
.stats-grid,
.testimonials-grid,
.trust-grid,
.form-trust-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.stat-card,
.testimonial-card,
.trust-card,
.form-trust-card,
.estimator-support-panel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(33, 62, 37, 0.09);
}

.feature-card,
.stat-card,
.testimonial-card,
.trust-card,
.form-trust-card {
  padding: 22px;
}

.feature-card {
  display: grid;
  gap: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover,
.testimonial-card:hover,
.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(33, 62, 37, 0.12);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--teal-deep);
  background: linear-gradient(145deg, rgba(201, 235, 123, 0.24), rgba(255, 244, 201, 0.7));
  border-radius: 18px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card p,
.testimonial-card p,
.trust-card p,
.form-trust-card span,
.support-copy {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: center;
}

.process-list-premium {
  display: grid;
  gap: 16px;
}

.process-item-premium {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(33, 62, 37, 0.08);
}

.process-item-premium p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.process-index {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  border-radius: 18px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
}

.process-visual-card {
  background: rgba(255, 255, 255, 0.58);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
}

.stat-card {
  display: grid;
  gap: 8px;
}

.stat-card strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.5;
}

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

.testimonial-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--teal-deep);
  background: rgba(201, 235, 123, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.estimator-support-panel {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.support-chip-row {
  margin-bottom: 2px;
}

.support-list {
  margin: 0;
  padding-left: 1.15rem;
}

.support-list li {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 600;
}

.support-visual {
  margin: 4px 0 0;
}

.address-form,
.lead-form {
  display: grid;
  gap: 18px;
}

.estimator-panel {
  position: relative;
  z-index: 8;
  max-width: 1120px;
  margin-inline: auto;
}

.estimator-intro {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.estimator-panel .address-form {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.address-form--premium {
  position: relative;
  z-index: 12;
  overflow: visible;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 252, 228, 0.86));
  border: 1px solid rgba(46, 123, 55, 0.12);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.estimator-panel .address-form--premium .field:first-child {
  position: relative;
  z-index: 14;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 246, 196, 0.92), rgba(255, 255, 255, 0.98));
  border: 2px solid rgba(243, 181, 74, 0.56);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(201, 135, 26, 0.14);
}

.estimator-panel .address-form--premium .field:first-child::after {
  content: "Commencez ici";
  position: absolute;
  top: -12px;
  right: 14px;
  padding: 4px 10px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(201, 135, 26, 0.22);
}

.estimator-panel .address-form--premium .field:first-child span {
  color: var(--teal-deep);
}

.estimator-panel .address-form--premium .field:first-child input {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(243, 181, 74, 0.42);
}

.address-form--premium.is-spotlight .field:first-child {
  animation: addressSpotlightPulse 1200ms ease;
}

.address-form--premium.is-spotlight .field:first-child::after {
  animation: addressSpotlightBadgePulse 1200ms ease;
}

.estimator-panel .primary-button {
  width: 100%;
  min-height: 58px;
}

.estimator-panel .field input {
  min-height: 58px;
  font-size: 1rem;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 700;
}

.field input {
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 33, 57, 0.12);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.field select {
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 33, 57, 0.12);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid rgba(26, 127, 141, 0.18);
  border-color: rgba(26, 127, 141, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 235, 123, 0.18);
}

.field textarea {
  min-height: 96px;
  padding: 12px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 33, 57, 0.12);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  resize: vertical;
}

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

.address-autocomplete {
  position: absolute;
  right: 14px;
  left: 14px;
  top: calc(100% - 6px);
  z-index: 60;
  display: grid;
  gap: 6px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(46, 123, 55, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(29, 51, 33, 0.14);
  isolation: isolate;
}

.address-autocomplete[hidden] {
  display: none;
}

.address-autocomplete__item {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  background: rgba(248, 252, 242, 0.9);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.address-autocomplete__item:hover,
.address-autocomplete__item:focus-visible,
.address-autocomplete__item.is-active {
  background: rgba(238, 249, 216, 0.96);
  border-color: rgba(89, 166, 77, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.address-autocomplete__main {
  font-weight: 700;
}

.address-autocomplete__secondary {
  color: var(--muted);
  font-size: 0.94rem;
}

.status-banner {
  display: none;
  margin: 0;
  padding: 14px 16px;
  background: rgba(16, 33, 57, 0.06);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-md);
  color: var(--ink);
}

.status-banner.is-warning,
.status-banner.is-error {
  display: block;
}

.status-banner:empty {
  display: none;
}

.status-banner.is-info {
  background: rgba(142, 197, 255, 0.18);
  border-color: rgba(69, 127, 185, 0.18);
}

.status-banner.is-success {
  background: rgba(26, 127, 141, 0.12);
  border-color: rgba(26, 127, 141, 0.24);
}

.status-banner.is-warning {
  background: rgba(239, 127, 69, 0.12);
  border-color: rgba(239, 127, 69, 0.24);
}

.status-banner.is-error {
  background: rgba(170, 32, 55, 0.1);
  border-color: rgba(170, 32, 55, 0.24);
}

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

.cart-metrics {
  margin-top: 0;
  margin-bottom: 18px;
}

.preview-card {
  align-content: start;
}

.mini-grid.is-manual-entry {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-preview-shell {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  border-radius: 18px;
  background: #dfeccd;
  border: 1px solid rgba(46, 123, 55, 0.14);
}

.quote-preview-map {
  width: 100%;
  height: 214px;
}

.quote-preview-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(46, 123, 55, 0.12), rgba(255, 255, 255, 0.56)),
    linear-gradient(180deg, rgba(201, 235, 123, 0.42), rgba(255, 245, 201, 0.24));
  text-align: center;
  font-weight: 600;
}

.quote-preview-empty[hidden] {
  display: none;
}

.mini-grid[hidden] {
  display: none;
}

.capture-section[hidden] {
  display: none;
}

.results-section,
.package-selector,
.capture-section {
  margin-top: 40px;
}

.metric-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-lg);
}

.accent-card {
  background: linear-gradient(160deg, rgba(239, 127, 69, 0.14), rgba(255, 255, 255, 0.94));
}

body.theme-lawn .accent-card {
  background: linear-gradient(160deg, rgba(243, 181, 74, 0.18), rgba(255, 255, 255, 0.96));
}

.metric-label {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.metric-value {
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 1;
}

.metric-address {
  font-size: 1.1rem;
  line-height: 1.25;
}

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

.maps-grid.is-single-map {
  grid-template-columns: 1fr;
}

.maps-grid.is-single-map .map-panel {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.selection-entry-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, 1040px);
  margin: 0 auto 18px;
}

.selection-entry-label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.selection-entry-toggle,
.manual-method-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.selection-mode-button.is-active,
.manual-method-button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  border-color: rgba(46, 123, 55, 0.3);
  box-shadow: 0 12px 24px rgba(46, 123, 55, 0.18);
}

.manual-entry-panel {
  display: grid;
  gap: 18px;
}

.manual-entry-panel[hidden] {
  display: none;
}

.panel-head--with-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.entry-mode-switch {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: transparent;
  border: 1px dashed rgba(46, 123, 55, 0.32);
  border-radius: 999px;
  color: var(--teal-deep);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease;
}

.entry-mode-switch:hover,
.entry-mode-switch:focus-visible {
  background: rgba(46, 123, 55, 0.08);
  border-color: rgba(46, 123, 55, 0.55);
  border-style: solid;
}

.manual-method-tabs {
  display: inline-flex;
  padding: 4px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: 14px;
  gap: 2px;
}

.manual-method-btn {
  padding: 9px 16px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.manual-method-btn:hover,
.manual-method-btn:focus-visible {
  color: var(--ink);
}

.manual-method-btn.is-active {
  background: var(--teal-deep);
  color: #fff;
}

.manual-method-content {
  display: grid;
  gap: 12px;
}

.manual-method-content[hidden] {
  display: none !important;
}

.manual-entry-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.manual-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
}

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

.manual-entry-note {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(236, 249, 215, 0.88), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(46, 123, 55, 0.12);
  border-radius: var(--radius-lg);
}

.manual-entry-note strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.02rem;
}

.manual-entry-note span {
  color: var(--muted);
  line-height: 1.55;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.selection-toolbar {
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-lg);
}

.selection-toolbar--merged {
  margin-bottom: 2px;
}

.package-selector {
  display: grid;
  gap: 16px;
  width: min(100%, 1040px);
  margin: 18px auto 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-lg);
}

.package-selector-head {
  margin-bottom: 0;
}

.package-included-list {
  margin: 8px 0 6px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.package-included-list li {
  margin-bottom: 2px;
}

.package-included-cta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.package-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "check copy"
    ". price";
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.package-card:hover,
.package-card.is-selected {
  transform: translateY(-1px);
  border-color: rgba(46, 123, 55, 0.28);
  box-shadow: 0 18px 36px rgba(33, 62, 37, 0.1);
}

.package-card.is-selected {
  background: linear-gradient(180deg, rgba(236, 249, 215, 0.96), rgba(255, 255, 255, 0.84));
}

.package-checkbox {
  grid-area: check;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--teal-deep);
}

.package-card-copy {
  grid-area: copy;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.package-card-copy strong {
  font-size: 1rem;
  line-height: 1.25;
}

.package-card-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.34;
}

.package-price {
  grid-area: price;
  justify-self: start;
  color: var(--teal-deep);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.package-continue-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.package-continue-button {
  min-width: 180px;
}

.package-continue-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.package-caption {
  margin-bottom: 0;
}

.tool-button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 12px 22px rgba(200, 95, 42, 0.2);
}

body.theme-lawn .tool-button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-color: rgba(201, 135, 26, 0.42);
  box-shadow: 0 12px 22px rgba(201, 135, 26, 0.24);
}

.brush-size-control {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 33, 57, 0.1);
  border-radius: 999px;
  font-weight: 700;
}

.brush-size-control input {
  width: 108px;
  accent-color: var(--teal);
}

.drawing-help {
  margin: 0 0 14px;
  padding: 14px 16px;
  color: var(--navy);
  background: rgba(142, 197, 255, 0.16);
  border: 1px solid rgba(16, 33, 57, 0.1);
  border-radius: var(--radius-md);
  font-weight: 700;
}

.drawing-help:empty {
  display: none;
}

body.theme-lawn .drawing-help {
  background: rgba(201, 235, 123, 0.22);
  border-color: rgba(46, 123, 55, 0.16);
}

.map-shell {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d9e7f3;
  overscroll-behavior: contain;
}

body.theme-lawn .map-shell {
  background: #dfeccd;
}

.map-shell.is-drawing {
  box-shadow: inset 0 0 0 3px rgba(26, 127, 141, 0.3);
}

.map-shell.is-brushing {
  box-shadow: inset 0 0 0 3px rgba(46, 123, 55, 0.34);
}

.map-shell.is-erasing {
  box-shadow: inset 0 0 0 3px rgba(239, 127, 69, 0.36);
}

.map-frame {
  width: 100%;
  height: 420px;
  overscroll-behavior: contain;
}

.map-frame .gm-fullscreen-control,
.map-frame button[aria-label*="Full screen"],
.map-frame button[aria-label*="Plein écran"],
.map-frame button[title*="Full screen"],
.map-frame button[title*="Plein écran"] {
  display: none !important;
}

@media (pointer: coarse) {
  .map-shell.is-drawing,
  .map-shell.is-brushing,
  .map-shell.is-erasing,
  .map-shell.is-drawing .map-frame,
  .map-shell.is-brushing .map-frame,
  .map-shell.is-erasing .map-frame {
    touch-action: none;
  }
}

@media (min-width: 1081px) {
  .maps-grid.is-single-map .map-shell {
    min-height: 640px;
  }

  .maps-grid.is-single-map .map-frame {
    height: 640px;
  }
}

.street-view-static {
  pointer-events: none;
  user-select: none;
}

.map-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(16, 33, 57, 0.08), rgba(255, 255, 255, 0.46)),
    linear-gradient(180deg, rgba(142, 197, 255, 0.48), rgba(255, 255, 255, 0.24));
  text-align: center;
}

body.theme-lawn .map-empty {
  background:
    linear-gradient(135deg, rgba(46, 123, 55, 0.12), rgba(255, 255, 255, 0.52)),
    linear-gradient(180deg, rgba(201, 235, 123, 0.4), rgba(255, 245, 201, 0.22));
}

.map-empty[hidden] {
  display: none;
}

.map-draw-prompt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 40, 15, 0.52);
  backdrop-filter: blur(2px);
  z-index: 10;
  cursor: pointer;
  animation: map-prompt-in 0.4s ease both;
}

.map-draw-prompt[hidden] {
  display: none;
}

@keyframes map-prompt-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.map-draw-prompt-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  text-align: center;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  animation: map-prompt-bounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes map-prompt-bounce {
  from { transform: scale(0.85) translateY(10px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.map-draw-prompt-inner svg {
  color: #2d7a2d;
  animation: prompt-pulse 1.8s ease-in-out infinite;
}

@keyframes prompt-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15) rotate(-6deg); }
}

.map-draw-prompt-inner strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: #102139;
  line-height: 1.3;
}

.map-draw-prompt-inner span {
  font-size: 0.85rem;
  color: #4d5f78;
  line-height: 1.4;
}

.drawing-hint {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
  max-width: 440px;
  padding: 12px 14px;
  color: white;
  background: rgba(16, 33, 57, 0.82);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 24px rgba(16, 33, 57, 0.18);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  pointer-events: none;
}

.drawing-hint:empty {
  display: none;
}

.live-price-widget {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
  padding: 10px 18px;
  gap: 4px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(46, 123, 55, 0.16);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(33, 62, 37, 0.08);
  backdrop-filter: blur(12px);
  opacity: 0.6;
  transition: opacity 200ms ease, box-shadow 200ms ease;
}

.live-price-widget.is-active {
  opacity: 1;
  box-shadow: 0 16px 30px rgba(33, 62, 37, 0.16);
}

.live-price-widget--floating {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
}

.live-price-widget.is-updating {
  animation: livePricePulse 460ms ease;
}

.live-price-draw-prompt {
  display: flex;
  align-items: center;
  gap: 14px;
}

.live-price-widget.is-active .live-price-draw-prompt {
  display: none;
}

.live-price-prompt-icon {
  flex-shrink: 0;
  color: var(--teal);
  opacity: 0.85;
}

.live-price-prompt-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.live-price-prompt-title {
  color: var(--teal-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.live-price-prompt-hint {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.live-price-active-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.live-price-active-copy {
  display: grid;
  gap: 2px;
}

.live-price-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-price-value {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--teal-deep);
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.live-price-value .price-digit {
  display: inline-block;
  position: relative;
  height: 1em;
  width: 1ch;
  overflow: hidden;
  vertical-align: top;
  text-align: center;
}

.live-price-value .price-digit-reel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.live-price-value .price-digit-cell {
  height: 1em;
  line-height: 1;
}

.live-price-value .price-static {
  display: inline-block;
  white-space: pre;
  vertical-align: top;
  line-height: 1;
}

.live-price-widget.is-updating .live-price-value {
  animation: livePriceValuePulse 460ms ease;
}

.live-price-detail {
  grid-column: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.32;
}

@keyframes addressSpotlightPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(201, 135, 26, 0.14);
    border-color: rgba(243, 181, 74, 0.56);
  }

  34% {
    transform: scale(1.015);
    box-shadow: 0 22px 40px rgba(201, 135, 26, 0.24);
    border-color: rgba(243, 181, 74, 0.88);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(201, 135, 26, 0.14);
    border-color: rgba(243, 181, 74, 0.56);
  }
}

@keyframes addressSpotlightBadgePulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(201, 135, 26, 0.22);
  }

  34% {
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(201, 135, 26, 0.3);
  }

  100% {
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(201, 135, 26, 0.22);
  }
}

@keyframes livePricePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 16px 30px rgba(33, 62, 37, 0.16);
    border-color: rgba(46, 123, 55, 0.16);
    background: rgba(255, 255, 255, 0.94);
  }

  38% {
    transform: scale(1.03);
    box-shadow: 0 22px 44px rgba(46, 123, 55, 0.24);
    border-color: rgba(76, 168, 67, 0.38);
    background: rgba(244, 253, 225, 0.98);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 16px 30px rgba(33, 62, 37, 0.16);
    border-color: rgba(46, 123, 55, 0.16);
    background: rgba(255, 255, 255, 0.94);
  }
}

@keyframes livePriceValuePulse {
  0% {
    transform: scale(1);
  }

  38% {
    transform: scale(1.08);
    color: #22682e;
  }

  100% {
    transform: scale(1);
    color: inherit;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-price-widget.is-updating,
  .live-price-widget.is-updating .live-price-value {
    animation: none;
  }
}

.map-nav-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 16px;
  padding: 16px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 242, 0.92)),
    linear-gradient(90deg, rgba(243, 181, 74, 0.06), transparent 38%, rgba(46, 123, 55, 0.08));
  border: 1px solid rgba(46, 123, 55, 0.14);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(33, 62, 37, 0.08);
}

.map-nav-panel .map-toolbar-groups {
  flex: 0 1 auto;
}

.map-nav-panel .map-nav-actions {
  flex: 0 0 auto;
  margin-left: auto;
}

@media (max-width: 760px) {
  .map-nav-panel .map-nav-actions {
    margin-left: 0;
    width: 100%;
  }

  .map-nav-panel .map-nav-actions .map-nav-continue-button {
    width: 100%;
  }
}

.map-nav-copy {
  display: grid;
  gap: 4px;
}

.map-nav-title {
  color: var(--teal-deep);
  font-size: 0.98rem;
  font-weight: 800;
}

.map-nav-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.map-nav-row-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
  margin: 0 4px;
}

.map-nav-groups {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
}

.map-toolbar-groups {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}

.map-toolbar-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: center;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(46, 123, 55, 0.12);
  border-radius: 12px;
}

.map-toolbar-group--draw {
  flex: 0 0 auto;
  min-width: 0;
}

.map-toolbar-group--draw .tool-button {
  flex: 0 0 auto;
  min-height: 38px;
  min-width: 0;
  padding: 0 12px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.map-toolbar-group--nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 0 0 auto;
}

.map-nav-cluster,
.map-zoom-cluster {
  display: flex !important;
  gap: 4px;
  align-items: center;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
}

.map-toolbar-group--nav .map-nav-button,
.map-toolbar-group--draw + .map-toolbar-group--nav .map-nav-button {
  width: 38px;
  height: 38px;
  font-size: 1.05rem;
  border-radius: 10px;
}

.map-toolbar-group--nav .map-nav-up,
.map-toolbar-group--nav .map-nav-down,
.map-toolbar-group--nav .map-nav-left,
.map-toolbar-group--nav .map-nav-right {
  grid-column: auto !important;
  grid-row: auto !important;
}

.map-nav-row-divider {
  width: 1px;
  height: 24px;
  margin: 0 2px;
}

.map-nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.map-nav-group {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.map-nav-group--combined {
  width: 100%;
}

.map-nav-group--zoom {
  min-width: 124px;
}

.map-nav-group-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-nav-clusters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: start;
}

.map-nav-cluster {
  display: grid;
  gap: 10px;
}

.map-nav-cluster-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-nav-controls {
  display: grid;
  gap: 10px;
}

.map-nav-controls--pad {
  grid-template-columns: repeat(3, 52px);
  grid-template-rows: repeat(3, 52px);
  justify-content: start;
}

.map-nav-controls--zoom {
  grid-template-columns: repeat(2, 52px);
  grid-template-rows: 52px;
  align-content: center;
}

.map-nav-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 239, 0.94));
  border: 1px solid rgba(46, 123, 55, 0.14);
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(16, 33, 57, 0.1);
  cursor: pointer;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background 120ms ease;
}

.map-nav-button:hover,
.map-nav-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(46, 123, 55, 0.28);
  background: linear-gradient(180deg, rgba(248, 252, 242, 0.98), rgba(235, 247, 219, 0.96));
  box-shadow: 0 14px 24px rgba(16, 33, 57, 0.14);
}

.map-nav-continue-button {
  min-width: 190px;
}

.map-nav-center {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: rgba(232, 243, 217, 0.86);
  border: 1px dashed rgba(46, 123, 55, 0.18);
}

.map-nav-center::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(46, 123, 55, 0.28);
}

.map-nav-up {
  grid-column: 2;
  grid-row: 1;
}

.map-nav-left {
  grid-column: 1;
  grid-row: 2;
}

.map-nav-right {
  grid-column: 3;
  grid-row: 2;
}

.map-nav-down {
  grid-column: 2;
  grid-row: 3;
}

.map-nav-zoom-in {
  grid-column: 1;
  grid-row: 1;
}

.map-nav-zoom-out {
  grid-column: 2;
  grid-row: 1;
}

.lead-panel {
  max-width: 980px;
}

.cart-layout {
  margin-bottom: 24px;
}

.invoice-card,
.invoice-total {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 33, 57, 0.08);
  border-radius: var(--radius-lg);
}

.invoice-card {
  display: grid;
  gap: 12px;
}

.invoice-card--quote {
  display: grid;
  grid-template-columns: minmax(220px, 40%) minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 251, 247, 0.96)),
    linear-gradient(90deg, rgba(243, 181, 74, 0.08), transparent 22%, transparent 78%, rgba(46, 123, 55, 0.06));
  border: 1px solid rgba(16, 33, 57, 0.1);
  box-shadow: 0 22px 48px rgba(33, 62, 37, 0.08);
  overflow: hidden;
  min-width: 0;
}

.invoice-card--quote .invoice-preview-thumb {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 57, 0.1);
  background: rgba(16, 33, 57, 0.04);
}

.invoice-card--quote .invoice-preview-thumb .quote-preview-shell,
.invoice-card--quote .invoice-preview-thumb .quote-preview-map {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 0;
  border: none;
}

.invoice-content {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.invoice-content .invoice-property-info {
  display: grid;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(16, 33, 57, 0.08);
  flex: none;
  justify-content: start;
}

.invoice-content .invoice-info-line span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.invoice-content .invoice-info-line strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.invoice-property-compact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(16, 33, 57, 0.08);
  margin-bottom: 2px;
}

.invoice-preview-thumb {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 57, 0.1);
}

.invoice-preview-thumb .quote-preview-shell {
  min-height: 96px;
  border-radius: 0;
  border: none;
}

.invoice-preview-thumb .quote-preview-map {
  height: 96px;
}

.invoice-preview-thumb .quote-preview-empty {
  font-size: 0.72rem;
  padding: 8px;
}

.invoice-property-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.invoice-info-line {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.invoice-info-line span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.invoice-info-line strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.invoice-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(16, 33, 57, 0.14);
}

.invoice-kicker {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invoice-header h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.invoice-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--teal-deep);
  background: rgba(236, 249, 215, 0.95);
  border: 1px solid rgba(46, 123, 55, 0.14);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.invoice-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 18px;
  align-items: start;
}

.invoice-meta {
  display: grid;
  gap: 12px;
}

.invoice-preview-block {
  display: grid;
  gap: 10px;
}

.invoice-preview-inline {
  margin: 0 0 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(16, 33, 57, 0.08);
}

.invoice-preview-inline .quote-preview-shell {
  min-height: 140px;
  border-radius: 0;
  border: none;
}

.invoice-preview-inline .quote-preview-map {
  height: 140px;
}

.invoice-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 33, 57, 0.08);
}

.invoice-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.invoice-row span {
  color: var(--muted);
  font-weight: 600;
}

.invoice-row strong {
  max-width: 62%;
  font-size: 1rem;
  line-height: 1.3;
  text-align: right;
}

.invoice-row-stack {
  align-items: flex-start;
  flex-direction: column;
}

.invoice-row-options {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.invoice-options-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.invoice-row-detail strong {
  color: var(--muted);
  font-weight: 600;
}

.package-summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.package-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 8px 0 12px;
  color: var(--navy);
  background: rgba(236, 249, 215, 0.92);
  border: 1px solid rgba(46, 123, 55, 0.16);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.package-summary-pill--included {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(46, 123, 55, 0.22);
  border-style: dashed;
  color: var(--ink);
}

.package-summary-pill--included::before {
  content: "✓ Inclus";
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(46, 123, 55, 0.92);
  color: #fff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-right: 2px;
}

.package-summary-pill--extra::before {
  content: "+ Extra";
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(243, 181, 74, 0.95);
  color: #4a2e00;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-right: 2px;
}

.package-summary-label {
  min-width: 0;
}

.package-summary-remove {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  padding: 0;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(46, 123, 55, 0.18);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.package-summary-remove:hover,
.package-summary-remove:focus-visible {
  background: rgba(243, 181, 74, 0.18);
  border-color: rgba(46, 123, 55, 0.34);
  transform: scale(1.05);
}

.invoice-total-block {
  margin-top: 4px;
  padding: 18px 20px;
  background: linear-gradient(160deg, rgba(243, 181, 74, 0.12), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(243, 181, 74, 0.28);
  border-radius: 20px;
  display: grid;
  gap: 14px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.invoice-total-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.invoice-total-meta {
  display: grid;
  gap: 3px;
}

.invoice-total-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.invoice-total-price {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: var(--teal-deep);
}

.invoice-price-detail {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.invoice-tax-breakdown {
  display: grid;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 33, 57, 0.1);
}

.invoice-tax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
}

.invoice-tax-row span {
  color: var(--muted);
}

.invoice-tax-row strong {
  font-weight: 600;
}

.invoice-tax-total {
  padding-top: 8px;
  border-top: 1px solid rgba(16, 33, 57, 0.12);
}

.invoice-tax-total span {
  color: var(--ink);
  font-weight: 700;
}

.invoice-tax-total strong {
  font-size: 1rem;
  font-weight: 700;
}

.confirmation-panel {
  display: grid;
  gap: 22px;
}

.confirmation-panel .section-heading {
  margin: 0;
}

.confirmation-notice {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(46, 123, 55, 0.14);
  border-radius: var(--radius-lg);
}

.confirmation-notice strong,
.partner-vignette h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.confirmation-actions .primary-button,
.confirmation-actions .secondary-button {
  min-width: 220px;
  text-align: center;
}

.confirmation-page-shell {
  padding: 34px 0 72px;
}

.confirmation-page-panel {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.confirmation-page-panel .section-heading {
  margin-bottom: 20px;
}

.confirmation-page-panel .confirmation-layout {
  margin-top: 24px;
}

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

.confirmation-order-card {
  align-content: start;
}

.partner-vignette {
  align-content: start;
  gap: 14px;
}

.partner-reviews {
  display: grid;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 33, 57, 0.08);
}

.partner-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.partner-reviews-head .card-label {
  margin: 0;
}

.partner-reviews-link {
  color: var(--teal-deep);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.partner-reviews-link:hover,
.partner-reviews-link:focus-visible {
  text-decoration: underline;
}

.partner-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-rating-value {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.partner-rating-stars,
.partner-review-rating {
  color: #d79d18;
  letter-spacing: 0.08em;
}

.partner-rating-count,
.partner-review-time {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

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

.partner-review-card {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(248, 252, 242, 0.88);
  border: 1px solid rgba(46, 123, 55, 0.14);
  border-radius: 16px;
}

.partner-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.partner-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.partner-review-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.partner-review-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.partner-review-author-name {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.partner-review-author-name:hover,
.partner-review-author-name:focus-visible {
  text-decoration: underline;
}

.partner-review-text {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(46, 123, 55, 0.12);
  border-radius: 18px;
}

.partner-logo {
  width: min(100%, 260px);
  height: auto;
  object-fit: contain;
}

.partner-vignette h3 {
  margin: -4px 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.partner-contact-list {
  display: grid;
  gap: 10px;
}

.partner-contact-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--navy);
  background: rgba(236, 249, 215, 0.82);
  border: 1px solid rgba(46, 123, 55, 0.16);
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.partner-contact-link:hover,
.partner-contact-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(33, 62, 37, 0.1);
}

.partner-reviews {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 33, 57, 0.08);
  display: grid;
  gap: 12px;
}

.partner-reviews-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.95rem;
}

.partner-reviews-stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 1rem;
}

.partner-reviews-rating {
  font-weight: 700;
  color: var(--ink);
}

.partner-reviews-count {
  color: var(--muted);
  font-size: 0.88rem;
}

.partner-reviews-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.partner-review {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 33, 57, 0.06);
  border-radius: 12px;
}

.partner-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.partner-review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.partner-review-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.partner-review-author {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
}

.partner-review-submeta {
  font-size: 0.78rem;
  color: var(--muted);
}

.partner-review-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-reviews-link {
  display: inline-block;
  color: var(--teal-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.partner-reviews-link:hover,
.partner-reviews-link:focus-visible {
  text-decoration: underline;
}

.partner-reviews-attribution {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}

.partner-reviews-attribution img {
  height: 14px;
  width: auto;
}

.partner-qualities {
  list-style: none;
  margin: 14px 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.partner-quality {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
}

.partner-quality-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  background: rgba(46, 123, 55, 0.15);
  color: var(--teal-deep);
  border-radius: 50%;
}

.partner-quality strong {
  color: var(--teal-deep);
  font-weight: 700;
}

.partner-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(243, 181, 74, 0.1), rgba(46, 123, 55, 0.06));
  border: 1px solid rgba(46, 123, 55, 0.18);
  border-left: 4px solid rgba(46, 123, 55, 0.5);
  border-radius: 12px;
}

.partner-note-label {
  margin: 0 0 6px;
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-note-body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.55;
  font-style: normal;
}

.partner-note-body strong {
  color: var(--teal-deep);
  font-weight: 700;
}

.cart-form-heading {
  margin-bottom: 18px;
}

.lead-summary {
  margin-bottom: 18px;
  font-size: 1.08rem;
}

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

.form-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.form-trust-card {
  display: grid;
  gap: 8px;
}

.form-trust-card strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.02rem;
}

.inline-reassurance {
  justify-content: center;
  margin-top: -2px;
}

.full-width {
  width: 100%;
}

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

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(33, 62, 37, 0.08);
}

.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
}

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

.faq-item p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.92);
}

.final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 34px);
  color: white;
  background:
    radial-gradient(circle at top right, rgba(115, 190, 89, 0.28), transparent 28%),
    linear-gradient(145deg, #17311d, #234628 54%, #2d5e36 100%);
  border-radius: 32px;
  box-shadow: 0 28px 56px rgba(24, 48, 29, 0.22);
}

.final-cta-shell .eyebrow,
.final-cta-shell .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-shell h2 {
  color: white;
}

.site-footer {
  padding: 8px clamp(18px, 4vw, 48px) 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-cta-bar {
  display: none;
}

.mobile-cta-bar[hidden] {
  display: none !important;
}

.directory-hero {
  align-items: stretch;
}

.service-hero {
  align-items: center;
}

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

.directory-card,
.service-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.directory-section {
  animation: rise 0.7s ease both;
}

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

.category-card {
  display: grid;
  gap: 14px;
}

.category-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.is-featured {
  background:
    linear-gradient(160deg, rgba(142, 197, 255, 0.16), rgba(255, 255, 255, 0.84)),
    var(--surface);
}

.category-card.is-summer {
  background:
    linear-gradient(160deg, rgba(201, 235, 123, 0.24), rgba(255, 244, 201, 0.84)),
    var(--surface);
}

.coming-soon-card {
  background:
    linear-gradient(160deg, rgba(16, 33, 57, 0.05), rgba(255, 255, 255, 0.82)),
    var(--surface);
}

.coming-soon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coming-soon-list span {
  padding: 10px 12px;
  color: var(--navy);
  background: rgba(16, 33, 57, 0.06);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .premium-hero,
  .estimator-grid,
  .delivery-grid,
  .maps-grid,
  .category-grid,
  .steps-strip,
  .cart-layout,
  .process-layout,
  .final-cta-shell {
    grid-template-columns: 1fr;
  }

  .mini-grid,
  .hero-proof-inline,
  .benefits-grid,
  .stats-grid,
  .testimonials-grid,
  .trust-grid,
  .form-trust-grid {
    grid-template-columns: 1fr;
  }

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

  .manual-entry-grid,
  .manual-entry-grid--dimensions,
  .mini-grid.is-manual-entry {
    grid-template-columns: 1fr;
  }

  .floating-panel {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .single-panel-grid,
  .estimator-panel {
    max-width: none;
  }

  .confirmation-layout {
    grid-template-columns: 1fr;
  }

  .confirmation-actions {
    flex-direction: column;
  }

  .confirmation-actions .primary-button,
  .confirmation-actions .secondary-button {
    width: 100%;
    min-width: 0;
  }

  .estimator-section--hero-aligned {
    width: 100%;
  }

  .estimator-panel .address-form {
    grid-template-columns: 1fr;
  }

  .estimator-panel .address-form--premium .field:first-child::after {
    right: auto;
    left: 14px;
  }

  .estimator-panel .primary-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  main {
    padding-bottom: 116px;
  }

  .hero {
    padding-top: 34px;
  }

  .lead-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-badge-row,
  .trust-marquee-inner,
  .inline-reassurance {
    align-items: stretch;
  }

  .selection-entry-row {
    align-items: stretch;
  }

  .selection-entry-toggle,
  .manual-method-toggle {
    width: 100%;
  }

  .selection-mode-button,
  .manual-method-button {
    flex: 1 1 100%;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .trust-logo {
    width: 100%;
  }

  .trust-chip,
  .support-chip,
  .inline-reassurance span {
    width: 100%;
    justify-content: center;
  }

  .step-card {
    align-items: flex-start;
  }

  .invoice-row {
    flex-direction: column;
  }

  .invoice-row strong {
    max-width: none;
    text-align: left;
  }

  .invoice-options-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .invoice-options-header strong {
    text-align: left;
  }

  .invoice-total-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .invoice-total-price {
    white-space: normal;
    word-break: break-word;
    text-align: left;
  }

  .invoice-tax-row {
    gap: 8px;
    min-width: 0;
  }

  .invoice-tax-row strong {
    min-width: 0;
    text-align: right;
    word-break: break-word;
  }

  .invoice-header,
  .invoice-topline {
    grid-template-columns: 1fr;
  }

  .invoice-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel,
  .hero-card {
    padding: 20px;
  }

  .invoice-card--quote {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .invoice-card--quote .invoice-preview-thumb {
    min-height: 180px;
  }

  .invoice-card--quote .invoice-preview-thumb .quote-preview-shell,
  .invoice-card--quote .invoice-preview-thumb .quote-preview-map {
    min-height: 180px;
  }

  .hero-visual-card,
  .process-visual-card,
  .support-visual,
  .final-cta-visual,
  .faq-item,
  .final-cta-shell {
    border-radius: 24px;
  }

  .trust-marquee-inner,
  .process-item-premium,
  .feature-card,
  .stat-card,
  .testimonial-card,
  .trust-card,
  .form-trust-card {
    padding-inline: 18px;
  }

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

  .live-price-widget {
    gap: 4px 12px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .live-price-widget--floating {
    margin-bottom: 12px;
  }

  .map-nav-panel {
    gap: 14px;
    padding: 14px;
  }

  .map-nav-groups {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-nav-clusters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .map-nav-actions {
    justify-content: stretch;
  }

  .map-nav-continue-button {
    width: 100%;
    min-width: 0;
  }

  .map-nav-group {
    padding: 12px;
  }

  .map-nav-controls--pad {
    grid-template-columns: repeat(3, 40px);
    grid-template-rows: repeat(3, 40px);
    gap: 8px;
  }

  .map-nav-controls--zoom {
    grid-template-columns: repeat(2, 40px);
    grid-template-rows: 40px;
    gap: 8px;
  }

  .map-nav-button {
    width: 40px;
    height: 40px;
    font-size: 1.18rem;
    box-shadow: 0 8px 16px rgba(16, 33, 57, 0.14);
  }

  .map-toolbar-groups {
    flex-wrap: wrap;
  }

  .map-toolbar-group--nav .map-nav-button {
    width: 34px;
    height: 34px;
    font-size: 0.98rem;
  }

  .map-toolbar-group--draw .tool-button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .map-nav-center {
    width: 40px;
    height: 40px;
  }

  .live-price-label {
    font-size: 0.7rem;
  }

  .live-price-value {
    font-size: 1.5rem;
  }

  .live-price-detail {
    font-size: 0.72rem;
    line-height: 1.22;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-continue-row {
    justify-content: stretch;
  }

  .package-continue-button {
    width: 100%;
    min-width: 0;
  }

  .selection-toolbar .tool-button,
  .brush-size-control {
    width: 100%;
  }

  .brush-size-control {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .brush-size-control input {
    flex: 1;
  }

  .map-shell,
  .map-frame {
    min-height: 390px;
    height: 390px;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 25;
    display: block;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    background: rgba(247, 255, 231, 0.9);
    border: 1px solid rgba(46, 123, 55, 0.12);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(24, 48, 29, 0.18);
    backdrop-filter: blur(14px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-cta-bar .primary-button {
    width: 100%;
  }

  .mobile-cta-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .live-price-widget {
    grid-template-columns: 1fr;
    padding: 10px 12px;
  }

  .live-price-widget--floating {
    margin-bottom: 10px;
  }

  .live-price-value {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    font-size: 1.32rem;
    text-align: left;
  }

  .live-price-detail {
    display: none;
  }
}

body.home-root {
  background:
    radial-gradient(circle at 10% 14%, rgba(142, 197, 255, 0.34), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(255, 232, 168, 0.5), transparent 24%),
    radial-gradient(circle at 52% 58%, rgba(201, 235, 123, 0.2), transparent 38%),
    linear-gradient(180deg, #f4fbff 0%, #f6fbf3 48%, #fff8e9 100%);
}

body.home-root::before {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.7) 2px, transparent 2px),
    radial-gradient(circle at 72% 26%, rgba(255, 240, 189, 0.55) 0, rgba(255, 240, 189, 0.55) 1.6px, transparent 1.6px),
    radial-gradient(circle at 80% 10%, rgba(201, 235, 123, 0.28) 0, rgba(201, 235, 123, 0.28) 2px, transparent 2px);
}

.home-root .site-header {
  background: transparent;
  border-bottom: 0;
}

.home-root .brand-mark {
  filter: drop-shadow(0 10px 18px rgba(32, 85, 156, 0.1));
}

.home-root .top-nav a:hover,
.home-root .top-nav a:focus-visible {
  color: #1d6d35;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  padding: clamp(42px, 6vw, 90px) 0 26px;
  text-align: center;
}

.home-hero .hero-copy {
  max-width: 940px;
}

.home-hero h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.75rem, 5.7vw, 5.4rem);
}

.home-hero .hero-text {
  max-width: 820px;
  margin-inline: auto;
}

.home-hero .hero-actions {
  justify-content: center;
  margin-bottom: 12px;
}

.home-hero-helper {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.home-service-grid {
  display: grid;
  gap: 24px;
  padding-bottom: 32px;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.service-tile {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 3.5vw, 40px);
}

.service-tile--snow {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 244, 255, 0.84)),
    var(--surface);
}

.service-tile.is-coming-soon {
  position: relative;
  overflow: hidden;
}

.service-tile.is-coming-soon .service-tile-copy {
  opacity: 0.45;
  filter: grayscale(0.4);
}

.service-tile.is-coming-soon .service-tile-visual {
  opacity: 0.55;
  filter: grayscale(0.5);
}

.service-tile.is-coming-soon h2,
.service-tile.is-coming-soon .section-copy {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(16, 33, 57, 0.5);
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: linear-gradient(135deg, #f3b54a, #e6962b);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(230, 150, 43, 0.34);
}

.primary-button.is-disabled,
.secondary-button.is-disabled {
  background: rgba(16, 33, 57, 0.18);
  color: rgba(16, 33, 57, 0.55);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.service-tile--lawn {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 214, 0.9)),
    var(--surface);
}

.service-tile--reverse .service-tile-visual {
  order: -1;
  justify-self: start;
}

.service-tile-copy {
  display: grid;
  gap: 18px;
}

.service-tile-copy .eyebrow,
.service-tile-copy .section-copy,
.service-tile-copy .service-tile-note,
.service-tile-copy h2 {
  margin-bottom: 0;
}

.service-tile-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.02;
}

.service-tile-copy .section-copy {
  max-width: 620px;
}

.home-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.home-feature-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.home-feature-row span::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%232D7D3B'/%3E%3Cpath d='M6 10.5 L9 13.5 L14.5 7' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.service-tile-note {
  color: var(--teal-deep);
  font-weight: 700;
}

.service-tile-schedule {
  margin: 14px 0 4px;
  padding: 11px 15px;
  border-radius: 12px;
  background: #fdf8ee;
  border-left: 3px solid #e3cfa0;
  color: #6e6048;
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-tile-schedule strong {
  color: #574a31;
}

.service-tile-actions {
  margin: 0;
}

.service-tile-visual {
  width: min(100%, 560px);
  justify-self: end;
}

.service-tile-visual img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  box-shadow: 0 26px 58px rgba(28, 47, 34, 0.16);
}

/* Photos (jpg/png) : même empreinte que les visuels SVG (ratio 5:4), recadrées proprement.
   Ne s'applique pas aux SVG (qui ont leur propre mise en page interne). */
.service-tile-visual img:not([src$=".svg"]) {
  aspect-ratio: 1200 / 960;
  object-fit: cover;
  display: block;
}

@media (max-width: 1080px) {
  .service-tile,
  .service-tile--reverse {
    grid-template-columns: 1fr;
  }

  .service-tile-visual,
  .service-tile--reverse .service-tile-visual {
    order: 0;
    justify-self: center;
  }

  .service-tile-copy .section-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .home-hero {
    justify-items: start;
    padding-top: 34px;
    text-align: left;
  }

  .home-hero .hero-copy,
  .home-hero .hero-text {
    max-width: none;
    margin-inline: 0;
  }

  .home-hero .hero-actions {
    justify-content: flex-start;
  }

  .service-tile {
    padding: 22px;
  }

  .service-tile-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .home-feature-row span {
    font-size: 0.88rem;
  }
}

body.theme-lawn .premium-hero,
body.theme-lawn .estimator-section--hero-aligned,
body.theme-lawn .results-section,
body.theme-lawn .capture-section {
  width: min(100%, 1280px);
  margin-inline: auto;
}

body.theme-lawn .estimator-section--hero-aligned .single-panel-grid {
  max-width: none;
  margin-inline: auto;
}

body.theme-lawn .estimator-section--hero-aligned .estimator-panel {
  max-width: none;
  margin-inline: auto;
}

body.theme-lawn .results-section .section-heading,
body.theme-lawn .capture-section .section-heading {
  max-width: 920px;
}

body.theme-lawn .maps-grid.is-single-map .map-panel {
  width: min(100%, 1100px);
  margin-inline: 0;
}

body.theme-lawn .lead-panel {
  max-width: 1100px;
}

body.theme-lawn .estimator-section--hero-aligned,
body.theme-lawn .results-section,
body.theme-lawn .capture-section,
body.theme-lawn .faq-section {
  width: min(100%, 1100px);
  margin-inline: auto;
}

body.theme-lawn .client-prices-section {
  width: min(100%, 1100px);
  margin-inline: auto;
}

.client-prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.client-price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "head price"
    "detail price";
  align-items: center;
  column-gap: 18px;
  row-gap: 4px;
  padding: 18px 20px 18px 22px;
  background: linear-gradient(180deg, #ffffff, #f6faf1);
  border: 1px solid rgba(45, 125, 59, 0.16);
  border-left: 5px solid #2d7d3b;
  border-radius: 14px;
}

.client-price-head {
  grid-area: head;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--navy, #14304f);
  font-size: 1.02rem;
}

.client-price-pin {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: #2d7d3b;
}

.client-price-detail {
  grid-area: detail;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted, #5a6b7b);
}

.client-price-amount {
  grid-area: price;
  justify-self: end;
  padding: 8px 16px;
  background: #2d7d3b;
  color: #ffffff;
  border-radius: 999px;
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
}

.client-price-amount small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.client-prices-disclaimer {
  margin: 22px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted, #8a98a5);
}

.site-footer {
  margin-top: 56px;
  background: linear-gradient(135deg, #23622a, #1d3321);
  color: #e5f0dd;
}

.site-footer-inner {
  display: grid;
  gap: 8px;
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 40px clamp(18px, 4vw, 48px) 36px;
  text-align: center;
}

.site-footer-brand {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
}

.site-footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: #cfe4c5;
}

.site-footer-contact {
  margin: 8px 0 0;
  font-size: 1rem;
}

.site-footer-contact a {
  color: #ffd24a;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 210, 74, 0.5);
}

.site-footer-contact a:hover,
.site-footer-contact a:focus-visible {
  color: #ffe08a;
}

.site-footer-legal {
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: #9fb795;
}

@media (max-width: 760px) {
  .client-prices-grid {
    grid-template-columns: 1fr;
  }
}

body.theme-lawn .service-hero.is-flow-started .hero-copy {
  width: min(100%, 920px);
  max-width: none;
  margin-inline: auto;
}

body.theme-lawn .results-section .section-heading,
body.theme-lawn .capture-section .section-heading,
body.theme-lawn .faq-section .section-heading {
  max-width: none;
}

body.theme-lawn .maps-grid.is-single-map .map-panel,
body.theme-lawn .package-selector,
body.theme-lawn .lead-panel,
body.theme-lawn .faq-list {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

@media (max-width: 1080px) {
  body.theme-lawn .premium-hero,
  body.theme-lawn .estimator-section--hero-aligned,
  body.theme-lawn .results-section,
  body.theme-lawn .capture-section,
  body.theme-lawn .faq-section {
    width: 100%;
  }

  body.theme-lawn .estimator-section--hero-aligned .single-panel-grid,
  body.theme-lawn .results-section .section-heading,
  body.theme-lawn .capture-section .section-heading,
  body.theme-lawn .faq-section .section-heading,
  body.theme-lawn .maps-grid.is-single-map .map-panel,
  body.theme-lawn .package-selector,
  body.theme-lawn .lead-panel,
  body.theme-lawn .faq-list {
    max-width: none;
    width: 100%;
  }
}

/* ── Field validation ──────────────────────────────────────────────────────── */

.field-optional {
  font-size: 0.8em;
  font-weight: 400;
  color: var(--muted);
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
  min-height: 1.1em;
}

.field input.is-invalid {
  border-color: #c0392b;
  background: #fff5f5;
}

/* ── Resume banner ─────────────────────────────────────────────────────────── */

.resume-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--ice, #e7f4ff);
  border: 1px solid var(--sky, #8ec5ff);
  border-radius: var(--radius-sm, 10px);
  padding: 12px 16px;
  margin-bottom: 16px;
}

body.theme-lawn .resume-banner {
  background: #eef7ee;
  border-color: #a8d5a2;
}

.resume-banner-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--ink);
  margin: 0;
}

.resume-banner-actions {
  display: flex;
  gap: 8px;
}

.resume-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.resume-btn:hover { opacity: 0.82; }

.resume-btn--yes {
  background: var(--teal, #1a7f8d);
  color: #fff;
}

body.theme-lawn .resume-btn--yes {
  background: #2d7a2d;
}

.resume-btn--no {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

/* ── Google rating widget ──────────────────────────────────────────────────── */

.google-rating-widget {
  margin-bottom: 16px;
}

.google-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--ink);
  transition: box-shadow 0.15s;
}

.google-rating-link:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.google-rating-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
}

.google-rating-score {
  font-weight: 700;
  color: var(--ink);
}

.google-rating-reviews {
  color: var(--muted);
}

.google-rating-label {
  color: var(--muted);
  font-size: 0.78rem;
}

/* ── Confirmation page (complete/) ────────────────────────────────────────── */

.confirmation-page-shell {
  min-height: 100vh;
  background: #f4f8f4;
  font-family: "Source Sans 3", sans-serif;
  color: #102139;
}

.confirmation-hero {
  background: linear-gradient(135deg, #1e5c1e 0%, #2d7a2d 100%);
  color: #fff;
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
}

.confirmation-lang-switcher {
  position: absolute;
  top: 12px;
  right: 16px;
}

.confirmation-home-link {
  position: absolute;
  top: 14px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 140ms ease, transform 140ms ease;
}

.confirmation-home-link:hover,
.confirmation-home-link:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateX(-1px);
}

.confirmation-lang-switcher .lang-btn {
  color: rgba(255,255,255,0.7);
  border-color: transparent;
}

.confirmation-lang-switcher .lang-btn:hover,
.confirmation-lang-switcher .lang-btn.is-active {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.confirmation-hero-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.confirmation-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 0 auto 8px;
  max-width: 580px;
  line-height: 1.2;
}

.confirmation-hero p {
  font-size: 1rem;
  opacity: 0.88;
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.55;
}

.confirmation-hero-note {
  font-size: 0.88rem;
  opacity: 0.72;
  margin-top: 8px !important;
  font-style: italic;
}

.confirmation-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 22px;
  background: #fff;
  color: #1d3321;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.confirmation-hero-phone:hover,
.confirmation-hero-phone:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.confirmation-hero-phone svg {
  color: #1d3321;
}

.confirmation-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.confirmation-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
}

.confirmation-card-head {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4d5f78;
}

.confirmation-card-body {
  padding: 8px 0;
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.92rem;
}

.confirmation-row:last-child { border-bottom: none; }
.confirmation-row span { color: #4d5f78; }
.confirmation-row strong { text-align: right; }

.confirmation-row--total {
  background: #f4f8f4;
  font-size: 1rem;
}

.confirmation-row--total strong {
  color: #1e5c1e;
  font-size: 1.2rem;
}

.confirmation-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 20px;
}

.confirmation-pill {
  font-size: 0.8rem;
  background: #eef7ee;
  color: #1e5c1e;
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 600;
}

.confirmation-pill--included {
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(46, 123, 55, 0.32);
  padding: 3px 12px 3px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.confirmation-pill--included::before {
  content: "✓ Inclus";
  padding: 2px 6px;
  background: rgba(46, 123, 55, 0.92);
  color: #fff;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
}

.confirmation-pill--extra {
  padding: 3px 12px 3px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.confirmation-pill--extra::before {
  content: "+ Extra";
  padding: 2px 6px;
  background: rgba(243, 181, 74, 0.95);
  color: #4a2e00;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
}

.confirmation-partner-logo {
  display: block;
  max-width: 100px;
  height: auto;
  margin-bottom: 4px;
  object-fit: contain;
}

.confirmation-partner-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.confirmation-partner-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.confirmation-partner-summary {
  font-size: 0.88rem;
  color: #4d5f78;
  margin: 0;
}

.confirmation-partner-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.confirmation-partner-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e5c1e;
  text-decoration: none;
  background: #eef7ee;
  border-radius: 999px;
  padding: 6px 14px;
  transition: background 0.15s;
}

.confirmation-partner-contact:hover { background: #d4edda; }

.confirmation-cta {
  text-align: center;
  padding: 8px 0;
}

.confirmation-cta-btn {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #2d7a2d;
  border-radius: 999px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.15s;
}

.confirmation-cta-btn:hover { background: #1e5c1e; }

/* === Cloudflare Turnstile widget === */
.turnstile-widget {
  margin: 12px 0;
  display: flex;
  justify-content: center;
  min-height: 0;
}

.turnstile-widget:empty {
  display: none;
}

.turnstile-widget iframe {
  margin: 0 auto;
}

/* === Price estimate disclaimer === */
.price-disclaimer {
  margin: 8px 0 0;
  padding: 0;
  color: var(--muted, #556a4f);
  font-size: 0.78rem;
  line-height: 1.45;
  font-style: italic;
  text-align: center;
}

.price-disclaimer--cart {
  margin: 14px 0 0;
  padding: 10px 14px;
  background: rgba(243, 181, 74, 0.1);
  border: 1px solid rgba(243, 181, 74, 0.32);
  border-radius: 10px;
  font-size: 0.84rem;
  text-align: left;
  font-style: normal;
  color: #6b4d1a;
  line-height: 1.55;
}

.price-disclaimer--cart::before {
  content: "ℹ️ ";
  font-style: normal;
}

.price-disclaimer--confirm {
  margin: 18px auto 0;
  max-width: 520px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-style: italic;
}

/* === Section width alignment override === */
/* Step 1 (estimator-section--hero-aligned) and Step 2 (results-section) must
   render at the same width on theme-lawn pages. Placed last to win the cascade. */
@media (min-width: 1081px) {
  body.theme-lawn .estimator-section--hero-aligned,
  body.theme-lawn .results-section {
    width: min(100%, 1100px) !important;
    max-width: min(100%, 1100px) !important;
    margin-inline: auto !important;
  }

  body.theme-lawn .estimator-section--hero-aligned .single-panel-grid,
  body.theme-lawn .estimator-section--hero-aligned .estimator-panel,
  body.theme-lawn .results-section .maps-grid,
  body.theme-lawn .results-section .map-panel {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
  }
}

/* === Cèdres package selector (fertilisation-cedres-haies page) === */
.cedres-package-panel {
  display: grid;
  gap: 22px;
}

.cedres-package-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.cedres-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.cedres-package-card {
  position: relative;
  display: block;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(46, 123, 55, 0.16);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(33, 62, 37, 0.06);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cedres-package-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 123, 55, 0.36);
  box-shadow: 0 16px 30px rgba(33, 62, 37, 0.12);
}

.cedres-package-card.is-selected {
  border-color: var(--teal-deep, #1d5c1d);
  background: linear-gradient(135deg, rgba(46, 123, 55, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 36px rgba(33, 62, 37, 0.16);
}

.cedres-package-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: 14px;
  right: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--teal-deep, #1d5c1d);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
}

.cedres-package-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cedres-package-content {
  display: grid;
  gap: 8px;
}

.cedres-package-eyebrow {
  display: inline-block;
  width: max-content;
  padding: 3px 10px;
  background: rgba(46, 123, 55, 0.15);
  color: var(--teal-deep, #1d5c1d);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cedres-package-eyebrow--featured {
  background: linear-gradient(135deg, #f3b54a, #e6962b);
  color: #fff;
}

.cedres-package-name {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--ink, #102139);
}

.cedres-package-desc {
  margin: 0;
  color: var(--ink, #102139);
  font-size: 0.94rem;
  line-height: 1.55;
}

.cedres-package-price-tag {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--teal-deep, #1d5c1d);
  font-size: 1.6rem;
  font-weight: 700;
}

.cedres-package-price-tag span {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted, #556a4f);
}

.cedres-continue-row {
  display: flex;
  justify-content: flex-end;
}

.cedres-continue-button {
  min-width: 220px;
}

@media (max-width: 760px) {
  .cedres-continue-row {
    justify-content: stretch;
  }

  .cedres-continue-button {
    width: 100%;
    min-width: 0;
  }
}
