:root {
  --v2-bg: #f7f6f2;
  --v2-surface: #ffffff;
  --v2-ink: #102035;
  --v2-muted: #667085;
  --v2-line: #d7e3df;
  --v2-brand: #087b68;
  --v2-brand-dark: #075e52;
  --v2-mint: #e5f3ef;
  --v2-gold: #d39a22;
  --v2-danger: #b42318;
  --v2-max: 1240px;
}

body.site-v2 {
  background: var(--v2-bg);
  color: var(--v2-ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-v2 .container {
  width: min(calc(100% - 40px), var(--v2-max));
}

.v2-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(215, 227, 223, 0.9);
  background: rgba(247, 246, 242, 0.96);
  backdrop-filter: blur(16px);
}

.v2-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--v2-ink);
  font-size: 1.25rem;
  font-weight: 850;
}

.v2-brand img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.v2-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
}

.v2-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: #475467;
  font-weight: 720;
}

.v2-nav a:hover,
.v2-nav a[aria-current="page"] {
  color: var(--v2-brand-dark);
  background: var(--v2-mint);
}

.v2-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-header__actions .v2-button--small {
  height: 44px;
  min-height: 44px;
}

.v2-header__store-links,
.v2-store-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-header__store-links a,
.v2-store-links a {
  display: inline-flex;
  flex: 0 0 auto;
}

.v2-header__store-links img {
  display: block;
  width: auto;
  height: 36px;
}

.v2-store-links img {
  display: block;
  width: auto;
  height: 48px;
}

.v2-header__actions .v2-header__mobile-app { display: none; }

.v2-marketplace-page {
  height: 100dvh;
  overflow: hidden;
}

.v2-marketplace-page .v2-header {
  position: relative;
}

.v2-marketplace-page .v2-header .v2-brand {
  visibility: hidden;
}

.v2-market-app {
  width: 100%;
  height: calc(100dvh - 75px);
  overflow: hidden;
  background: var(--v2-bg);
}

.v2-market-app__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--v2-bg);
}

.v2-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: var(--v2-surface);
  color: var(--v2-ink);
  font: inherit;
  font-size: 1.3rem;
  cursor: pointer;
}

.v2-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--v2-brand);
  color: #ffffff;
  font: inherit;
  font-weight: 780;
  text-align: center;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.v2-button:hover {
  background: var(--v2-brand-dark);
  transform: translateY(-1px);
}

.v2-button--quiet {
  border-color: var(--v2-line);
  background: var(--v2-surface);
  color: var(--v2-ink);
}

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

.v2-button--small {
  min-height: 42px;
  padding: 0 14px;
}

.v2-button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.v2-store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.v2-store-row a {
  display: inline-flex;
}

.v2-store-row img {
  width: auto;
  height: 48px;
}

.v2-eyebrow {
  margin: 0 0 12px;
  color: var(--v2-brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.v2-title {
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(2.25rem, 5.5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.v2-section-title {
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.v2-copy {
  color: var(--v2-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.v2-carousel {
  position: relative;
  min-height: min(720px, calc(100vh - 74px));
  overflow: hidden;
  background: #e6f1ed;
}

.v2-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.v2-slide[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.v2-slide:nth-child(2) { background: #f4efe6; }
.v2-slide:nth-child(3) { background: #e9efec; }
.v2-slide:nth-child(4) { background: #eef1f5; }
.v2-slide:nth-child(5) { background: #f4efe6; }
.v2-slide:nth-child(6) { background: #e9efec; }
.v2-slide:nth-child(7) { background: #eef1f5; }

.v2-slide__inner {
  position: relative;
  min-height: min(720px, calc(100vh - 74px));
  display: flex;
  align-items: center;
}

.v2-slide__copy {
  position: relative;
  z-index: 2;
  width: min(52%, 620px);
  padding: 56px 0 126px;
}

.v2-slide__copy .v2-copy {
  max-width: 46ch;
  margin: 22px 0 26px;
}

.v2-slide__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.v2-slide__lifestyle {
  position: absolute;
  z-index: 1;
  top: 0;
  right: calc((100vw - 100%) / -2);
  width: calc(55% + (100vw - 100%) / 2);
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
}

.v2-language-copy strong {
  color: var(--v2-ink);
  font-weight: 780;
}

.v2-phone {
  position: absolute;
  z-index: 1;
  right: clamp(3%, 7vw, 10%);
  top: 50%;
  height: min(82%, 600px);
  aspect-ratio: 1170 / 2532;
  overflow: visible;
  border: 0;
  border-radius: 30px;
  background: transparent;
  box-shadow:
    0 0 0 3px #111518,
    0 10px 28px rgba(16, 32, 53, 0.18);
  transform: translateY(-50%);
}

.v2-phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 29px;
  object-fit: contain;
}

.v2-carousel__controls {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 32px;
  width: min(calc(100% - 40px), var(--v2-max));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  transform: translateX(-50%);
}

.v2-carousel__arrows,
.v2-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-carousel__arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 32, 53, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--v2-ink);
  font-size: 1.25rem;
  cursor: pointer;
}

.v2-carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 32, 53, 0.28);
  cursor: pointer;
}

.v2-carousel__dot[aria-current="true"] {
  width: 32px;
  border-radius: 6px;
  background: var(--v2-brand);
}

.v2-band {
  padding: 82px 0;
}

.v2-band--white { background: var(--v2-surface); }
.v2-band--mint { background: var(--v2-mint); }
.v2-band--ink { background: var(--v2-ink); color: #ffffff; }
.v2-band--ink .v2-section-title,
.v2-band--ink .v2-copy { color: #ffffff; }

.v2-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.v2-section-head .v2-copy {
  max-width: 48ch;
  margin: 0;
}

.v2-steps,
.v2-feature-grid,
.v2-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.v2-step,
.v2-feature,
.v2-plan {
  padding: 24px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: var(--v2-surface);
}

.v2-step__number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--v2-brand);
  color: #ffffff;
  font-weight: 850;
}

.v2-step h3,
.v2-feature h3,
.v2-plan h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.v2-step p,
.v2-feature p,
.v2-plan p {
  margin: 0;
  color: var(--v2-muted);
  line-height: 1.55;
}

.v2-app-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.v2-app-banner .v2-copy { max-width: 52ch; }

.v2-lifestyle {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #edf1ee;
}

.v2-lifestyle__inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.site-v2 .v2-lifestyle__inner {
  width: 100%;
}

.v2-lifestyle__copy {
  position: relative;
  z-index: 2;
  width: min(42%, 520px);
  margin-left: max(20px, calc((100% - var(--v2-max)) / 2));
  padding: 76px 0;
}

.v2-lifestyle__copy .v2-copy {
  max-width: 36ch;
  margin: 18px 0 26px;
}

.v2-lifestyle img {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100vw;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: translateX(-50%);
}

.v2-footer {
  padding: 30px 0 34px;
  border-top: 1px solid var(--v2-line);
  background: #f6f7f5;
}

.v2-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.v2-footer .v2-brand img {
  width: 96px;
  opacity: 0.82;
}

.v2-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 24px;
  color: var(--v2-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.v2-footer__link-group {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 15px;
}

.v2-footer__link-group--primary {
  color: #4b5565;
  font-weight: 720;
}

.v2-footer__link-group--legal {
  color: #7b8494;
  font-weight: 640;
}

.v2-page-head {
  padding: 58px 0 34px;
}

.v2-page-head__row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.v2-page-head .v2-title {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.v2-market-toolbar {
  position: sticky;
  top: 74px;
  z-index: 30;
  padding: 14px 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: rgba(247, 246, 242, 0.96);
  backdrop-filter: blur(14px);
}

.v2-search-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 10px;
}

.v2-search {
  min-height: 50px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid #c7d5d0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--v2-ink);
  font: inherit;
}

.v2-filter-panel {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 14px;
}

.v2-filter-panel[data-open="true"] { display: grid; }

.v2-field {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 720;
}

.v2-field__label {
  display: block;
  min-height: 1.35em;
  line-height: 1.35;
}

.v2-required,
.v2-form__required-note span {
  color: var(--v2-danger);
}

.v2-field input,
.v2-field select,
.v2-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #c7d5d0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--v2-ink);
  font: inherit;
}

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

.v2-field input:not([type="file"]),
.v2-field select {
  box-sizing: border-box;
  height: 48px;
}

.v2-field [aria-invalid="true"] {
  border-color: var(--v2-danger);
  box-shadow: 0 0 0 1px var(--v2-danger);
}

.v2-field[data-address-autocomplete] {
  position: relative;
  z-index: 5;
}

.v2-address-suggestions {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  z-index: 30;
  max-height: 280px;
  overflow-y: auto;
  padding: 5px;
  border: 1px solid #b8cec8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 32, 53, 0.16);
}

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

.v2-address-suggestion {
  display: grid;
  width: 100%;
  gap: 2px;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--v2-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.v2-address-suggestion:hover,
.v2-address-suggestion[data-active="true"] {
  background: #e7f3ef;
}

.v2-address-suggestion strong {
  font-size: 0.9rem;
  line-height: 1.3;
}

.v2-address-suggestion span {
  color: var(--v2-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.v2-field-error {
  color: var(--v2-danger);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.v2-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 18px;
  color: var(--v2-muted);
}

.v2-market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 72px;
}

.v2-salon-card {
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: var(--v2-surface);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.v2-salon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 32, 53, 0.09);
}

.v2-salon-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dce9e5;
}

.v2-salon-card__body { padding: 18px; }

.v2-salon-card h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.v2-salon-card__location,
.v2-salon-card__service {
  margin: 0;
  color: var(--v2-muted);
  line-height: 1.45;
}

.v2-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  color: #9a6700;
  font-weight: 780;
}

.v2-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.v2-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid #cce0da;
  border-radius: 7px;
  background: #f4faf8;
  color: var(--v2-brand-dark);
  font-size: 0.78rem;
  font-weight: 740;
}

.v2-salon-card__services {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--v2-line);
}

.v2-salon-card__service {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.v2-empty,
.v2-loading,
.v2-error {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--v2-muted);
  text-align: center;
}

.v2-profile-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #dce9e5;
}

.v2-profile-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-profile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 53, 0.48);
}

.v2-profile-hero__content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 42px;
  color: #ffffff;
}

.v2-profile-hero__content h1 {
  margin: 0 0 8px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
}

.v2-profile-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 1rem;
  font-weight: 700;
}

.v2-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 28px;
  padding: 34px 0 84px;
}

.v2-profile-main {
  display: grid;
  gap: 18px;
}

.v2-profile-section {
  padding: 26px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: #ffffff;
}

.v2-profile-section h2 {
  margin: 0 0 18px;
  font-size: 1.55rem;
}

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

.v2-portfolio img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.v2-service-list,
.v2-review-list,
.v2-hours-list {
  display: grid;
  gap: 10px;
}

.v2-service-row,
.v2-review,
.v2-hours-row {
  padding: 15px 0;
  border-bottom: 1px solid var(--v2-line);
}

.v2-service-row:last-child,
.v2-review:last-child,
.v2-hours-row:last-child { border-bottom: 0; }

.v2-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
}

.v2-service-row strong { display: block; }
.v2-service-row span,
.v2-review p { color: var(--v2-muted); }

.v2-profile-aside {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid #bdd7d0;
  border-radius: 8px;
  background: #ffffff;
}

.v2-profile-aside h2 { margin: 0; font-size: 1.35rem; }
.v2-profile-aside .v2-button { width: 100%; }

.v2-booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
  padding: 42px 0 84px;
}

.v2-booking-main,
.v2-booking-summary { display: grid; gap: 18px; align-content: start; }

.v2-booking-summary {
  position: sticky;
  top: 102px;
}

.v2-booking-card {
  padding: 24px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: #ffffff;
}

.v2-booking-card h2 { margin: 0 0 18px; font-size: 1.45rem; }

.v2-select-service {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--v2-line);
  background: transparent;
  color: var(--v2-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.v2-select-service[data-selected="true"] strong { color: var(--v2-brand); }
.v2-select-service[data-selected="true"]::before { content: "✓"; color: var(--v2-brand); font-weight: 850; }
.v2-select-service[data-selected="true"] { grid-template-columns: auto minmax(0, 1fr) auto; }

.v2-slots { display: grid; gap: 16px; }
.v2-slot-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.v2-slot {
  min-height: 44px;
  border: 1px solid #c6dcd6;
  border-radius: 8px;
  background: #f7fbfa;
  color: #344054;
  font: inherit;
  font-weight: 720;
  cursor: pointer;
}
.v2-slot[data-selected="true"] { border-color: var(--v2-brand); background: var(--v2-mint); color: var(--v2-brand-dark); }

.v2-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--v2-line);
}
.v2-summary-row span { color: var(--v2-muted); }
.v2-summary-row strong { text-align: right; }

.v2-auth-gate {
  padding: 22px;
  border: 1px solid #b9d9d1;
  border-radius: 8px;
  background: var(--v2-mint);
}
.v2-auth-gate h3 { margin: 0 0 8px; }
.v2-auth-gate p { margin: 0 0 16px; color: #3e5f58; line-height: 1.5; }

.v2-business-showcase {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #e5f2ee;
}

.v2-business-showcase__viewport,
.v2-business-showcase__slide {
  position: absolute;
  inset: 0;
}

.v2-business-showcase__slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.v2-business-showcase__slide[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.v2-business-showcase__slide--lifestyle {
  background: var(--v2-ink);
  color: #ffffff;
}

.v2-business-showcase__inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  padding-bottom: 64px;
}

.v2-business-showcase__copy {
  position: relative;
  z-index: 4;
  max-width: 520px;
}

.v2-business-showcase__copy h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--v2-ink);
  font-size: 4.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.v2-business-showcase__copy > p:last-child {
  max-width: 38ch;
  margin: 24px 0 0;
  color: var(--v2-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.v2-business-showcase__copy--light .v2-title,
.v2-business-showcase__copy--light .v2-copy { color: #ffffff; }
.v2-business-showcase__copy--light .v2-eyebrow { color: #8be0cb; }
.v2-business-showcase__copy--light .v2-copy { max-width: 46ch; }

.v2-business-showcase__stores {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.v2-business-showcase__stores a,
.v2-business-showcase__stores img { display: block; }
.v2-business-showcase__stores img { height: 40px; width: auto; }

.v2-business-showcase__number {
  margin: 0 0 18px;
  color: var(--v2-brand-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.v2-business-showcase__lifestyle {
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2);
  width: calc(55% + (100vw - 100%) / 2);
  height: 100%;
  object-fit: cover;
  object-position: 24% center;
}

.v2-business-showcase__lifestyle--language {
  object-position: 48% center;
}

.v2-business-showcase__devices {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.56;
}

.v2-business-showcase__ipad,
.v2-business-showcase__iphone {
  position: absolute;
  margin: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow:
    0 0 0 3px #111518,
    0 10px 28px rgba(16, 32, 53, 0.18);
}

.v2-business-showcase__ipad {
  left: 0;
  top: 4%;
  width: 88%;
  aspect-ratio: 2000 / 1390;
  border-radius: 15px;
}

.v2-business-showcase__iphone {
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 24%;
  aspect-ratio: 924 / 2000;
  border-radius: 19px;
}

.v2-business-showcase__iphone--customer {
  width: 23%;
}

.v2-business-showcase__ipad img,
.v2-business-showcase__iphone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.v2-business-showcase__ipad img { border-radius: 14px; }
.v2-business-showcase__iphone img { border-radius: 18px; }

.v2-business-showcase__controls {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
}

.v2-business-showcase__controls > * { pointer-events: auto; }
.v2-business-showcase__controls .v2-carousel__dots,
.v2-business-showcase__controls .v2-carousel__arrows {
  padding: 8px;
  border: 1px solid rgba(13, 105, 91, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.v2-business-benefits {
  padding: 78px 0 84px;
  background: #f8faf9;
}

.v2-business-benefits__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 30px;
}

.v2-business-benefits__head .v2-section-title {
  max-width: 14ch;
}

.v2-business-benefits__head .v2-copy {
  max-width: 47ch;
  margin: 0 0 4px;
}

.v2-business-benefits__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 16px;
}

.v2-business-benefit {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #cfe0dc;
  border-radius: 8px;
  background: #ffffff;
}

.v2-business-benefit__number {
  margin: 0 0 54px;
  color: var(--v2-brand-dark);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.v2-business-benefit h3 {
  max-width: 13ch;
  margin: 0 0 16px;
  color: var(--v2-ink);
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.v2-business-benefit > p:not(.v2-business-benefit__number):not(.v2-business-benefit__scope) {
  max-width: 36ch;
  margin: 0;
  color: var(--v2-muted);
  line-height: 1.55;
}

.v2-business-benefit__scope {
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--v2-brand-dark);
  font-size: 0.8rem;
  font-weight: 780;
  line-height: 1.4;
}

.v2-business-benefit--bookings {
  border-color: var(--v2-ink);
  background: var(--v2-ink);
}

.v2-business-benefit--bookings .v2-business-benefit__number,
.v2-business-benefit--bookings .v2-business-benefit__scope { color: #8be0cb; }
.v2-business-benefit--bookings h3,
.v2-business-benefit--bookings > p:not(.v2-business-benefit__number):not(.v2-business-benefit__scope) { color: #ffffff; }

.v2-business-benefit--operations {
  border-top: 5px solid var(--v2-brand);
}

.v2-business-benefit--onboarding {
  border-color: #e4d7ae;
  background: #fbf7eb;
}

.v2-business-benefit--onboarding .v2-business-benefit__number,
.v2-business-benefit--onboarding .v2-business-benefit__scope { color: #765c12; }

.v2-pricing-section {
  background: #f7faf8;
}

.v2-pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.v2-pricing-head .v2-copy {
  max-width: 48ch;
  margin: 0;
}

.v2-promotion-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 0 0 18px;
  padding: 22px 24px;
  border-left: 5px solid var(--v2-gold);
  border-radius: 8px;
  background: #083f38;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 94, 82, 0.16);
}

.v2-promotion-banner[hidden] { display: none; }
.v2-promotion-banner p { margin: 0; }

.v2-promotion-banner__eyebrow {
  margin-bottom: 5px !important;
  color: #f5ca67;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.v2-promotion-banner h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.12;
}

.v2-promotion-banner__summary {
  margin-top: 7px;
  color: #d9f3ec;
  font-size: 1rem;
  font-weight: 760;
}

.v2-promotion-banner__scope {
  max-width: 82ch;
  margin-top: 7px !important;
  color: #d9f3ec;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.v2-promotion-banner__deadline {
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid rgba(245, 202, 103, 0.58);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 820;
}

.v2-billing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 18px;
  padding: 4px;
  border: 1px solid #bfd8d1;
  border-radius: 999px;
  background: #f9fcfb;
}

.v2-billing-toggle button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475467;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.v2-billing-toggle button[aria-pressed="true"] {
  background: var(--v2-mint);
  color: var(--v2-brand-dark);
}

.v2-plan { display: flex; flex-direction: column; gap: 18px; }
.v2-plan--featured { border: 2px solid var(--v2-brand); }
.v2-plan__price { font-size: 2.15rem; font-weight: 880; color: var(--v2-ink); }
.v2-plan__current-price { display: block; color: inherit; font: inherit; }
.v2-plan__suffix { display: block; margin-top: 3px; color: var(--v2-muted); font-size: 0.82rem; font-weight: 650; }
.v2-plan__regular-price {
  display: block;
  margin-bottom: 6px;
  color: var(--v2-muted);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.v2-plan ul { display: grid; gap: 9px; margin: 0; padding-left: 20px; color: #475467; }
.v2-plan .v2-button { width: 100%; margin-top: auto; }

.v2-plan-grid--business {
  gap: 14px;
}

.v2-business-plan {
  display: grid;
  grid-template-rows: 34px minmax(214px, auto) 1fr auto;
  gap: 16px;
  min-height: 308px;
  padding: 24px;
  border-color: #d4e5e0;
  border-radius: 14px;
  background: #ffffff;
}

.v2-business-plan--group {
  border: 2px solid var(--v2-brand);
  background: #f1faf7;
}

.v2-plan-grid--business .v2-plan--featured {
  border: 1px solid #d4e5e0;
}

.v2-plan__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
}

.v2-plan__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 62%;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--v2-brand);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.v2-plan__badge--placeholder {
  visibility: hidden;
}

.v2-plan__badge--saving {
  background: #f5ca67;
  color: #493500;
}

.v2-business-plan[data-promotion="true"] {
  border-top: 4px solid var(--v2-gold);
}

.v2-business-plan[data-promotion="true"] .v2-plan__regular-price {
  margin-bottom: 7px;
  color: #526071;
  font-size: 1rem;
  text-decoration-thickness: 2px;
}

.v2-business-plan[data-promotion="true"] .v2-plan__current-price {
  color: var(--v2-brand-dark);
}

.v2-button--promotion {
  border-color: var(--v2-brand-dark);
  background: var(--v2-brand-dark);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 94, 82, 0.16);
}

.v2-business-plan h3 {
  margin: 0;
  font-size: 1.25rem;
}

.v2-plan__body {
  display: grid;
  grid-template-rows: auto auto auto minmax(48px, 1fr);
  align-self: stretch;
  align-content: start;
  gap: 10px;
}

.v2-business-plan .v2-plan__price {
  margin: 0;
  min-height: 72px;
  font-size: 2.55rem;
  line-height: 1;
  white-space: nowrap;
}

.v2-business-plan .v2-plan__suffix {
  display: block;
  margin: 8px 0 0;
  font-size: 0.78rem;
  white-space: nowrap;
}

.v2-business-plan--group .v2-plan__price {
  font-size: 2.12rem;
}

.v2-plan__current-price--group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  white-space: normal;
}

.v2-plan__group-price-part {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.v2-plan__group-price-part strong {
  color: inherit;
  font: inherit;
  white-space: nowrap;
}

.v2-plan__group-price-part small {
  color: var(--v2-muted);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.2;
  white-space: normal;
}

.v2-plan__group-price-plus {
  padding-top: 1px;
  color: inherit;
  font: inherit;
}

.v2-plan__trial {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--v2-brand-dark);
  font-size: 0.82rem;
  font-weight: 820;
  line-height: 1.25;
}

.v2-plan__trial-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.v2-plan__trial-regular {
  color: var(--v2-muted);
  font-weight: 820;
  text-decoration: line-through;
  text-decoration-thickness: 1.7px;
}

.v2-plan__trial::before {
  content: "✓";
  display: grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--v2-mint);
  color: var(--v2-brand-dark);
  font-size: 0.72rem;
  margin-top: 0;
}

.v2-plan__cancellation {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--v2-muted);
  font-size: 0.79rem;
  font-weight: 760;
  line-height: 1.25;
}

.v2-plan__cancellation::before {
  content: "✓";
  display: grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--v2-mint);
  color: var(--v2-brand-dark);
  font-size: 0.72rem;
}

.v2-business-plan p {
  max-width: 32ch;
  margin: 0;
  font-weight: 690;
  line-height: 1.35;
}

.v2-business-plan ul {
  gap: 13px;
  padding-left: 0;
  list-style: none;
  color: var(--v2-ink);
  font-weight: 760;
}

.v2-business-plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.v2-business-plan li::before,
.v2-plan-included li::before,
.v2-plan-included__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--v2-brand);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.v2-business-plan li::before,
.v2-plan-included li::before {
  content: "✓";
  margin-top: 2px;
}

.v2-plan-included {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #d4e5e0;
  border-radius: 14px;
  background: #ffffff;
}

.v2-plan-included summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: -8px;
  padding: 8px;
  border-radius: 12px;
  list-style: none;
  cursor: pointer;
  transition: background 0.18s ease;
}

.v2-plan-included summary:hover,
.v2-plan-included summary:focus-visible {
  background: #f1faf7;
  outline: none;
}

.v2-plan-included summary::-webkit-details-marker {
  display: none;
}

.v2-plan-included__icon {
  width: 34px;
  height: 34px;
  background: var(--v2-mint);
  color: var(--v2-brand-dark);
}

.v2-plan-included__label {
  min-width: 0;
}

.v2-plan-included__chevron {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  border: 1px solid #bfd8d1;
  border-radius: 50%;
  background: #f1faf7;
  color: var(--v2-brand-dark);
  transition: background 0.18s ease, transform 0.18s ease;
}

.v2-plan-included__chevron::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.v2-plan-included[open] .v2-plan-included__chevron::before {
  transform: translateY(2px) rotate(225deg);
}

.v2-plan-included strong {
  display: block;
  color: var(--v2-ink);
  font-size: 1.2rem;
}

.v2-plan-included small {
  display: block;
  margin-top: 3px;
  color: var(--v2-muted);
  font-size: 0.92rem;
  font-weight: 680;
}

.v2-plan-included__note {
  margin: 20px 0 16px;
  padding: 12px 14px;
  border: 1px solid #bfd8d1;
  border-radius: 10px;
  background: #f1faf7;
  color: #475467;
  font-weight: 720;
}

.v2-plan-included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 34px;
  margin: 0;
  padding: 18px;
  border: 1px solid #d4e5e0;
  border-radius: 12px;
  list-style: none;
}

.v2-plan-included li {
  display: flex;
  gap: 10px;
  color: var(--v2-ink);
  font-weight: 720;
  line-height: 1.35;
}

.v2-application {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 40px;
}

.v2-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: #ffffff;
}

.v2-form__required-note {
  margin: 0;
  color: var(--v2-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.v2-form__section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--v2-line);
}
.v2-form__section:last-of-type { border-bottom: 0; }
.v2-form__section h3 { margin: 0; font-size: 1.08rem; }
.v2-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 14px; }
.v2-application > *,
.v2-form > *,
.v2-form__section > *,
.v2-form__grid > *,
.v2-field { min-width: 0; }
.v2-field { grid-template-columns: minmax(0, 1fr); }
.v2-field input,
.v2-field select,
.v2-field textarea { min-width: 0; max-width: 100%; }
.v2-checkbox { display: flex; gap: 10px; align-items: flex-start; color: var(--v2-muted); line-height: 1.45; }
.v2-checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--v2-brand); }
.v2-checkbox[data-invalid="true"] { color: var(--v2-danger); }
.v2-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.v2-file-drop {
  display: flex;
  flex-wrap: wrap;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: 1px dashed #9fbeb5;
  border-radius: 8px;
  background: #f8fbfa;
  cursor: pointer;
  text-align: center;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.v2-file-drop:hover,
.v2-file-drop:focus-within,
.v2-file-drop[data-dragging="true"] {
  border-color: var(--v2-brand);
  background: var(--v2-mint);
}
.v2-file-drop[aria-invalid="true"] {
  border-color: var(--v2-danger);
  box-shadow: 0 0 0 1px var(--v2-danger);
}
.v2-file-drop .v2-file-drop__input {
  position: absolute;
  width: 1px;
  min-width: 1px;
  max-width: 1px;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.v2-file-drop__action {
  padding: 9px 12px;
  border: 1px solid #c7d5d0;
  border-radius: 6px;
  background: #ffffff;
  color: var(--v2-ink);
  font-weight: 760;
}
.v2-file-drop__text {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--v2-muted);
  font-weight: 650;
}
.v2-form__review-time {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--v2-brand);
  background: var(--v2-mint);
  color: var(--v2-muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}
.v2-form__security {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: #f8fbfa;
}
.v2-form__security strong,
.v2-form__security small { display: block; }
.v2-form__security strong { color: var(--v2-ink); }
.v2-form__security small {
  margin-top: 3px;
  color: var(--v2-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}
.v2-form__security[data-invalid="true"] {
  border-color: var(--v2-danger);
  box-shadow: 0 0 0 1px var(--v2-danger);
}
.v2-turnstile { min-height: 0; }
.v2-turnstile > div { max-width: 100%; }
.v2-form-status { min-height: 24px; color: var(--v2-muted); line-height: 1.45; }
.v2-form-status[data-tone="success"] { color: #067647; }
.v2-form-status[data-tone="error"] { color: var(--v2-danger); }

.v2-withdrawal-form { margin: 28px 0; }
.v2-withdrawal-form [hidden] { display: none !important; }
.v2-withdrawal-step {
  margin: 0;
  color: var(--v2-brand-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.v2-withdrawal-summary,
.v2-withdrawal-success {
  padding: 18px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: var(--v2-mint);
}
.v2-withdrawal-summary p,
.v2-withdrawal-success p { margin: 0 0 8px; overflow-wrap: anywhere; }
.v2-withdrawal-summary p:last-child,
.v2-withdrawal-success p:last-child { margin-bottom: 0; }
.v2-withdrawal-success h2 { margin: 0 0 12px; }
.v2-withdrawal-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.v2-button--danger { background: #9f2d20; border-color: #9f2d20; color: #ffffff; }
.v2-button--danger:hover { background: #7d2118; border-color: #7d2118; }
.v2-support-hero {
  min-height: min(680px, calc(100vh - 74px));
  display: flex;
  align-items: center;
  background-color: #f4f2ea;
  background-image: url("assets/website/support-customer-help.jpg");
  background-position: center;
  background-size: cover;
}

.v2-support-hero__inner {
  width: 100%;
}

.v2-support-hero__copy {
  width: min(45%, 540px);
  padding: 82px 0;
}

.v2-support-hero__copy .v2-title {
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 1;
}

.v2-support-hero__copy .v2-copy {
  margin: 20px 0 28px;
  color: #344054;
  font-size: 1.2rem;
}

.v2-support-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.v2-support-path {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: var(--v2-surface);
}

.v2-support-path__number {
  margin: 0 0 32px;
  color: var(--v2-brand);
  font-size: 0.82rem;
  font-weight: 850;
}

.v2-support-path h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.v2-support-path > p:not(.v2-support-path__number) {
  margin: 0 0 24px;
  color: var(--v2-muted);
  line-height: 1.55;
}

.v2-support-path .v2-button {
  width: 100%;
  margin-top: auto;
}

.v2-support-details {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 56px;
  align-items: start;
}

.v2-support-faq {
  border-top: 1px solid #b9d3cd;
}

.v2-support-faq details {
  border-bottom: 1px solid #b9d3cd;
}

.v2-support-faq summary {
  padding: 20px 4px;
  color: var(--v2-ink);
  font-weight: 780;
  cursor: pointer;
}

.v2-support-faq details p {
  max-width: 62ch;
  margin: -4px 0 22px;
  color: #475467;
  line-height: 1.6;
}

.v2-support-faq a {
  color: var(--v2-brand-dark);
  font-weight: 750;
  text-decoration: underline;
}

.v2-support-contact {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr) auto;
  gap: 36px;
  align-items: center;
}

.v2-support-contact .v2-eyebrow {
  color: #75d0bd;
}

.v2-support-contact .v2-copy {
  margin: 0;
}

.v2-legal-page main {
  background: var(--v2-surface);
}

.v2-legal-head {
  padding: 68px 0 42px;
  border-bottom: 1px solid var(--v2-line);
  background: #edf1ee;
}

.v2-legal-head h1 {
  max-width: 18ch;
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  hyphens: auto;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.v2-legal-head__meta {
  margin: 18px 0 0;
  color: var(--v2-muted);
}

.v2-legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  justify-content: center;
  gap: 64px;
  padding: 58px 0 88px;
}

.v2-legal-nav {
  position: sticky;
  top: 104px;
  display: grid;
  align-content: start;
  gap: 4px;
}

.v2-legal-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--v2-muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.v2-legal-nav a:hover,
.v2-legal-nav a[aria-current="page"] {
  color: var(--v2-brand-dark);
  background: var(--v2-mint);
}

.v2-legal-copy {
  min-width: 0;
  color: #475467;
  font-size: 1rem;
  line-height: 1.72;
}

.v2-legal-copy h2 {
  margin: 42px 0 12px;
  padding-top: 4px;
  color: var(--v2-ink);
  font-size: 1.32rem;
  line-height: 1.3;
}

.v2-legal-copy h2:first-child { margin-top: 0; }
.v2-legal-copy p { margin: 0 0 16px; }
.v2-legal-copy ul { margin: 0 0 18px; padding-left: 22px; }
.v2-legal-copy li { margin-bottom: 8px; }
.v2-legal-copy a { color: var(--v2-brand-dark); text-decoration: underline; }
.v2-legal-note {
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--v2-gold);
  background: #fbf7eb;
  color: #594514;
}

@media (max-width: 980px) {
  .v2-market-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-profile-layout,
  .v2-booking-shell,
  .v2-application { grid-template-columns: minmax(0, 1fr); }
  .v2-pricing-head { align-items: flex-start; flex-direction: column; }
  .v2-plan-grid--business { grid-template-columns: 1fr; }
  .v2-plan-included ul { grid-template-columns: 1fr; }
  .v2-profile-aside,
  .v2-booking-summary { position: static; }
  .v2-filter-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-business-showcase { min-height: 610px; }
  .v2-business-showcase__inner {
    grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
    gap: 32px;
  }
  .v2-business-showcase__copy h2 { font-size: 3.45rem; }
  .v2-header__store-links img { height: 32px; }
  .v2-support-hero { background-position: 56% center; }
  .v2-support-hero__copy { width: min(50%, 500px); }
  .v2-support-contact { grid-template-columns: 1fr 1fr; }
  .v2-support-contact .v2-button { grid-column: 1 / -1; width: fit-content; }
  .v2-legal-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 40px; }
}

@media (max-width: 760px) {
  .site-v2 .container { width: min(calc(100% - 28px), var(--v2-max)); }
  .v2-business-plan .v2-plan__price { font-size: 2.2rem; }
  .v2-business-plan--group .v2-plan__price { font-size: 1.72rem; }
  .v2-promotion-banner { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .v2-promotion-banner__deadline { width: fit-content; min-width: 0; }
  .v2-header__inner { min-height: 66px; }
  .v2-market-app { height: calc(100dvh - 67px); }
  .v2-menu-button { display: inline-flex; margin-left: auto; }
  .v2-header__actions .v2-button--quiet { display: none; }
  .v2-header__store-links { display: none; }
  .v2-header__actions .v2-header__mobile-app { display: inline-flex; }
  .v2-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px 14px;
    border-bottom: 1px solid var(--v2-line);
    background: var(--v2-bg);
  }
  .v2-nav[data-open="true"] { display: flex; }
  .v2-nav a { justify-content: flex-start; }
  .v2-carousel {
    min-height: 0;
    height: var(--v2-carousel-mobile-height, 700px);
    overflow: hidden;
    overflow: clip;
    overflow-anchor: none;
    transition: height 220ms ease;
  }
  .v2-slide__inner {
    min-height: 0;
    height: auto;
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    align-items: start;
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 82px;
  }
  .v2-slide__copy { width: 100%; padding: 0; }
  .v2-slide:not(.v2-slide--language) .v2-slide__copy {
    min-height: var(--v2-carousel-mobile-copy-height, 0);
  }
  .v2-slide__copy .v2-title { max-width: 100%; }
  .v2-slide__copy .v2-copy { max-width: 34ch; margin: 14px 0 18px; font-size: 1rem; }
  .v2-phone {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    justify-self: center;
    height: 300px;
    border-radius: 19px;
    transform: none;
  }
  .v2-phone img { border-radius: 18px; }
  .v2-slide__lifestyle {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100vw;
    height: 238px;
    margin-left: calc((100vw - 100%) / -2);
    object-position: 62% center;
  }
  .v2-carousel__controls { bottom: 18px; }
  .v2-band { padding: 58px 0; }
  .v2-section-head,
  .v2-page-head__row,
  .v2-footer__inner { align-items: flex-start; flex-direction: column; }
  .v2-steps,
  .v2-feature-grid,
  .v2-plan-grid { grid-template-columns: 1fr; }
  .v2-app-banner { grid-template-columns: 1fr; }
  .v2-lifestyle {
    min-height: 0;
    padding: 58px 0;
  }
  .v2-lifestyle__inner {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .v2-lifestyle__copy {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
  .v2-lifestyle img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    object-fit: cover;
    transform: none;
  }
  .v2-footer__links,
  .v2-footer__link-group { justify-content: flex-start; }
  .v2-page-head { padding: 42px 0 28px; }
  .v2-market-toolbar { top: 66px; }
  .v2-search-row { grid-template-columns: 1fr auto; }
  .v2-search-row .v2-button:last-child { grid-column: 1 / -1; }
  .v2-filter-panel { grid-template-columns: 1fr; }
  .v2-market-grid { grid-template-columns: 1fr; }
  .v2-profile-hero,
  .v2-profile-hero__content { min-height: 430px; }
  .v2-profile-layout { padding-top: 18px; }
  .v2-profile-section { padding: 20px; }
  .v2-portfolio { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v2-slot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v2-business-showcase {
    min-height: 0;
    height: var(--v2-carousel-mobile-height, 620px);
    overflow: hidden;
    overflow: clip;
    overflow-anchor: none;
    transition: height 220ms ease;
  }
  .v2-business-showcase__inner {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 84px;
  }
  .v2-business-showcase__copy { max-width: 100%; }
  .v2-business-showcase__slide:not(.v2-business-showcase__slide--hero):not(.v2-business-showcase__slide--language) .v2-business-showcase__copy {
    min-height: var(--v2-carousel-mobile-copy-height, 0);
  }
  .v2-business-showcase__copy h2 { max-width: 100%; font-size: 2.7rem; }
  .v2-business-showcase__copy > p:last-child { max-width: 34ch; margin-top: 14px; font-size: 1rem; }
  .v2-business-showcase__number { margin-bottom: 10px; }
  .v2-business-showcase__devices { align-self: start; margin-top: 0; }
  .v2-business-showcase__ipad { top: 7%; width: 90%; border-radius: 15px; }
  .v2-business-showcase__iphone { width: 25%; border-radius: 19px; }
  .v2-business-showcase__ipad img { border-radius: 14px; }
  .v2-business-showcase__iphone img { border-radius: 18px; }
  .v2-business-showcase__lifestyle {
    top: auto;
    right: calc((100vw - 100%) / -2);
    bottom: 0;
    width: 100vw;
    height: 44%;
    object-position: 40% center;
  }
  .v2-business-showcase__lifestyle--language { object-position: 56% center; }
  .v2-business-showcase__slide--hero .v2-business-showcase__inner { min-height: 620px; }
  .v2-business-showcase__slide--language .v2-business-showcase__lifestyle {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100vw;
    height: 220px;
    margin-left: calc((100vw - 100%) / -2);
  }
  .v2-business-showcase__copy--light { padding-top: 4px; }
  .v2-business-showcase__copy--light .v2-title { max-width: 100%; }
  .v2-business-showcase__stores { margin-top: 14px; }
  .v2-business-showcase__stores img { height: 34px; }
  .v2-business-showcase__controls { bottom: 12px; }
  .v2-business-showcase__controls .v2-carousel__dots { max-width: calc(100% - 108px); overflow: hidden; }
  .v2-business-benefits { padding: 58px 0 62px; }
  .v2-business-benefits__head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 24px; }
  .v2-business-benefits__head .v2-section-title { max-width: 12ch; }
  .v2-business-benefits__grid { grid-template-columns: 1fr; }
  .v2-business-benefit { min-height: 290px; padding: 24px; }
  .v2-business-benefit__number { margin-bottom: 38px; }
  .v2-form { padding: 20px; }
  .v2-form__grid { grid-template-columns: 1fr; }
  .v2-support-hero {
    min-height: 720px;
    align-items: flex-start;
    background-position: 60% bottom;
    background-size: auto 58%;
    background-repeat: no-repeat;
  }
  .v2-support-hero__copy { width: 100%; padding: 46px 0 0; }
  .v2-support-hero__copy .v2-title { max-width: 100%; font-size: 2.55rem; line-height: 1.02; }
  .v2-support-hero__copy .v2-copy { margin: 14px 0 20px; font-size: 1rem; }
  .v2-support-paths,
  .v2-support-details,
  .v2-support-contact { grid-template-columns: 1fr; }
  .v2-support-details { gap: 28px; }
  .v2-support-path { min-height: 240px; }
  .v2-support-contact .v2-button { grid-column: auto; width: 100%; }
  .v2-legal-head { padding: 46px 0 30px; }
  .v2-legal-head h1 {
    max-width: 100%;
    font-size: 1.98rem;
    line-height: 1.08;
  }
  .v2-legal-layout { grid-template-columns: 1fr; gap: 32px; padding: 38px 0 64px; }
  .v2-legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .v2-legal-nav a {
    min-height: 40px;
    align-items: center;
    display: inline-flex;
    padding: 8px 10px;
  }
}

@media (max-width: 420px) {
  .v2-title { font-size: 2.35rem; }
  .v2-plan__current-price--group { grid-template-columns: 1fr; gap: 7px; }
  .v2-plan__group-price-plus { padding: 0; line-height: 0.8; }
  .v2-phone { height: 280px; }
  .v2-store-row img { height: 43px; }
  .v2-store-links { gap: 7px; }
  .v2-store-links img { height: 40px; }
  .v2-carousel__dots { gap: 6px; }
  .v2-carousel__arrow { width: 42px; height: 42px; }
  .v2-business-showcase__copy h2 { font-size: 2.35rem; }
  .v2-business-showcase__copy--light .v2-title { font-size: 2.35rem; }
  .v2-business-showcase__inner { padding-top: 26px; }
  .v2-business-showcase__controls .v2-carousel__dots { padding: 7px; gap: 5px; }
  .v2-business-showcase__controls .v2-carousel__dot { width: 8px; }
  .v2-business-showcase__controls .v2-carousel__dot[aria-current="true"] { width: 22px; }
  .v2-slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .v2-slide,
  .v2-business-showcase__slide,
  .v2-button,
  .v2-salon-card { transition: none; }
}
