:root {
  --page: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #f0eee8;
  --ink: #171714;
  --muted: #65625b;
  --line: #ddd6cb;
  --green: #1f6f4d;
  --green-dark: #153f30;
  --primary-control: #c4b49e;
  --secondary-control: #9f8e75;
  --gold: #dfbc89;
  --rose: #c66f7d;
  --blue: #547a91;
  --shadow: 0 24px 70px rgba(31, 27, 20, 0.14);
  --topbar-glass: rgba(255, 255, 255, 0.48);
  --topbar-glass-strong: rgba(255, 255, 255, 0.66);
  --topbar-glass-line: rgba(255, 255, 255, 0.56);
  --topbar-glass-stroke: rgba(23, 23, 20, 0.08);
  --font-body: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  --topbar-height: 65px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font-body);
  line-height: 1.5;
}

html:has(body[data-page="landing"]),
html:has(body[data-page="download"]),
html:has(body[data-page="contact"]),
body[data-page="landing"],
body[data-page="download"],
body[data-page="contact"] {
  background: #fff;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  min-height: var(--topbar-height);
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 36px;
  padding: 8px max(48px, calc((100% - 1180px) / 2));
  border: 0;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 28px rgba(31, 27, 20, 0.032);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  backdrop-filter: blur(28px) saturate(1.4);
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, backdrop-filter 0.18s ease;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.brand-link {
  justify-self: start;
}

.brand-link img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: none;
}

.top-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-nav {
  justify-self: end;
  gap: 36px;
}

.top-nav a,
.site-footer nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 10px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.top-nav a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.site-footer nav a:hover {
  color: var(--ink);
}

.top-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-button {
  display: none;
}

.mobile-download-button {
  display: inline-flex;
}

.top-cta,
.primary-link,
.secondary-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.top-cta--outline {
  min-height: 40px;
  gap: 10px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--topbar-glass-strong);
  border: 1px solid var(--topbar-glass-stroke);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 5px 16px rgba(31, 27, 20, 0.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.top-cta--outline svg,
.language-menu summary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-menu {
  position: relative;
}

.language-menu summary {
  width: 44px;
  min-height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--topbar-glass-stroke);
  border-radius: 999px;
  background: var(--topbar-glass-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 5px 16px rgba(31, 27, 20, 0.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
  cursor: pointer;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  min-width: 156px;
  padding: 8px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--topbar-glass-stroke);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 44px rgba(31, 27, 20, 0.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.22);
  backdrop-filter: blur(22px) saturate(1.22);
}

.market-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  padding: 2px 0 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.market-selector-label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.market-button {
  min-height: 32px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: var(--surface-soft);
  font: 900 11px/1 Manrope, Inter, sans-serif;
  cursor: pointer;
}

/* The active state already shows the selection; the phone's default tap flash is a square rectangle inside the rounded pill. */
.market-button,
.language-button {
  -webkit-tap-highlight-color: transparent;
}

.market-button.is-active {
  color: #fff;
  background: #111;
}

.market-button:focus-visible {
  outline: 3px solid rgba(196, 180, 158, 0.5);
  outline-offset: 2px;
}

.top-cta:not(.top-cta--outline),
.primary-link {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(31, 111, 77, 0.24);
}

.top-cta {
  padding: 0 16px;
}

.primary-link {
  min-height: 50px;
  padding: 0 22px;
}

.secondary-link {
  padding: 0 18px;
  color: var(--green-dark);
  background: var(--surface);
  border: 1px solid var(--line);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, 34px);
  min-width: 102px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.language-button {
  min-height: 34px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.language-button.is-active {
  color: #fff;
  background: #111;
}

.mobile-menu {
  position: fixed;
  inset: var(--topbar-height) 0 0;
  z-index: 120;
  overflow: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 23, 20, 0);
  cursor: pointer;
  transition: background-color 0.24s ease;
}

.mobile-menu.is-open .mobile-menu-backdrop {
  background: rgba(23, 23, 20, 0.42);
}

.mobile-menu-panel {
  position: absolute;
  inset: 0 0 auto;
  max-height: calc(100svh - var(--topbar-height) - 18px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px max(18px, env(safe-area-inset-right)) max(26px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  overflow-y: auto;
  color: var(--ink);
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 24px 70px rgba(23, 23, 20, 0.2);
  transform: translateY(-100%);
  transition: transform 0.24s ease;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateY(0);
}

.mobile-menu-button,
.mobile-download-button {
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--topbar-glass-stroke);
  border-radius: 999px;
  background: var(--topbar-glass-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 5px 16px rgba(31, 27, 20, 0.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
  cursor: pointer;
}

.mobile-menu-button {
  width: 44px;
  min-height: 44px;
}

.mobile-download-button {
  width: 44px;
  min-height: 44px;
}

.mobile-menu-button {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-download-button {
  text-decoration: none;
}

.hero-trial-cta,
.mobile-download-button,
.app-download-cta {
  position: relative;
  transform: translateZ(0);
  will-change: transform;
}

.hero-trial-cta:active,
.mobile-download-button:active,
.app-download-cta:active {
  transform: translateY(1px) scale(0.97);
}

.hero-trial-cta:focus-visible,
.mobile-download-button:focus-visible,
.app-download-cta:focus-visible {
  outline: 3px solid rgba(223, 188, 137, 0.42);
  outline-offset: 3px;
}

.mobile-download-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-nav {
  display: grid;
  gap: 2px;
}

.mobile-menu-nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.mobile-menu-language {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.mobile-menu-language p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.mobile-menu-language .market-selector-heading {
  margin-top: 8px;
}

.mobile-language-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.mobile-language-switcher .language-button {
  min-height: 46px;
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-backdrop,
  .mobile-menu-panel {
    transition: none;
  }
}

main {
  overflow: hidden;
}

.hero-section {
  position: relative;
  width: min(1440px, 100% - 40px);
  margin: 0 auto;
  min-height: calc(100svh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
  padding: 15px 0 64px;
  background: #fff;
}

.hero-copy {
  max-width: 500px;
}

#heroTitle {
  margin-top: var(--topbar-height);
}

.hero-body {
  max-width: 460px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  white-space: pre-line;
}

.hero-action-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
}

@media (min-width: 981px) {
  .hero-action-stack {
    margin-top: 28px;
  }
}

.hero-trial-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.hero-trial-note .gift {
  font-size: 18px;
  line-height: 1;
}

.hero-trial-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-control), var(--secondary-control));
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 34px rgba(159, 142, 117, 0.24);
  transition: transform 0.14s ease, filter 0.15s ease;
}

.mobile-menu-language .market-selector {
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.mobile-menu-language .market-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  font-size: 13px;
}

.mobile-menu-language .market-button:not(.is-active) {
  background: transparent;
  color: var(--muted);
}

/* Two columns: a last button that sits alone on its row (CH) spans the full width. */
.mobile-menu-language .market-button:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.hero-trial-cta:hover {
  filter: brightness(0.92);
}

.hero-media {
  position: relative;
  align-self: center;
  width: 100%;
}

.hero-media picture,
.professional-media picture {
  display: block;
}

.hero-media img {
  display: block;
  width: min(132%, 980px);
  max-width: none;
  height: auto;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

#heroTitle,
.hero-body,
.hero-trial-note,
.hero-trial-cta,
.hero-media {
  animation: hero-rise 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-trial-note {
  animation-delay: 0.12s;
}

.hero-body {
  animation-delay: 0.1s;
}

.hero-trial-cta {
  animation-delay: 0.2s;
}

.hero-media {
  animation-delay: 0.28s;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  font-size: 64px;
}

h2 {
  font-size: 42px;
}

.section-copy p:not(.eyebrow),
.slim-banner p,
.price-hero p,
.pricing-card p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
}

.feature-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.feature-section + .feature-section {
  border-top: 1px solid var(--line);
}

.section-copy {
  max-width: 520px;
}

.section-copy p:not(.eyebrow) {
  margin: 18px 0 0;
}

.metrics-carousel {
  width: 100%;
  padding: 4px 0 54px;
  background: #fff;
}

.metrics-marquee {
  width: 100%;
  overflow: hidden;
  padding: 50px 0 34px;
  margin: -18px 0 -34px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.metrics-marquee.is-dragging {
  cursor: grabbing;
}

.metrics-track {
  width: max-content;
  display: flex;
  animation: metrics-scroll 50s linear infinite;
  will-change: transform;
}

.metrics-track.is-interactive {
  animation: none;
}

.metrics-marquee:hover .metrics-track {
  animation-play-state: paused;
}

.metrics-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.metric-card {
  width: clamp(260px, 22vw, 310px);
  min-height: 0;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(31, 24, 18, .04),
    0 12px 28px rgba(31, 24, 18, .075);
}

.metric-headline {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  color: #050505;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
}

.metric-card strong {
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.metric-card p {
  margin: 18px 0 0;
  color: #050505;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.offline-booking-section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 120px;
  display: grid;
  gap: 28px;
  justify-items: center;
  background: #fff;
}

.offline-booking-media {
  width: 100%;
  display: flex;
  justify-content: center;
}

.offline-booking-media picture {
  display: block;
  width: 100%;
}

.offline-booking-media img {
  display: block;
  width: min(100%, 1120px);
  height: auto;
}

.offline-booking-copy {
  max-width: 860px;
  text-align: center;
}

.offline-booking-copy h2 {
  max-width: 820px;
  margin: 0 auto;
  color: #111;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0;
}

.offline-booking-copy p {
  max-width: 620px;
  margin: 24px auto 0;
  color: #6c6c6c;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.service-categories-section {
  width: 100%;
  padding: 46px 0 62px;
  background: #fff;
}

.service-categories-section h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-categories-marquee {
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 16px 0 24px;
  margin: -16px 0 -24px;
  touch-action: pan-y;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.service-categories-marquee.is-dragging {
  cursor: grabbing;
}

.service-categories-row {
  width: max-content;
  display: flex;
  animation: service-category-scroll 66s linear infinite;
  will-change: transform;
}

.service-categories-row--reverse {
  animation-name: service-category-scroll-reverse;
  animation-duration: 72s;
}

.service-categories-row.is-interactive {
  animation: none;
}

@media (hover: hover) and (pointer: fine) {
  .service-categories-marquee:hover .service-categories-row {
    animation-play-state: paused;
  }
}

.service-categories-group {
  display: flex;
  gap: 48px;
  padding-right: 48px;
}

.service-category-tile {
  width: auto;
  min-width: 220px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: transparent;
}

.service-category-tile img {
  flex: 0 0 auto;
  display: block;
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow:
    0 1px 2px rgba(31, 24, 18, .04),
    0 8px 18px rgba(31, 24, 18, .075);
}

.service-category-tile h3 {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
  text-align: left;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

@keyframes metrics-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes service-category-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes service-category-scroll-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.professional-section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1fr);
  gap: 68px;
  align-items: center;
  background: #fff;
}

.professional-section + .feature-section {
  border-top: 1px solid var(--line);
}

.professional-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.professional-media picture {
  width: min(100%, 620px);
}

.professional-media img {
  display: block;
  width: 100%;
  height: auto;
}

.professional-copy {
  max-width: 640px;
}

.professional-copy h2 {
  max-width: 640px;
  margin: 0 auto;
  color: #111;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.14;
  text-align: center;
}

.professional-feature-list {
  margin-top: 44px;
  display: grid;
  gap: 14px;
}

.professional-feature-card {
  width: 100%;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(31, 24, 18, .04),
    0 12px 28px rgba(31, 24, 18, .075);
}

.professional-copy.reveal .professional-feature-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.professional-copy.reveal.is-visible .professional-feature-card {
  opacity: 1;
  transform: none;
}

.professional-copy.reveal .professional-feature-card:nth-child(1) {
  transition-delay: 0.08s;
}

.professional-copy.reveal .professional-feature-card:nth-child(2) {
  transition-delay: 0.16s;
}

.professional-copy.reveal .professional-feature-card:nth-child(3) {
  transition-delay: 0.24s;
}

.professional-copy.reveal .professional-feature-card:nth-child(4) {
  transition-delay: 0.32s;
}

.professional-copy.reveal .professional-feature-card:nth-child(5) {
  transition-delay: 0.4s;
}

.professional-feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fcf3ef;
  color: #050505;
}

.professional-feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.professional-feature-card h3 {
  margin: 0;
  color: #050505;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.professional-feature-card p {
  margin: 6px 0 0;
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.comparison-section {
  background: #fff;
  padding: 54px 0 130px;
}

.comparison-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.comparison-icon-collage {
  display: block;
  width: min(760px, 100%);
  height: auto;
  margin: 0 auto 10px;
}

.comparison-section h2 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.04;
  text-align: center;
}

.comparison-layout {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 14px;
  align-items: stretch;
}

.comparison-column {
  display: contents;
}

.comparison-column-label {
  min-height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.comparison-column-label-strong {
  color: var(--ink);
}

.comparison-brand-label {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-app-icon.comparison-app-icon {
  width: 42px;
  height: 42px;
}

.comparison-column:first-child .comparison-column-label {
  grid-column: 1;
  grid-row: 1;
}

.comparison-column:last-child .comparison-column-label {
  grid-column: 3;
  grid-row: 1;
}

.comparison-card-list,
.comparison-arrow-column {
  display: contents;
}

.comparison-card-list .comparison-card:nth-child(1),
.comparison-arrow-column .comparison-arrow:nth-child(1) {
  grid-row: 2;
}

.comparison-card-list .comparison-card:nth-child(2),
.comparison-arrow-column .comparison-arrow:nth-child(2) {
  grid-row: 3;
}

.comparison-card-list .comparison-card:nth-child(3),
.comparison-arrow-column .comparison-arrow:nth-child(3) {
  grid-row: 4;
}

.comparison-card-list .comparison-card:nth-child(4),
.comparison-arrow-column .comparison-arrow:nth-child(4) {
  grid-row: 5;
}

.comparison-card {
  min-width: 0;
  min-height: 76px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(31, 24, 18, .04),
    0 12px 28px rgba(31, 24, 18, .075);
}

.comparison-card-problem {
  grid-column: 1;
  color: var(--ink);
  opacity: 0.74;
}

.comparison-card-solution {
  grid-column: 3;
  color: var(--ink);
}

.comparison-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  color: color-mix(in srgb, var(--ink) 72%, var(--muted));
}

.comparison-card-solution .comparison-icon {
  color: var(--green);
}

.comparison-card-problem .comparison-icon {
  color: #b84f60;
  color: color-mix(in srgb, var(--rose) 76%, #8f2838);
}

.comparison-icon svg,
.comparison-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-card p {
  min-width: 0;
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.comparison-arrow {
  grid-column: 2;
  width: 100%;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  color: color-mix(in srgb, var(--muted) 80%, var(--gold));
}

.comparison-arrow svg {
  width: 28px;
  height: 28px;
}

.comparison-section.reveal .comparison-card,
.comparison-section.reveal .comparison-arrow {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1), transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-section.reveal.is-visible .comparison-card,
.comparison-section.reveal.is-visible .comparison-arrow {
  opacity: 1;
  transform: none;
}

.comparison-section.reveal.is-visible .comparison-card-problem {
  opacity: 0.74;
}

.comparison-section.reveal .comparison-card-list .comparison-card:nth-child(1),
.comparison-section.reveal .comparison-arrow-column .comparison-arrow:nth-child(1) {
  transition-delay: 0.08s;
}

.comparison-section.reveal .comparison-card-list .comparison-card:nth-child(2),
.comparison-section.reveal .comparison-arrow-column .comparison-arrow:nth-child(2) {
  transition-delay: 0.16s;
}

.comparison-section.reveal .comparison-card-list .comparison-card:nth-child(3),
.comparison-section.reveal .comparison-arrow-column .comparison-arrow:nth-child(3) {
  transition-delay: 0.24s;
}

.comparison-section.reveal .comparison-card-list .comparison-card:nth-child(4),
.comparison-section.reveal .comparison-arrow-column .comparison-arrow:nth-child(4) {
  transition-delay: 0.32s;
}

.coverage-map-section,
.community-section {
  background: #fff;
  padding: 120px 0;
}

.coverage-map-inner,
.community-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.coverage-map-section h2,
.community-section h2 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.16;
  text-align: center;
}

.coverage-map-subtitle,
.community-subtitle {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.coverage-map-media {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.coverage-map-media img {
  width: min(560px, 100%);
  height: auto;
}

.community-map-placeholder {
  position: relative;
  margin-top: 48px;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 24px;
  background: var(--surface-soft) center/cover no-repeat url('/partner/assets/community-map-poster.webp');
  overflow: hidden;
}

.community-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 20, 15, 0.55), rgba(10, 20, 15, 0) 55%);
  transition: opacity 0.3s ease;
}

.community-map-placeholder.is-active::before {
  opacity: 0;
  pointer-events: none;
}

.community-map-activate,
.community-map-error {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 40, 25, 0.25);
}

.community-map-activate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.community-map-activate:hover {
  transform: translateX(-50%) translateY(-2px);
}

.community-map-placeholder.is-active .community-map-activate {
  opacity: 0;
  pointer-events: none;
}

.community-map-error {
  padding: 10px 18px;
}

.community-map-status {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
}

.community-map-activate-icon {
  width: 18px;
  height: 18px;
  color: var(--ink);
}

.community-map-activate-spinner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(23, 23, 20, 0.25);
  border-top-color: var(--ink);
  animation: community-map-spin 0.7s linear infinite;
}

@keyframes community-map-spin {
  to { transform: rotate(360deg); }
}

.app-download-section {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: #fff;
  padding: 60px 0 118px;
}

.app-download-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: 46px;
}

.app-download-copy {
  max-width: 560px;
}

.app-download-availability {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
}

.app-download-platforms {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #050505;
}

.app-download-platforms svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.app-download-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.app-download-body {
  max-width: 480px;
  margin: 18px 0 32px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.38;
}

.app-download-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-control), var(--secondary-control));
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 8px 18px rgba(159, 142, 117, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.app-download-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 24px rgba(159, 142, 117, 0.2);
}

.app-download-cta:active {
  transform: translateY(1px) scale(0.97);
}

.app-download-media {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0 34px 38px;
  margin: 0 -34px -38px;
}

.app-download-media picture {
  width: min(100%, 610px);
  display: block;
  overflow: visible;
  filter: drop-shadow(0 30px 48px rgba(31, 27, 20, 0.16));
}

.app-download-media img {
  width: 100%;
  height: auto;
  display: block;
}

.unsure-prompt-section {
  --unsure-prompt-precenter: 6svh;
  --unsure-prompt-reveal: 16svh;
  position: relative;
  min-height: calc(100svh + var(--unsure-prompt-reveal));
  background: #fff;
}

.unsure-prompt-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0 20px;
}

.unsure-prompt-section h2 {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.24);
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

.unsure-prompt-word {
  display: inline-block;
  color: rgba(17, 17, 17, 0.24);
  transition: color 0.16s ease;
}

.unsure-prompt-word.is-active,
.unsure-prompt-section.is-reduced-motion .unsure-prompt-word {
  color: #111;
}

.faq-section {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 92px;
  background: #fff;
}

.faq-inner {
  display: grid;
  gap: 78px;
  margin-top: 0;
}

.faq-inner h2 {
  max-width: 720px;
  margin: 0 auto;
  color: #111;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.faq-list {
  display: grid;
  border-top: 1px solid #ececec;
}

.faq-card {
  border-bottom: 1px solid #ececec;
}

.faq-card.is-animating {
  overflow: hidden;
}

.faq-card summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  color: #111;
  cursor: pointer;
  list-style: none;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 750;
  line-height: 1.2;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  justify-self: end;
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.22s ease, color 0.22s ease;
}

.faq-card[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 720px;
  margin: -6px 64px 30px 0;
  color: #777;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.faq-card[open] .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .faq-card summary::after,
  .faq-answer p {
    transition: none;
  }
}

.booking-visual {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(31, 27, 20, 0.1);
}

.booking-visual {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(31, 111, 77, 0.08), transparent),
    var(--surface);
}

.booking-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.booking-row strong,
.booking-row em {
  font-size: 14px;
}

.booking-row em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
}

.slim-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose) 0%, #d99a92 50%, var(--gold) 100%);
}

.slim-banner h2 {
  font-size: 26px;
}

.slim-banner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.slim-banner .primary-link {
  background: #fff;
  color: #171714;
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 6vw, 78px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-brand {
  font-size: 20px;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 14px;
}

@media (min-width: 981px) {
  body[data-page="landing"] .site-topbar {
    padding-left: max(20px, calc((100% - 1440px) / 2));
  }
}

@media (max-width: 980px) {
  .site-topbar {
    width: 100%;
    gap: 18px;
    padding: 8px 24px;
  }

  .top-actions {
    gap: 8px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 30px 0 18px;
    gap: 28px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy h1 {
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .hero-body {
    order: 2;
    max-width: min(600px, calc(100% - 48px));
    margin-top: -8px;
    text-align: center;
  }

  .hero-media {
    order: 3;
    justify-self: center;
  }

  .hero-media img {
    width: 100%;
  }

  .hero-action-stack {
    order: 4;
    align-items: center;
    text-align: center;
  }

  h1,
  .price-hero h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .feature-section,
  .pricing-wrap {
    grid-template-columns: 1fr;
  }

  .metrics-carousel {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .metric-card {
    width: clamp(240px, 38vw, 290px);
    padding: 24px;
  }

  .metric-card strong {
    font-size: 28px;
  }

  .metric-headline {
    font-size: 19px;
  }

  .metric-card p {
    font-size: 14px;
  }

  .offline-booking-section {
    width: min(100% - 48px, 760px);
  }

  .offline-booking-media img {
    width: min(100%, 620px);
  }

  .offline-booking-copy h2 {
    font-size: 40px;
  }

  .service-categories-section {
    padding: 42px 0 56px;
  }

  .service-categories-section h2 {
    width: 1px;
  }

  .service-category-tile {
    min-width: 196px;
  }

  .professional-section {
    width: min(100% - 48px, 760px);
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .professional-media picture {
    width: min(100%, 520px);
  }

  .professional-copy {
    max-width: 100%;
  }

  .professional-copy h2 {
    font-size: 40px;
  }

  .professional-feature-list {
    margin-top: 36px;
  }

  .comparison-section {
    padding: 42px 0 109px;
  }

  .comparison-inner {
    width: min(100% - 48px, 760px);
  }

  .coverage-map-section,
  .community-section {
    padding: 92px 0;
  }

  .coverage-map-inner,
  .community-inner {
    width: min(100% - 48px, 760px);
  }

  .comparison-layout {
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 14px;
  }

  .comparison-card {
    padding: 17px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 13px;
  }

  .comparison-card p {
    font-size: 15px;
  }

  .app-download-inner {
    width: min(100% - 48px, 760px);
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .app-download-copy {
    max-width: 620px;
  }

  .app-download-copy h2 {
    line-height: 1.08;
  }

  .app-download-body {
    max-width: 540px;
    font-size: 18px;
  }

  .app-download-media picture {
    width: min(100%, 560px);
  }

  .unsure-prompt-section {
    --unsure-prompt-precenter: 5svh;
    --unsure-prompt-reveal: 15svh;
  }

  .unsure-prompt-section h2 {
    max-width: 760px;
  }

  .faq-section {
    width: min(100% - 48px, 760px);
    padding: 0 0 72px;
  }

  .faq-inner {
    margin-top: 0;
  }

}

@media (max-width: 680px) {
  .site-topbar {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
  }

  .top-nav,
  .top-actions {
    display: none;
  }

  .mobile-download-button,
  .mobile-menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .top-actions {
    flex-wrap: nowrap;
    justify-content: end;
  }

  .top-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .top-cta--outline svg {
    display: none;
  }

  .language-menu summary {
    width: 40px;
    min-height: 36px;
  }

  .top-nav {
    gap: 22px;
  }

  .hero-section {
    width: 100%;
    min-height: auto;
    justify-items: center;
    gap: 0;
    overflow: hidden;
    padding: 24px 0 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy h1 {
    order: 1;
    width: min(calc(100% - 28px), 520px);
    justify-self: center;
    text-align: center;
  }

  .hero-body {
    order: 2;
    width: min(calc(100% - 48px), 480px);
    margin-top: 18px;
    font-size: 17px;
    text-align: center;
  }

  .hero-media {
    order: 3;
    width: 100vw;
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }

  .hero-media img {
    flex: 0 0 auto;
    width: min(116vw, 580px);
    max-width: none;
  }

  .hero-action-stack {
    order: 4;
    align-items: center;
    justify-self: center;
    margin-top: 50px;
    text-align: center;
  }

  h1,
  .price-hero h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .section-copy p:not(.eyebrow),
  .slim-banner p,
  .price-hero p,
  .pricing-card p,
  .site-footer p {
    font-size: 15px;
  }

  .slim-banner,
  .site-footer,
  .booking-row {
    grid-template-columns: 1fr;
  }

  .feature-section {
    width: min(100% - 28px, 1180px);
    padding: 56px 0;
    gap: 26px;
  }

  .metrics-carousel {
    padding: 34px 0 34px;
  }

  .metrics-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .metrics-group {
    gap: 10px;
    padding-right: 10px;
  }

  .metric-card {
    width: clamp(176px, 54vw, 210px);
    padding: 15px;
  }

  .metric-card strong {
    font-size: 20px;
  }

  .metric-headline {
    font-size: 14px;
    line-height: 1.16;
  }

  .metric-card p {
    margin-top: 13px;
    font-size: 11px;
    line-height: 1.35;
  }

  .offline-booking-section {
    width: min(100% - 28px, 1180px);
    gap: 22px;
  }

  .offline-booking-media img {
    width: min(100%, 500px);
  }

  .offline-booking-copy h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .offline-booking-copy p {
    margin-top: 18px;
    font-size: 15px;
  }

  .service-categories-section {
    padding: 36px 0 48px;
  }

  .service-categories-section h2 {
    width: 1px;
  }

  .service-categories-marquee {
    gap: 12px;
    padding: 12px 0 20px;
    margin: -12px 0 -20px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .service-categories-group {
    gap: 36px;
    padding-right: 36px;
  }

  .service-category-tile {
    min-width: 172px;
    gap: 12px;
  }

  .service-category-tile img {
    width: 56px;
    height: 56px;
  }

  .service-category-tile h3 {
    font-size: 15px;
  }

  .professional-section {
    width: min(100% - 28px, 1180px);
    gap: 26px;
  }

  .professional-media picture {
    width: min(100%, 430px);
  }

  .professional-copy h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .professional-feature-list {
    margin-top: 30px;
    gap: 12px;
  }

  .professional-feature-card {
    padding: 17px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .professional-feature-icon {
    width: 40px;
    height: 40px;
  }

  .professional-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .professional-feature-card h3 {
    font-size: 16px;
  }

  .professional-feature-card p {
    margin-top: 5px;
    font-size: 13px;
  }

  .comparison-section {
    padding: 36px 0 88px;
  }

  .comparison-inner {
    width: min(100% - 28px, 1180px);
  }

  .comparison-icon-collage {
    width: min(500px, 100%);
    margin-bottom: 8px;
  }

  .comparison-section h2 {
    line-height: 1.05;
  }

  .coverage-map-section,
  .community-section {
    padding: 70px 0;
  }

  .coverage-map-inner,
  .community-inner {
    width: min(100% - 28px, 1180px);
  }

  .coverage-map-media {
    margin-top: 32px;
  }

  .community-map-placeholder {
    margin-top: 32px;
    aspect-ratio: 9 / 8;
  }

  .comparison-layout {
    margin-top: 40px;
    grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 10px;
  }

  .comparison-column-label {
    min-height: 42px;
    font-size: 14px;
    line-height: 1.2;
  }

  .comparison-brand-label {
    gap: 7px;
  }

  .footer-app-icon.comparison-app-icon {
    width: 34px;
    height: 34px;
  }

  .comparison-card {
    min-height: 68px;
    padding: 13px 10px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
  }

  .comparison-card p {
    font-size: 12px;
    font-weight: 650;
    line-height: 1.25;
  }

  .comparison-icon {
    width: 22px;
    height: 22px;
  }

  .comparison-arrow {
    width: 100%;
    min-height: 68px;
  }

  .comparison-arrow svg {
    width: 20px;
    height: 20px;
  }

  .app-download-inner {
    width: min(100% - 28px, 560px);
    gap: 44px;
  }

  .app-download-availability {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .app-download-platforms svg {
    width: 22px;
    height: 22px;
  }

  .app-download-copy h2 {
    line-height: 1.08;
  }

  .app-download-body {
    margin: 14px 0 26px;
    font-size: 17px;
    line-height: 1.4;
  }

  .app-download-cta {
    min-height: 50px;
    padding: 0 22px;
    font-size: 14px;
  }

  .app-download-media {
    justify-content: center;
    padding: 0 22px 30px;
    margin: 0 -22px -30px;
  }

  .app-download-media picture {
    width: min(100%, 430px);
    filter: drop-shadow(0 24px 38px rgba(31, 27, 20, 0.14));
  }

  .unsure-prompt-section {
    --unsure-prompt-precenter: 5svh;
    --unsure-prompt-reveal: 14svh;
  }

  .unsure-prompt-section h2 {
    max-width: 560px;
    font-size: 34px;
    line-height: 1.14;
  }

  .faq-section {
    width: min(100% - 28px, 1180px);
    padding: 0 0 58px;
  }

  .faq-inner {
    gap: 48px;
    margin-top: 0;
  }

  .faq-card summary {
    min-height: 70px;
    gap: 16px;
    font-size: 18px;
  }

  .faq-card summary::after {
    font-size: 20px;
  }

  .faq-answer p {
    margin: -2px 38px 22px 0;
    font-size: 14px;
  }

  .booking-visual {
    min-height: 300px;
    border-radius: 16px;
  }

  .booking-row {
    justify-items: start;
    gap: 4px;
    padding: 14px;
  }

  .slim-banner {
    width: min(100% - 28px, 1180px);
    margin-bottom: 58px;
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .price-hero,
  .pricing-wrap {
    width: min(100% - 28px, 1080px);
  }

  .price-main strong {
    font-size: 50px;
  }
}

body[data-page="pricing"] {
  --pricing-container: min(1180px, calc(100% - 96px));
  min-height: 100vh;
  background: #fff;
}

body[data-page="pricing"] main {
  overflow: visible;
}

body[data-page="pricing"] .price-hero,
body[data-page="pricing"] .pricing-wrap {
  width: var(--pricing-container);
  margin: 0 auto;
}

body[data-page="pricing"] .price-hero {
  padding: 84px 0 86px;
  text-align: center;
}

body[data-page="pricing"] .price-hero h1 {
  max-width: 940px;
  margin: var(--topbar-height) auto 0;
  color: #111;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

body[data-page="pricing"] .price-hero p {
  max-width: 620px;
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #5f646b;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

body[data-page="pricing"] .price-hero .gift {
  font-size: 18px;
  line-height: 1;
}

body[data-page="pricing"] .pricing-wrap {
  padding: 0 0 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

body[data-page="pricing"] .pricing-card {
  min-height: 700px;
  height: 100%;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(31, 24, 18, .03),
    0 8px 24px rgba(31, 24, 18, .045),
    0 24px 52px rgba(31, 24, 18, .04);
}

body[data-page="pricing"] .pricing-card:nth-child(2) {
  transition-delay: 0.12s;
}

body[data-page="pricing"] .pricing-card:nth-child(3) {
  transition-delay: 0.24s;
}

body[data-page="pricing"] .pricing-card-head {
  min-height: 30px;
  display: block;
}

body[data-page="pricing"] .pricing-card-head h2 {
  margin: 0;
  color: #111;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.12;
}

body[data-page="pricing"] .price-main {
  min-height: 92px;
  margin: 14px 0 0;
  display: block;
}

body[data-page="pricing"] .price-main strong {
  display: block;
  color: #111;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.04;
}

body[data-page="pricing"] .price-main:not(.price-main--text) strong {
  display: inline;
}

body[data-page="pricing"] .price-main span,
body[data-page="pricing"] .price-list li {
  color: #5f646b;
}

body[data-page="pricing"] .price-main span {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

body[data-page="pricing"] .price-list {
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

body[data-page="pricing"] .price-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

body[data-page="pricing"] .price-list li::before {
  content: "✓";
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

body[data-page="pricing"] .pricing-card-footer {
  margin-top: auto;
  display: block;
}

body[data-page="pricing"] .pricing-card-action {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  background: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

body[data-page="pricing"] .pricing-card-action:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

body[data-page="pricing"] .site-footer {
  width: min(1380px, calc(100% - 96px));
  margin: 0 auto;
  padding: 34px 0;
  background: #fff;
}

@media (max-width: 1100px) {
  body[data-page="pricing"] {
    --pricing-container: min(100% - 48px, 760px);
  }

  body[data-page="pricing"] .pricing-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body[data-page="pricing"] .pricing-card {
    min-height: 0;
    height: auto;
  }

  body[data-page="pricing"] .site-footer {
    width: min(100% - 48px, 760px);
  }
}

@media (max-width: 680px) {
  body[data-page="pricing"] {
    --pricing-container: min(100% - 28px, 760px);
  }

  body[data-page="pricing"] .brand-link span {
    display: inline;
  }

  body[data-page="pricing"] .price-hero {
    padding: 58px 0 56px;
  }

  body[data-page="pricing"] .price-hero h1 {
    font-size: 40px;
  }

  body[data-page="pricing"] .pricing-card {
    padding: 28px 22px 22px;
  }

  body[data-page="pricing"] .pricing-card-head {
    min-height: auto;
  }

  body[data-page="pricing"] .price-main strong {
    font-size: 38px;
  }

  body[data-page="pricing"] .price-list {
    margin-top: 24px;
    gap: 11px;
  }

  body[data-page="pricing"] .site-footer {
    width: min(100% - 28px, 760px);
  }
}

.contact-page {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 96px;
  background: #fff;
}

.contact-page h1 {
  margin: var(--topbar-height) 0 18px;
  font-size: clamp(34px, 5vw, 48px);
}

.contact-page > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 17px;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-action:hover {
  border-color: var(--secondary-control);
  box-shadow: 0 10px 24px rgba(159, 142, 117, 0.18);
}

.contact-action-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--secondary-control);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.contact-action:hover .contact-action-icon {
  background: var(--secondary-control);
  color: #fff;
}

.contact-action-icon svg {
  width: 22px;
  height: 22px;
}

.contact-action-icon--email svg,
.contact-action-icon--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-action-icon--facebook svg {
  fill: currentColor;
}

.contact-action > span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-action strong {
  font-size: 15px;
  font-weight: 900;
}

.contact-action > span:last-child span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  overflow-wrap: break-word;
}

@media (max-width: 680px) {
  .contact-page {
    padding: 40px 0 64px;
  }

  .contact-action {
    padding: 16px;
  }
}

.site-footer {
  display: block;
  padding: 58px 0 56px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.site-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 1.25fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-credit {
  display: block;
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  text-align: left;
}

.footer-credit:hover {
  color: var(--green-dark);
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
}

.footer-app-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 24%;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 5px 14px rgba(31, 27, 20, 0.055),
    0 1px 2px rgba(31, 27, 20, 0.045);
}

.footer-app-logo {
  display: block;
  width: 74%;
  height: 74%;
  object-fit: contain;
  border-radius: 22%;
}

.footer-store-badges {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-store-badge {
  display: inline-flex;
  width: 156px;
  min-height: 42px;
  align-items: center;
  border-radius: 9px;
  line-height: 0;
}

.footer-store-badge:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.footer-store-badge img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.site-footer .footer-column {
  display: grid;
  align-items: start;
  justify-items: start;
  gap: 11px;
}

.site-footer .footer-column h2 {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.site-footer .footer-column a {
  width: auto;
  max-width: 100%;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.site-footer .footer-column a:hover {
  color: var(--green-dark);
}

.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer .footer-social a span:first-child {
  color: var(--green);
  font-weight: 800;
}

body[data-page="pricing"] .site-footer {
  width: auto;
  margin: 0;
  padding: 58px 0 56px;
  background: #fff;
}

@media (max-width: 1100px) {
  .site-footer-inner {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 42px;
  }

  .site-footer-inner {
    width: min(100% - 28px, 640px);
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-credit {
    width: min(100% - 28px, 640px);
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

}

@media (max-width: 520px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .metrics-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .metrics-track {
    animation: none;
  }

  .metrics-group[aria-hidden="true"] {
    display: none;
  }

  .service-categories-marquee {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .service-categories-row {
    width: max-content;
    animation: none;
  }

  .service-categories-group {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-right: 0;
  }

  .service-categories-group[aria-hidden="true"] {
    display: none;
  }

  #heroTitle,
  .hero-trial-note,
  .hero-trial-cta,
  .hero-media {
    animation: none;
  }

  .reveal {
    transition: none;
  }

  .unsure-prompt-word {
    transition: none;
  }

  .professional-copy.reveal .professional-feature-card {
    transition: none;
  }

  .comparison-section.reveal .comparison-card,
  .comparison-section.reveal .comparison-arrow {
    transition: none;
  }

  .hero-trial-cta,
  .mobile-download-button,
  .app-download-cta {
    transition: none;
  }
}

.market-prompt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.market-prompt[hidden] {
  display: none;
}

.market-prompt-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.market-prompt-button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.market-prompt-button:hover {
  border-color: #111;
}

body[data-page="pricing"] .market-prompt--nav {
  margin: 0;
  flex-wrap: nowrap;
  gap: 6px;
}

body[data-page="pricing"] .market-prompt--nav .market-prompt-label {
  font-size: 12px;
  white-space: nowrap;
}

body[data-page="pricing"] .market-prompt--nav .market-prompt-button {
  min-height: 32px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  white-space: nowrap;
}

body[data-page="pricing"] .market-prompt--mobile {
  margin-top: 22px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--line);
}

body[data-page="pricing"] .market-prompt--mobile .market-prompt-label {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 900;
}

body[data-page="pricing"] .market-prompt--mobile .market-prompt-button {
  width: 100%;
  min-height: 44px;
  padding: 0 10px;
}

body[data-page="pricing"] .market-prompt[hidden] {
  display: none;
}
