:root {
  --bg-top: #f7e5ea;
  --bg-mid: #f7efe7;
  --bg-bottom: #fcf8f4;
  --ink: #1f1a17;
  --muted: #6f6760;
  --line: rgba(31, 26, 23, 0.1);
  --pill: #f1e4d5;
  --search-bg: rgba(255, 252, 248, 0.98);
  --white: #ffffff;
  --surface: rgba(255, 252, 248, 0.86);
  --surface-strong: rgba(255, 252, 248, 0.96);
  --surface-dark: #181f2c;
  --primary: #6c4cf5;
  --primary-strong: #5636e8;
  --primary-soft: rgba(108, 76, 245, 0.1);
  --accent: #c89263;
  --shadow-soft: 0 14px 34px rgba(93, 72, 61, 0.08);
  --shadow-medium: 0 20px 44px rgba(81, 60, 55, 0.12);
  --focus-ring: 0 0 0 4px rgba(108, 76, 245, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.42), transparent 32%),
    radial-gradient(circle at 10% 10%, rgba(200, 146, 99, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 48%, var(--bg-bottom) 100%);
  font-family: 'Manrope', sans-serif;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a,
button,
input,
select,
textarea {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page {
  min-height: 100vh;
  padding: 22px 30px 40px;
}

.site-header,
.hero {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 6px;
  padding-right: 6px;
}

.brand {
  font-size: 1.58rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  transition:
    transform 180ms ease,
    color 180ms ease,
    text-shadow 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  color: #4f46d8;
  text-shadow: 0 10px 22px rgba(108, 76, 245, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.login-link {
  padding: 12px 10px;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.login-link:hover,
.login-link:focus-visible {
  transform: translateY(-1px);
  color: #4f46d8;
  background: rgba(108, 76, 245, 0.06);
}

.pill-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.pill-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 76, 245, 0.1), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.pill-button.fill {
  border-color: rgba(108, 76, 245, 0.12);
  background: linear-gradient(180deg, #f4ebdf, #efdfcd);
}

.pill-button:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 76, 245, 0.16);
  box-shadow: var(--shadow-medium);
}

.pill-button:hover::before,
.pill-button:focus-visible::before {
  opacity: 1;
}

.menu-button {
  gap: 16px;
  min-width: 184px;
  padding-right: 28px;
  padding-left: 28px;
}

.menu-wrap {
  position: relative;
}

.menu-lines {
  display: inline-grid;
  gap: 6px;
  transition: transform 180ms ease;
}

.menu-lines span {
  display: block;
  width: 30px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button:hover .menu-lines,
.menu-button:focus-visible .menu-lines {
  transform: translateX(1px);
}

.menu-button:hover .menu-lines span:first-child,
.menu-button:focus-visible .menu-lines span:first-child {
  transform: translateX(-2px);
}

.menu-button:hover .menu-lines span:last-child,
.menu-button:focus-visible .menu-lines span:last-child {
  transform: translateX(2px);
}

.menu-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  width: 288px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.96));
  box-shadow: 0 24px 40px rgba(103, 82, 93, 0.18);
  backdrop-filter: blur(10px);
}

.menu-popover.is-hidden {
  display: none;
}

.menu-section {
  display: grid;
  gap: 14px;
}

.menu-heading {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.menu-section a,
.menu-business-link {
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.98rem;
  border-radius: 14px;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.menu-language {
  gap: 10px;
}

.language-icon,
.business-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.language-icon svg,
.business-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-divider {
  height: 1px;
  margin: 16px 0 12px;
  background: rgba(16, 16, 16, 0.12);
}

.menu-business-link {
  justify-content: space-between;
  font-weight: 700;
}

.menu-section a:hover,
.menu-section a:focus-visible,
.menu-business-link:hover,
.menu-business-link:focus-visible {
  transform: translateX(2px);
  color: #4f46d8;
  background: rgba(108, 76, 245, 0.05);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 94px);
  padding-bottom: 74px;
  text-align: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: 70px;
  left: max(-120px, calc(50% - 780px));
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(108, 76, 245, 0.12), transparent 68%);
}

.hero::after {
  right: max(-100px, calc(50% - 760px));
  bottom: 40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(200, 146, 99, 0.12), transparent 68%);
}

.hero-inner {
  position: relative;
  width: min(1120px, 100%);
  transform: translateY(78px);
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 auto 18px;
  padding: 0 16px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.72);
  color: #5f5953;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(3rem, 5.15vw, 4.9rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.hero-title-accent {
  display: inline-block;
  background: linear-gradient(135deg, #6c4cf5, #c89263);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  max-width: 820px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-trust-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px 0 38px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.72);
  color: #4f4944;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.hero-trust-pill::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6c4cf5, #c89263);
  box-shadow: 0 0 0 4px rgba(108, 76, 245, 0.08);
  transform: translateY(-50%);
}

.hero-trust-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 76, 245, 0.16);
  box-shadow: 0 16px 28px rgba(108, 76, 245, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr) minmax(0, 1fr) auto;
  align-items: center;
  width: min(1000px, 100%);
  margin: 58px auto 0;
  padding: 8px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 999px;
  background: var(--search-bg);
  box-shadow: var(--shadow-medium);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.search-bar:hover,
.search-bar:focus-within {
  transform: translateY(-2px);
  border-color: rgba(108, 76, 245, 0.14);
  box-shadow: 0 24px 42px rgba(115, 92, 82, 0.14);
}

.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 0 18px;
  transition: background-color 180ms ease;
}

.search-item + .search-item {
  border-left: 1px solid rgba(16, 16, 16, 0.08);
}

.search-item:hover {
  background: rgba(108, 76, 245, 0.03);
}

.search-item input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 0.98rem;
}

.search-item input::placeholder {
  color: #645d58;
  opacity: 1;
}

.search-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #5b5652;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.search-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #5b5652;
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.search-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-button {
  min-width: 104px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  font-weight: 800;
  font-size: 0.98rem;
  box-shadow: 0 12px 24px rgba(108, 76, 245, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.search-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 30px rgba(108, 76, 245, 0.3);
  filter: saturate(1.03);
}

.search-bar:hover .search-icon,
.search-bar:focus-within .search-icon,
.search-icon-button:hover,
.search-icon-button:focus-visible {
  transform: scale(1.06);
  color: #4f46d8;
}

.search-icon-button:hover,
.search-icon-button:focus-visible {
  background: rgba(108, 76, 245, 0.08);
}

.booking-count {
  margin: 44px 0 0;
  font-size: clamp(1.3rem, 2vw, 1.95rem);
  letter-spacing: -0.04em;
}

.booking-count strong {
  font-weight: 800;
}

.hero-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(920px, 100%);
  margin: 30px auto 0;
}

.hero-highlight-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.78);
  text-align: left;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.hero-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c4cf5, rgba(108, 76, 245, 0.12));
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 76, 245, 0.14);
  box-shadow: 0 22px 36px rgba(108, 76, 245, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.hero-highlight-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.hero-highlight-card strong {
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.hero-highlight-card span {
  color: #605953;
  line-height: 1.5;
}

.app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 54px;
  padding: 0 22px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 999px;
  background: var(--surface-strong);
  font-size: 1.06rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.app-link:hover,
.app-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(108, 76, 245, 0.14);
  box-shadow: 0 18px 30px rgba(115, 92, 82, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.public-salon-showcase {
  width: min(1120px, 100%);
  margin: 120px auto 0;
  padding: 36px 0 0;
  border-top: 1px solid rgba(31, 26, 23, 0.08);
}

.public-salon-showcase-copy {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.public-salon-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.78);
  color: #5f5953;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-salon-showcase-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.05em;
}

.public-salon-showcase-copy p:not(.public-salon-showcase-eyebrow):not(.public-salon-showcase-status) {
  max-width: 760px;
  margin: 0;
  color: #625c56;
  font-size: 1rem;
  line-height: 1.6;
}

.public-salon-showcase-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(89, 79, 226, 0.12);
  border-radius: 999px;
  background: rgba(89, 79, 226, 0.06);
  color: #463dbb;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.public-salon-showcase-status::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6c4cf5, #c89263);
  box-shadow: 0 0 0 4px rgba(89, 79, 226, 0.1);
}

.public-salon-showcase-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.public-salon-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.88);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.public-salon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 76, 245, 0.14);
  box-shadow: 0 22px 38px rgba(108, 76, 245, 0.1);
  background: rgba(255, 255, 255, 0.96);
}

.public-salon-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.public-salon-card-header h3,
.public-salon-card-header p {
  margin: 0;
}

.public-salon-card-header h3 {
  font-size: 1.22rem;
  letter-spacing: -0.04em;
}

.public-salon-card-header p {
  margin-top: 8px;
  color: #625c56;
  line-height: 1.5;
}

.public-salon-review-meta {
  color: #6a635d;
  font-size: 0.92rem;
  font-weight: 700;
}

.public-salon-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #1f335d;
  color: #ffffff;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.public-salon-book-link:hover,
.public-salon-book-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(31, 51, 93, 0.18);
  background: linear-gradient(180deg, #284172, #1f335d);
}

.public-salon-services {
  display: grid;
  gap: 12px;
}

.public-salon-service-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.public-salon-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 76, 245, 0.14);
  box-shadow: 0 14px 24px rgba(108, 76, 245, 0.08);
}

.public-salon-service-card strong {
  font-size: 1rem;
}

.public-salon-service-card span {
  color: #625c56;
  font-size: 0.94rem;
}

.public-salon-showcase-empty {
  margin: 28px 0 0;
  color: #625c56;
  font-weight: 700;
}

.site-footer {
  width: min(1120px, 100%);
  margin: 38px auto 0;
  padding: 22px 0 8px;
  border-top: 1px solid rgba(44, 28, 21, 0.1);
}

.site-footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: #5c4b41;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.app-badge {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 4px;
}

.app-badge span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 2px;
}

.login-page {
  min-height: 100vh;
  padding: 22px 28px;
  background:
    radial-gradient(circle at top left, rgba(108, 76, 245, 0.08), transparent 20%),
    #f7ecdf;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(720px, 100%);
  min-height: calc(100vh - 44px);
  margin: 0 auto;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 249, 241, 0.78);
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 52px rgba(92, 74, 82, 0.12);
}

.login-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 30px 54px 24px;
  background: rgba(255, 248, 240, 0.94);
}

.login-topbar {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  border-radius: 50%;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  transform: translateY(-1px);
  color: #4f46d8;
  background: rgba(108, 76, 245, 0.08);
  box-shadow: 0 12px 22px rgba(108, 76, 245, 0.12);
}

.back-link svg,
.card-arrow svg,
.footer-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-content {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 16px 0 32px;
}

.login-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 16px;
  padding: 0 15px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.86);
  color: #5f5953;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.login-content h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.login-subtitle {
  max-width: 500px;
  margin: 18px 0 34px;
  color: #655f59;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.login-options {
  display: grid;
  gap: 18px;
  width: min(430px, 100%);
}

.login-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding: 22px 22px 22px 24px;
  border: 1px solid rgba(16, 16, 16, 0.11);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 248, 0.94));
  box-shadow: 0 16px 28px rgba(115, 92, 82, 0.08);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 66px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c4cf5, rgba(108, 76, 245, 0.16));
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.login-card:hover,
.login-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(108, 76, 245, 0.16);
  box-shadow: 0 24px 40px rgba(108, 76, 245, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.login-card:hover::before,
.login-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.login-card strong,
.login-card span {
  display: block;
}

.login-card strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.login-card span {
  color: var(--muted);
  font-size: 0.98rem;
}

.card-arrow {
  flex: 0 0 auto;
  color: var(--ink);
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.login-card:hover .card-arrow,
.login-card:focus-visible .card-arrow {
  transform: translateX(4px);
  color: #4f46d8;
}

.login-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-top: 20px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5f5870;
  font-size: 0.98rem;
  border-radius: 999px;
  padding: 8px 10px;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  transform: translateY(-1px);
  color: #4f46d8;
  background: rgba(108, 76, 245, 0.05);
}

.footer-link svg {
  width: 18px;
  height: 18px;
}

.login-visual {
  position: relative;
  min-height: 720px;
  background:
    linear-gradient(180deg, rgba(14, 25, 48, 0.12), rgba(14, 25, 48, 0.02)),
    linear-gradient(135deg, #dac7ae 0%, #d2c3b2 22%, #4d5257 55%, #223249 100%);
  overflow: hidden;
}

.visual-scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 320ms ease;
}

.login-visual:hover .visual-scene {
  transform: scale(1.02);
}

.visual-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 242, 224, 0.18), transparent 28%),
    linear-gradient(0deg, rgba(8, 16, 24, 0.18), transparent 40%);
}

.scene-building {
  position: absolute;
  bottom: 0;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(234, 219, 197, 0.92), rgba(152, 145, 139, 0.95));
}

.building-left {
  left: 4%;
  width: 28%;
  height: 78%;
  transform: skewY(-4deg);
}

.building-mid {
  left: 27%;
  width: 21%;
  height: 92%;
  background: linear-gradient(180deg, rgba(191, 184, 173, 0.98), rgba(120, 118, 117, 0.98));
}

.building-right {
  right: -2%;
  width: 26%;
  height: 86%;
  background: linear-gradient(180deg, rgba(80, 88, 97, 0.92), rgba(34, 50, 73, 0.98));
}

.scene-car {
  position: absolute;
  bottom: 14%;
  width: 70px;
  height: 32px;
  border-radius: 18px 18px 10px 10px;
  filter: blur(0.2px);
}

.car-red {
  left: 29%;
  background: linear-gradient(180deg, #ea6d5c, #9d382e);
}

.car-silver {
  left: 18%;
  width: 56px;
  height: 26px;
  background: linear-gradient(180deg, #d7d7d7, #8f8f8f);
}

.person-figure {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 46%;
  height: 82%;
}

.person-head,
.person-hair,
.person-glasses,
.person-jacket,
.person-shirt,
.person-phone {
  position: absolute;
}

.person-head {
  top: 8%;
  right: 22%;
  width: 104px;
  height: 126px;
  border-radius: 46% 46% 42% 42%;
  background: linear-gradient(180deg, #402d22, #1f1510);
  z-index: 4;
}

.person-hair {
  top: 3%;
  right: 18%;
  width: 124px;
  height: 72px;
  border-radius: 28px 28px 22px 22px;
  background: #121417;
  z-index: 5;
}

.person-glasses {
  top: 16%;
  right: 20%;
  width: 112px;
  height: 34px;
  border-top: 4px solid #1d2126;
  border-bottom: 4px solid #1d2126;
  border-radius: 20px;
  box-shadow:
    inset 22px 0 0 0 rgba(255, 255, 255, 0.04),
    inset -22px 0 0 0 rgba(255, 255, 255, 0.04);
  z-index: 6;
}

.person-jacket {
  right: 0;
  bottom: 0;
  width: 86%;
  height: 68%;
  border-radius: 34px 34px 0 0;
  background:
    linear-gradient(115deg, rgba(248, 246, 236, 0.98) 0%, rgba(235, 230, 218, 0.98) 62%, rgba(215, 210, 199, 0.98) 100%);
  z-index: 2;
}

.person-shirt {
  right: 24%;
  bottom: 10%;
  width: 30%;
  height: 48%;
  border-radius: 20px 20px 0 0;
  background:
    repeating-linear-gradient(
      180deg,
      #f6f1e8 0 10px,
      #f6f1e8 10px 20px,
      #d66d49 20px 28px
    );
  z-index: 3;
}

.person-phone {
  right: 30%;
  bottom: 18%;
  width: 42px;
  height: 76px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2d3036, #0d0f12);
  transform: rotate(18deg);
  z-index: 6;
}

.pro-signup-page {
  min-height: 100vh;
  padding: 22px 28px;
  background: #f7ecdf;
}

.pro-signup-shell {
  display: grid;
  grid-template-columns: minmax(470px, 0.94fr) minmax(420px, 0.96fr);
  width: min(1180px, 100%);
  min-height: calc(100vh - 44px);
  margin: 0 auto;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 249, 241, 0.78);
  overflow: hidden;
}

.pro-signup-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 30px 54px 18px;
  background: rgba(255, 248, 240, 0.95);
}

.pro-signup-content {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 10px 0 24px;
}

.pro-signup-content h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.pro-signup-content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.pro-signup-form {
  display: grid;
  gap: 22px;
  width: min(470px, 100%);
  margin-top: 42px;
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(255, 248, 242, 0.9));
  box-shadow: 0 24px 46px rgba(98, 88, 82, 0.1);
}

.pro-signup-form-intro {
  display: grid;
  gap: 8px;
}

.pro-signup-form-intro strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.pro-signup-form-intro span {
  color: #6a635d;
  font-size: 0.94rem;
  line-height: 1.55;
}

.signup-input-wrap {
  display: block;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.96);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.signup-input-wrap:hover {
  border-color: rgba(89, 79, 226, 0.26);
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

.signup-input-wrap input {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 1rem;
}

.signup-input-wrap:focus-within {
  border-color: #594fe2;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(89, 79, 226, 0.12),
    0 16px 28px rgba(89, 79, 226, 0.08);
}

.signup-input-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b736d;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.continue-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: center;
  width: min(190px, 100%);
  padding: 0 18px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(108, 76, 245, 0.2);
}

.continue-button-arrow {
  display: inline-flex;
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.continue-button-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.continue-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 34px rgba(108, 76, 245, 0.28);
}

.continue-button:hover .continue-button-arrow {
  transform: translateX(3px);
}

.divider-copy {
  margin-top: 26px;
  color: #6d6863;
  font-size: 0.95rem;
}

.social-stack {
  display: grid;
  gap: 14px;
  width: min(470px, 100%);
  margin-top: 26px;
}

.social-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.96);
  font-weight: 500;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.social-button:hover {
  border-color: rgba(89, 79, 226, 0.24);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 30px rgba(89, 79, 226, 0.08);
  transform: translateY(-2px);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-icon.facebook {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.12);
}

.social-icon.google {
  color: #ea4335;
  background: rgba(234, 67, 53, 0.12);
}

.social-icon.apple {
  color: #121212;
  background: rgba(18, 18, 18, 0.1);
}

.pro-signup-footer {
  padding-top: 12px;
  text-align: center;
  color: #413c39;
}

.pro-signup-footer p {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.76);
  box-shadow: var(--shadow-soft);
}

.pro-signup-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: linear-gradient(180deg, #d7e8bf 0%, #edf3e3 100%);
  perspective: 1400px;
}

.pro-signup-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform-origin: center center;
  animation:
    signup-photo-flip-in 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) both,
    signup-photo-float 6s ease-in-out 1200ms infinite;
}

.pro-signup-photo-overlay {
  position: relative;
  position: absolute;
  inset: auto 24px 24px 24px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(24, 31, 41, 0.62);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  animation: signup-photo-overlay-rise 900ms ease 300ms both;
}

.help-page {
  min-height: 100vh;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(108, 76, 245, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf0e4 0%, #f5e6d6 100%);
}

.help-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 38px;
  border-radius: 36px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 28px 80px rgba(80, 53, 22, 0.14);
}

.help-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #57463a;
  font-weight: 700;
}

.help-back-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-hero {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.help-eyebrow {
  margin: 0;
  color: #7f6148;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.help-hero h1 {
  margin: 0;
  color: #22160f;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
}

.help-hero p {
  max-width: 700px;
  margin: 0;
  color: #5f4a3c;
  font-size: 1.08rem;
  line-height: 1.7;
}

.help-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  margin-top: 32px;
}

.help-card {
  padding: 28px;
  border: 1px solid rgba(130, 97, 67, 0.12);
  border-radius: 28px;
  background: #fffdf9;
}

.help-card h2 {
  margin: 0 0 14px;
  color: #241811;
  font-size: 1.25rem;
}

.help-card p {
  margin: 0 0 14px;
  color: #5e493b;
  line-height: 1.7;
}

.help-detail-list {
  display: grid;
  gap: 12px;
}

.help-detail-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(130, 97, 67, 0.12);
}

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

.help-detail-label {
  color: #8d6d53;
  font-weight: 700;
}

.help-detail-value {
  color: #231710;
  font-weight: 600;
}

.help-link-value {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.help-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #5a36e8;
  color: #fff;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.help-action:hover,
.help-action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(90, 54, 232, 0.22);
}

.help-action.secondary {
  background: #efe4d6;
  color: #3e2f24;
}

@media (max-width: 720px) {
  .help-page {
    padding: 18px;
  }

  .help-shell {
    padding: 24px;
    border-radius: 28px;
  }

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

  .help-detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@keyframes signup-photo-flip-in {
  0% {
    opacity: 0;
    transform: rotateY(-16deg) rotateX(8deg) scale(0.94);
  }
  60% {
    opacity: 1;
    transform: rotateY(6deg) rotateX(-2deg) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: rotateY(0) rotateX(0) scale(1);
  }
}

@keyframes signup-photo-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
}

@keyframes signup-photo-overlay-rise {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.onboarding-page {
  min-height: 100vh;
  padding: 18px 22px 30px;
  background: #f7efe7;
}

.onboarding-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.onboarding-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
}

.onboarding-progress {
  display: flex;
  gap: 10px;
  width: min(480px, 100%);
}

.onboarding-top-left {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(580px, 100%);
}

.onboarding-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  color: var(--ink);
  text-decoration: none;
}

.onboarding-back svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.progress-bar {
  flex: 1 1 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.1);
}

.progress-bar-active {
  background: #594fe2;
}

.onboarding-continue {
  min-width: 132px;
  min-height: 48px;
  font-size: 0.95rem;
  text-decoration: none;
}

.onboarding-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.onboarding-footer {
  display: flex;
  justify-content: flex-end;
  width: min(740px, 100%);
  margin: 40px auto 0;
  padding-bottom: 8px;
}

.onboarding-footer-wide {
  width: min(980px, 100%);
}

.onboarding-footer-address {
  width: min(1160px, 100%);
}

.onboarding-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.onboarding-close:hover {
  border-color: rgba(89, 79, 226, 0.24);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 24px rgba(89, 79, 226, 0.08);
  transform: translateY(-2px);
}

.onboarding-main {
  width: min(740px, 100%);
  margin: 86px auto 0;
}

.onboarding-main-wide {
  width: min(980px, 100%);
}

.onboarding-main-address {
  width: min(1160px, 100%);
}

.onboarding-copy {
  max-width: 620px;
}

.onboarding-eyebrow {
  margin: 0 0 14px;
  color: #5b53d8;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.onboarding-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.onboarding-description {
  max-width: 620px;
  margin: 16px 0 0;
  color: #5c5651;
  font-size: 1.03rem;
  line-height: 1.5;
}

.onboarding-form {
  display: grid;
  gap: 24px;
  margin-top: 46px;
}

.onboarding-form-card {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(255, 248, 242, 0.9));
  box-shadow: 0 24px 46px rgba(98, 88, 82, 0.1);
}

.onboarding-form-intro {
  display: grid;
  gap: 8px;
  padding-bottom: 8px;
}

.onboarding-form-intro strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.onboarding-form-intro span {
  color: #6b645e;
  line-height: 1.5;
}

.onboarding-field {
  display: grid;
  gap: 10px;
}

.onboarding-field span {
  font-size: 0.98rem;
  font-weight: 700;
}

.onboarding-field small {
  color: #6f6964;
  font-size: 0.92rem;
  font-weight: 500;
}

.onboarding-field input {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.92);
  font-size: 1rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.onboarding-field input:hover {
  border-color: rgba(89, 79, 226, 0.26);
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

.onboarding-field input:focus {
  outline: none;
  border-color: #594fe2;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(89, 79, 226, 0.12),
    0 16px 28px rgba(89, 79, 226, 0.08);
}

.service-type-section {
  margin-top: 42px;
}

.onboarding-service-types-page .onboarding-main-wide {
  width: min(740px, 100%);
}

.onboarding-service-types-page .onboarding-eyebrow {
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.onboarding-service-types-page .service-type-copy {
  max-width: 620px;
}

.onboarding-service-types-page .service-type-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.04;
}

.onboarding-service-types-page .onboarding-description {
  max-width: 620px;
  font-size: 1.03rem;
}

.onboarding-service-types-page .service-type-section {
  margin-top: 42px;
}

.service-type-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.service-type-bulk-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(89, 79, 226, 0.16);
  border-radius: 999px;
  background: rgba(89, 79, 226, 0.09);
  color: #473dca;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.service-type-bulk-action.is-secondary {
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 252, 248, 0.98);
  color: #3a322e;
}

.service-type-bulk-action:hover,
.service-type-bulk-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(89, 79, 226, 0.28);
  box-shadow: 0 16px 28px rgba(89, 79, 226, 0.12);
}

.service-type-bulk-action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.selected-summary {
  min-height: 28px;
  margin-bottom: 14px;
  color: #1b2533;
  font-size: 0.91rem;
  font-weight: 700;
}

.selected-summary.is-empty {
  color: #736d68;
  font-weight: 500;
}

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

.service-type-card {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 12px;
  min-height: 88px;
  padding: 16px 15px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.94), rgba(255, 248, 242, 0.84));
  color: var(--ink);
  text-align: left;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-type-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(108, 76, 245, 0.85), rgba(200, 146, 99, 0.72));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-type-card::after {
  content: '';
  position: absolute;
  inset: -35% auto auto -10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 76, 245, 0.1), transparent 68%);
  opacity: 0.7;
  pointer-events: none;
}

.service-type-card:hover {
  border-color: rgba(89, 79, 226, 0.34);
  box-shadow: 0 18px 34px rgba(89, 79, 226, 0.12);
  transform: translateY(-4px);
}

.service-type-card:hover::before,
.service-type-card.is-selected::before {
  opacity: 1;
}

.service-type-card.is-selected {
  border-color: #594fe2;
  background: linear-gradient(180deg, rgba(89, 79, 226, 0.12), rgba(255, 252, 248, 0.95));
  box-shadow: 0 20px 36px rgba(89, 79, 226, 0.16);
}

.service-type-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(108, 76, 245, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 38%),
    linear-gradient(180deg, rgba(108, 76, 245, 0.1), rgba(108, 76, 245, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.service-type-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #5547d8;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    stroke 180ms ease,
    transform 180ms ease;
}

.service-type-card:hover .service-type-icon,
.service-type-card.is-selected .service-type-icon {
  border-color: rgba(108, 76, 245, 0.3);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 40%),
    linear-gradient(180deg, rgba(108, 76, 245, 0.16), rgba(108, 76, 245, 0.07));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 24px rgba(108, 76, 245, 0.12);
  transform: translateY(-2px) scale(1.04);
}

.service-type-card:hover .service-type-icon svg,
.service-type-card.is-selected .service-type-icon svg {
  stroke: #3f30c5;
  transform: scale(1.06);
}

.service-type-card span:last-child {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.onboarding-service-types-page .onboarding-footer-wide {
  width: min(740px, 100%);
}

.onboarding-service-types-page .onboarding-continue {
  min-width: 132px;
  min-height: 48px;
  font-size: 0.95rem;
}

.account-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 540px;
  margin-top: 42px;
}

.onboarding-language-page .onboarding-main {
  width: min(980px, 100%);
}

.onboarding-language-page .onboarding-copy {
  max-width: 680px;
}

.onboarding-language-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 100%;
}

.onboarding-language-grid .account-type-card {
  min-height: 108px;
}

.onboarding-language-grid .account-type-card span:last-child {
  font-size: 0.94rem;
}

.account-type-card {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 18px;
  min-height: 118px;
  padding: 24px 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.94), rgba(255, 248, 242, 0.84));
  color: var(--ink);
  text-align: left;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.account-type-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(108, 76, 245, 0.85), rgba(200, 146, 99, 0.72));
  opacity: 0;
  transition: opacity 180ms ease;
}

.account-type-card::after {
  content: '';
  position: absolute;
  inset: -35% auto auto -8%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 76, 245, 0.1), transparent 68%);
  opacity: 0.7;
  pointer-events: none;
}

.account-type-card:hover {
  border-color: rgba(89, 79, 226, 0.34);
  box-shadow: 0 18px 34px rgba(89, 79, 226, 0.12);
  transform: translateY(-4px);
}

.account-type-card:hover::before,
.account-type-card.is-selected::before {
  opacity: 1;
}

.account-type-card.is-selected {
  border-color: #594fe2;
  background: linear-gradient(180deg, rgba(89, 79, 226, 0.12), rgba(255, 252, 248, 0.95));
  box-shadow: 0 20px 36px rgba(89, 79, 226, 0.16);
}

.account-type-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(108, 76, 245, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 38%),
    linear-gradient(180deg, rgba(108, 76, 245, 0.1), rgba(108, 76, 245, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.account-type-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #5547d8;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    stroke 180ms ease,
    transform 180ms ease;
}

.account-type-card:hover .account-type-icon,
.account-type-card.is-selected .account-type-icon {
  border-color: rgba(108, 76, 245, 0.3);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 40%),
    linear-gradient(180deg, rgba(108, 76, 245, 0.16), rgba(108, 76, 245, 0.07));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 24px rgba(108, 76, 245, 0.12);
  transform: translateY(-2px) scale(1.04);
}

.account-type-card:hover .account-type-icon svg,
.account-type-card.is-selected .account-type-icon svg {
  stroke: #3f30c5;
  transform: scale(1.06);
}

.account-type-card span:last-child {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
}

.location-option-grid {
  display: grid;
  gap: 16px;
  max-width: 610px;
  margin-top: 42px;
}

.location-option-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 0 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.94), rgba(255, 248, 242, 0.84));
  color: var(--ink);
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.location-option-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(108, 76, 245, 0.85), rgba(200, 146, 99, 0.72));
  opacity: 0;
  transition: opacity 180ms ease;
}

.location-option-card::after {
  content: '';
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(108, 76, 245, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.95);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.location-option-card:hover {
  border-color: rgba(89, 79, 226, 0.34);
  box-shadow: 0 18px 34px rgba(89, 79, 226, 0.12);
  transform: translateY(-4px);
}

.location-option-card:hover::before,
.location-option-card.is-selected::before {
  opacity: 1;
}

.location-option-card:hover::after {
  border-color: rgba(108, 76, 245, 0.34);
  transform: scale(1.06);
}

.location-option-card.is-selected {
  border-color: #594fe2;
  background: linear-gradient(180deg, rgba(89, 79, 226, 0.12), rgba(255, 252, 248, 0.95));
  box-shadow: 0 20px 36px rgba(89, 79, 226, 0.16);
}

.location-option-card.is-selected::after {
  border-color: #594fe2;
  background: #594fe2;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.venue-location-copy {
  max-width: 720px;
}

.venue-location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: 38px;
  align-items: start;
  margin-top: 36px;
}

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

.venue-address-card {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(89, 79, 226, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 242, 0.9));
  box-shadow: 0 24px 42px rgba(115, 92, 82, 0.1);
  overflow: hidden;
}

.venue-address-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #594fe2, rgba(200, 146, 99, 0.85));
}

.venue-address-copy {
  display: grid;
  gap: 10px;
  max-width: 540px;
}

.venue-address-copy strong {
  font-size: 1.16rem;
  letter-spacing: -0.04em;
}

.venue-address-copy span {
  color: #655f59;
  line-height: 1.6;
}

.venue-search-shell {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 184px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 246, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 30px rgba(115, 92, 82, 0.08);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.venue-search-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(89, 79, 226, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.venue-search-shell:hover,
.venue-search-shell:focus-within {
  transform: translateY(-2px);
  border-color: rgba(89, 79, 226, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 22px 40px rgba(89, 79, 226, 0.12);
}

.venue-search-shell:hover::before,
.venue-search-shell:focus-within::before {
  opacity: 1;
}

.venue-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 16px;
  color: #4f4bdb;
  background: rgba(89, 79, 226, 0.1);
  box-shadow: inset 0 0 0 1px rgba(89, 79, 226, 0.08);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.venue-search-shell:hover .venue-search-icon,
.venue-search-shell:focus-within .venue-search-icon {
  transform: translateY(-1px) scale(1.03);
  background: rgba(89, 79, 226, 0.14);
  box-shadow: inset 0 0 0 1px rgba(89, 79, 226, 0.16);
}

.venue-search-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.venue-search-shell input,
.venue-search-shell textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.venue-search-shell textarea {
  min-height: 140px;
  resize: vertical;
  font: inherit;
  line-height: 1.6;
}

.venue-search-shell input::placeholder,
.venue-search-shell textarea::placeholder {
  color: #7f7770;
}

.venue-location-actions {
  display: grid;
  gap: 12px;
}

.venue-current-location-button {
  width: fit-content;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(89, 79, 226, 0.16);
  border-radius: 999px;
  background: rgba(89, 79, 226, 0.08);
  color: #473dca;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.venue-current-location-button:hover,
.venue-current-location-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(89, 79, 226, 0.28);
  background: rgba(89, 79, 226, 0.14);
  box-shadow: 0 16px 30px rgba(89, 79, 226, 0.12);
}

.venue-current-location-button.is-loading {
  opacity: 0.78;
  pointer-events: none;
}

.venue-location-status {
  margin: 0;
  color: #675f84;
  font-size: 0.92rem;
  line-height: 1.55;
}

.venue-search-results-panel {
  display: grid;
  gap: 14px;
}

.venue-search-results-copy {
  display: grid;
  gap: 6px;
}

.venue-search-results-copy strong {
  font-size: 0.98rem;
}

.venue-search-results-copy span {
  color: #6d6762;
  font-size: 0.92rem;
  line-height: 1.55;
}

.venue-address-guidance {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(255, 250, 245, 0.82));
}

.venue-address-guidance strong {
  font-size: 0.98rem;
}

.venue-address-guidance p {
  margin: 0;
  color: #6d6762;
  font-size: 0.92rem;
  line-height: 1.55;
}

.venue-search-results {
  display: grid;
  gap: 12px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(89, 79, 226, 0.3) transparent;
}

.venue-search-result {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 6px;
  padding: 18px 56px 18px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 246, 0.88));
  text-align: left;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.venue-search-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #594fe2, rgba(89, 79, 226, 0.16));
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.venue-search-result::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(89, 79, 226, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 4px transparent;
  transform: translateY(-50%);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.venue-search-result strong {
  font-size: 1rem;
  font-weight: 700;
}

.venue-search-result span {
  color: #5d5752;
  line-height: 1.45;
}

.venue-search-result:hover {
  border-color: rgba(89, 79, 226, 0.26);
  box-shadow: 0 18px 30px rgba(89, 79, 226, 0.12);
  transform: translateY(-3px);
}

.venue-search-result:hover::before,
.venue-search-result.is-selected::before {
  opacity: 1;
  transform: translateY(0);
}

.venue-search-result.is-selected {
  border-color: #594fe2;
  background: linear-gradient(180deg, rgba(89, 79, 226, 0.12), rgba(255, 252, 248, 0.94));
  box-shadow: 0 22px 34px rgba(89, 79, 226, 0.16);
}

.venue-search-result.is-selected::after {
  border-color: #594fe2;
  background: #594fe2;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.selected-venue-card {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(89, 79, 226, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 246, 0.9));
  box-shadow: 0 20px 34px rgba(115, 92, 82, 0.08);
  overflow: hidden;
}

.selected-venue-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #594fe2, #857bf4);
}

.selected-venue-label {
  margin: 0 0 10px;
  color: #5f5953;
  font-size: 0.92rem;
  font-weight: 700;
}

.selected-venue-address {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.selected-venue-edit {
  min-width: 110px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.9);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.selected-venue-edit:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 79, 226, 0.28);
  background: rgba(89, 79, 226, 0.08);
  box-shadow: 0 14px 24px rgba(89, 79, 226, 0.12);
}

.map-confirm-copy {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(89, 79, 226, 0.08), transparent 34%),
    rgba(255, 252, 248, 0.9);
}

.map-confirm-copy strong {
  font-size: 1rem;
}

.map-confirm-copy span {
  color: #6d6762;
  font-size: 0.92rem;
}

.venue-map-card {
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 246, 0.86));
  box-shadow: 0 24px 44px rgba(115, 92, 82, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.venue-map-card:hover {
  transform: translateY(-3px);
  border-color: rgba(89, 79, 226, 0.16);
  box-shadow: 0 28px 50px rgba(89, 79, 226, 0.12);
}

.map-surface {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 482px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.55), transparent 16%),
    linear-gradient(180deg, #dce9df 0%, #d1e2d8 36%, #cfe0e6 100%);
}

.map-road,
.map-park,
.map-water,
.map-block {
  position: absolute;
}

.map-road {
  background: rgba(252, 247, 239, 0.96);
  box-shadow: inset 0 0 0 1px rgba(98, 93, 86, 0.04);
}

.map-road-a {
  top: 10%;
  left: -10%;
  width: 70%;
  height: 48px;
  transform: rotate(-18deg);
}

.map-road-b {
  top: 42%;
  right: -14%;
  width: 84%;
  height: 52px;
  transform: rotate(12deg);
}

.map-road-c {
  top: 22%;
  left: 42%;
  width: 48px;
  height: 80%;
  transform: rotate(6deg);
}

.map-road-d {
  bottom: 10%;
  left: 4%;
  width: 54%;
  height: 42px;
  transform: rotate(-8deg);
}

.map-park {
  border-radius: 28px;
  background: rgba(130, 177, 120, 0.34);
}

.map-park-a {
  top: 12%;
  right: 10%;
  width: 28%;
  height: 18%;
}

.map-park-b {
  bottom: 10%;
  left: 10%;
  width: 30%;
  height: 16%;
}

.map-water {
  top: 56%;
  left: 62%;
  width: 28%;
  height: 18%;
  border-radius: 40px;
  background: rgba(116, 173, 214, 0.36);
}

.map-block {
  border-radius: 14px;
  background: rgba(228, 214, 194, 0.94);
  box-shadow: inset 0 0 0 1px rgba(108, 95, 84, 0.06);
}

.map-block-a {
  top: 18%;
  left: 14%;
  width: 18%;
  height: 16%;
}

.map-block-b {
  top: 28%;
  left: 58%;
  width: 16%;
  height: 14%;
}

.map-block-c {
  top: 52%;
  left: 18%;
  width: 22%;
  height: 16%;
}

.map-block-d {
  top: 62%;
  right: 14%;
  width: 18%;
  height: 14%;
}

.map-block-e {
  bottom: 14%;
  left: 46%;
  width: 20%;
  height: 16%;
}

.map-block-f {
  bottom: 24%;
  left: 8%;
  width: 18%;
  height: 12%;
}

.map-pin {
  position: absolute;
  top: 46%;
  left: 52%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
}

.map-pin::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(180deg, #4f4bdb, #2d2aa5);
  transform: rotate(-45deg);
  box-shadow: 0 14px 26px rgba(53, 48, 171, 0.24);
}

.map-pin-dot {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 1;
}

.map-label {
  position: absolute;
  top: calc(46% + 32px);
  left: 52%;
  transform: translateX(-50%);
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(18, 25, 37, 0.9);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 40px;
  white-space: nowrap;
}

.venue-map-summary {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 10px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(255, 249, 244, 0.92));
  box-shadow: 0 18px 28px rgba(31, 26, 23, 0.08);
}

.venue-map-summary-eyebrow {
  margin: 0;
  color: #5b53d8;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venue-map-summary strong {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.venue-map-summary-copy {
  margin: 0;
  color: #655f59;
  line-height: 1.6;
}

.onboarding-complete-page {
  display: grid;
  place-items: center;
  padding: 40px 22px;
}

.onboarding-complete-shell {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  width: min(100%, 720px);
  padding: 44px 34px 40px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(89, 79, 226, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 246, 0.92));
  box-shadow: 0 30px 56px rgba(115, 92, 82, 0.12);
  overflow: hidden;
}

.onboarding-complete-shell::before {
  content: '';
  position: absolute;
  inset: auto -60px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 79, 226, 0.12), transparent 68%);
  pointer-events: none;
}

.onboarding-complete-eyebrow {
  margin: 0;
}

.onboarding-complete-badge {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(180deg, #9b47ea, #7a34d1);
  box-shadow: 0 18px 36px rgba(122, 52, 209, 0.22);
  animation: onboardingCompletePop 700ms ease;
}

.onboarding-complete-badge svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.onboarding-complete-shell h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.onboarding-complete-copy {
  margin: 0;
  max-width: 540px;
  color: #544f4b;
  font-size: 1.02rem;
  line-height: 1.7;
}

.onboarding-complete-subcopy {
  margin: -6px 0 0;
  color: #6d6762;
  font-size: 0.95rem;
  font-weight: 700;
}

.onboarding-complete-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.launch-links-shell {
  position: relative;
  display: grid;
  gap: 22px;
  width: min(100%, 920px);
  padding: 44px 34px 40px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(89, 79, 226, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 246, 0.92));
  box-shadow: 0 30px 56px rgba(115, 92, 82, 0.12);
  overflow: hidden;
}

.launch-links-shell::before {
  content: '';
  position: absolute;
  inset: auto -60px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 79, 226, 0.12), transparent 68%);
  pointer-events: none;
}

.launch-links-shell h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

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

.launch-link-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.92);
  box-shadow: 0 18px 30px rgba(115, 92, 82, 0.08);
}

.launch-link-card-qr {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 188px;
  align-items: center;
}

.launch-link-card-copy {
  display: grid;
  gap: 10px;
}

.launch-link-label {
  margin: 0;
  color: #5b53d8;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-link-card strong {
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.launch-link-value {
  color: #473ed0;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.6;
  word-break: break-all;
}

.launch-qr-preview {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #ffffff;
}

.launch-qr-preview img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.onboarding-complete-highlights span {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.88);
  color: #534f4b;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 38px;
  box-shadow: 0 10px 20px rgba(115, 92, 82, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.onboarding-complete-highlights span:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 79, 226, 0.22);
  box-shadow: 0 14px 24px rgba(89, 79, 226, 0.1);
}

.onboarding-complete-done {
  min-width: 164px;
  margin-top: 6px;
}

@keyframes onboardingCompletePop {
  0% {
    opacity: 0;
    transform: scale(0.84) translateY(10px);
  }

  70% {
    opacity: 1;
    transform: scale(1.04) translateY(0);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.calendar-page {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 18%),
    linear-gradient(180deg, #ead7ca 0%, #f3e5dc 52%, #f8efe9 100%);
}

.calendar-sidebar {
  position: relative;
  z-index: 8;
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 28px 18px 24px;
  background:
    linear-gradient(180deg, #151d2a 0%, #101722 100%);
  color: #ffffff;
  box-shadow: 14px 0 30px rgba(16, 23, 34, 0.16);
  overflow: visible;
}

.calendar-sidebar::before {
  content: '';
  position: absolute;
  inset: -40px -50px auto auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 76, 245, 0.18), transparent 68%);
  pointer-events: none;
}

.calendar-brand {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.calendar-nav {
  display: grid;
  gap: 14px;
}

.calendar-side-icon,
.calendar-top-icon,
.calendar-round-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.calendar-side-icon {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  overflow: visible;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.calendar-side-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 76, 245, 0.22), transparent 48%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.calendar-side-icon.is-active {
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  box-shadow: 0 14px 28px rgba(86, 54, 232, 0.3);
}

.calendar-side-icon:hover,
.calendar-top-icon:hover,
.calendar-round-button:hover {
  transform: translateY(-2px);
}

.calendar-side-icon[aria-label]::after,
.calendar-top-icon[aria-label]::after,
.calendar-round-button[aria-label]::after {
  content: attr(aria-label);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  z-index: 60;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(28, 24, 22, 0.94);
  color: #fff8f1;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) translateX(-6px);
  box-shadow: 0 12px 24px rgba(12, 10, 9, 0.24);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.calendar-top-icon[aria-label]::after,
.calendar-round-button[aria-label]::after {
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%) translateY(-6px);
}

.calendar-side-icon[aria-label]:hover::after,
.calendar-side-icon[aria-label]:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.calendar-top-icon[aria-label]:hover::after,
.calendar-top-icon[aria-label]:focus-visible::after,
.calendar-round-button[aria-label]:hover::after,
.calendar-round-button[aria-label]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.calendar-side-icon:hover,
.calendar-side-icon:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 28px rgba(5, 9, 18, 0.24);
  color: #ffffff;
}

.calendar-side-icon:hover::before,
.calendar-side-icon:focus-visible::before,
.calendar-side-icon.is-active::before {
  opacity: 1;
}

.calendar-side-icon svg,
.calendar-top-icon svg,
.calendar-round-button svg,
.calendar-setup-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.calendar-side-icon:hover svg,
.calendar-side-icon:focus-visible svg,
.calendar-top-icon:hover svg,
.calendar-top-icon:focus-visible svg,
.calendar-round-button:hover svg,
.calendar-round-button:focus-visible svg {
  transform: scale(1.06);
}

.calendar-main {
  --calendar-side-drawer-top: 0px;
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 18px 18px 20px 0;
}

.calendar-topbar,
.calendar-toolbar,
.calendar-board {
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.88), rgba(248, 239, 233, 0.84));
  box-shadow: var(--shadow-soft);
}

.calendar-topbar,
.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
}

.calendar-topbar {
  border-radius: 24px 24px 0 0;
}

.calendar-toolbar {
  border-top: 0;
  border-bottom: 0;
}

.calendar-top-actions,
.calendar-toolbar-left,
.calendar-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calendar-toolbar-right {
  position: relative;
}

.calendar-top-spacer {
  flex: 1 1 auto;
}

.calendar-setup-button,
.calendar-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
}

.calendar-setup-button {
  gap: 10px;
  padding: 0 20px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 24px rgba(108, 76, 245, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.calendar-setup-button:hover,
.calendar-setup-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(108, 76, 245, 0.28);
  filter: saturate(1.04);
}

.calendar-setup-button:hover .calendar-setup-icon svg,
.calendar-setup-button:focus-visible .calendar-setup-icon svg {
  transform: rotate(-8deg) scale(1.08);
}

.calendar-setup-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.calendar-top-icon,
.calendar-round-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.82);
  color: #342f2b;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.calendar-top-icon {
  position: relative;
}

.calendar-top-icon:hover,
.calendar-top-icon:focus-visible,
.calendar-round-button:hover,
.calendar-round-button:focus-visible {
  border-color: rgba(108, 76, 245, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 238, 255, 0.88));
  box-shadow: 0 14px 24px rgba(108, 76, 245, 0.12);
  color: #4439bf;
}

.calendar-round-button.is-active {
  border-color: rgba(31, 51, 93, 0.12);
  background: linear-gradient(180deg, #284172, #1f335d);
  box-shadow: 0 14px 24px rgba(31, 51, 93, 0.18);
  color: #ffffff;
}

.calendar-round-button.is-active:hover,
.calendar-round-button.is-active:focus-visible {
  color: #ffffff;
}

.calendar-notification-badge {
  position: absolute;
  top: -4px;
  right: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #c14b48;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.calendar-user-avatar,
.calendar-staff-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  text-transform: lowercase;
}

.calendar-user-avatar {
  width: 44px;
  height: 44px;
  color: #fff7ee;
  background: #35527e;
  box-shadow:
    0 10px 22px rgba(53, 82, 126, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.calendar-user-avatar:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 16px 28px rgba(53, 82, 126, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  filter: saturate(1.04);
}

.calendar-chip,
.calendar-date-chip,
.calendar-view-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 999px;
  background: rgba(247, 237, 230, 0.76);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.calendar-date-chip {
  gap: 10px;
  min-width: 188px;
  cursor: pointer;
}

.calendar-view-chip {
  min-width: 80px;
}

.calendar-chip:hover,
.calendar-chip:focus-visible,
.calendar-date-chip:hover,
.calendar-date-chip:focus-visible,
.calendar-view-chip:hover,
.calendar-view-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(108, 76, 245, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 238, 255, 0.84));
  box-shadow: 0 14px 24px rgba(108, 76, 245, 0.1);
  color: #4439bf;
}

.calendar-date-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calendar-date-chip-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-date-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.calendar-add-button {
  gap: 10px;
  min-width: 88px;
  padding: 0 20px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, #2f3554, #1f2438);
  box-shadow: 0 12px 24px rgba(31, 36, 56, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.calendar-add-button:hover,
.calendar-add-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(31, 36, 56, 0.24);
  filter: saturate(1.04);
}

.calendar-add-wrap {
  position: relative;
}

.calendar-add-chevron {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.calendar-add-chevron svg,
.calendar-add-item-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-add-button[aria-expanded='true'] .calendar-add-chevron {
  transform: rotate(180deg);
}

.calendar-add-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 2px;
  width: 300px;
  max-height: 352px;
  padding: 16px;
  overflow-y: auto;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 24px 46px rgba(41, 43, 53, 0.16);
}

.calendar-add-menu.is-hidden {
  display: none;
}

.calendar-add-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 10px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #383533;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.calendar-add-item:hover {
  transform: translateX(3px);
  background: var(--primary-soft);
  color: #342bb1;
  box-shadow: inset 0 0 0 1px rgba(108, 76, 245, 0.08);
}

.calendar-add-item-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #6f6a66;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.calendar-add-item:hover .calendar-add-item-icon {
  transform: scale(1.08);
  color: #4f46d8;
}

.calendar-board {
  --calendar-slot-count: 8;
  min-height: calc(100vh - 162px);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.calendar-side-drawer {
  position: absolute;
  top: var(--calendar-side-drawer-top);
  left: 0;
  bottom: 20px;
  z-index: 24;
  width: min(340px, calc(100% - 18px));
  padding: 46px 30px 28px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 20px 0 38px rgba(38, 41, 53, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.calendar-main[data-side-drawer='sales'] .calendar-sales-panel,
.calendar-main[data-side-drawer='clients'] .calendar-clients-panel,
.calendar-main[data-side-drawer='catalog'] .calendar-catalog-panel,
.calendar-main[data-side-drawer='team'] .calendar-team-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.calendar-reports-view {
  display: none;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  margin-top: 18px;
  min-height: calc(100vh - 180px);
}

.calendar-main[data-main-view='reports'] .calendar-reports-view {
  display: grid;
}

.calendar-main[data-main-view='reports'] .calendar-toolbar,
.calendar-main[data-main-view='reports'] .calendar-board {
  display: none;
}

.calendar-reports-sidebar,
.calendar-reports-main {
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.96);
}

.calendar-reports-sidebar {
  padding: 28px 20px 24px;
}

.calendar-reports-sidebar h2,
.calendar-reports-header h1 {
  margin: 0;
  color: #232220;
  letter-spacing: -0.05em;
}

.calendar-reports-sidebar h2 {
  font-size: 2rem;
}

.calendar-reports-menu {
  display: grid;
  gap: 6px;
  margin-top: 20px;
}

.calendar-reports-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #4b4845;
  font-weight: 700;
  text-align: left;
}

.calendar-reports-menu-item.is-active {
  background: rgba(122, 145, 243, 0.16);
}

.calendar-reports-count,
.calendar-reports-total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  color: #595652;
  font-size: 0.9rem;
  font-weight: 800;
}

.calendar-reports-folder-block {
  margin-top: 34px;
}

.calendar-reports-folder-block h3 {
  margin: 0;
  color: #2d2a27;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.calendar-reports-folder-action {
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #746ce6;
  font-weight: 700;
}

.calendar-reports-folder-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.calendar-reports-folder-item {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 12px;
  background: rgba(255, 251, 246, 0.92);
  color: #4f4945;
  text-align: left;
  font-weight: 700;
}

.calendar-reports-folder-item.is-active {
  background: rgba(31, 51, 93, 0.1);
  border-color: rgba(31, 51, 93, 0.16);
  color: #1f335d;
}

.calendar-reports-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: #4b4845;
  font-weight: 700;
}

.calendar-reports-connector-dot {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #8fd36c;
}

.calendar-reports-main {
  padding: 26px 28px 24px;
}

.calendar-reports-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.calendar-reports-header h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
}

.calendar-reports-header p {
  margin: 8px 0 0;
  color: #67625e;
  font-size: 1rem;
}

.calendar-reports-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.calendar-reports-summary-card {
  display: grid;
  gap: 8px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(18, 18, 18, 0.07);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(248, 241, 235, 0.94));
  box-shadow: 0 16px 30px rgba(33, 28, 23, 0.06);
}

button.calendar-reports-summary-card {
  width: 100%;
  text-align: left;
}

.calendar-reports-summary-card.is-interactive {
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.calendar-reports-summary-card.is-interactive:hover,
.calendar-reports-summary-card.is-interactive:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(31, 51, 93, 0.16);
  box-shadow: 0 20px 34px rgba(33, 28, 23, 0.1);
}

.calendar-reports-summary-label {
  color: #6f6963;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calendar-reports-summary-value {
  color: #22201d;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.05em;
}

.calendar-reports-summary-meta {
  color: #5f5954;
  font-weight: 700;
}

.calendar-reports-summary-chart {
  height: 48px;
}

.calendar-reports-summary-chart svg {
  width: 100%;
  height: 100%;
}

.calendar-reports-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}

.calendar-reports-workspace-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.calendar-reports-range,
.calendar-reports-actions-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.calendar-reports-range-chip,
.calendar-reports-workspace-action {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.95);
  color: #4b4845;
  font-weight: 800;
}

.calendar-reports-range-chip.is-active,
.calendar-reports-workspace-action.is-primary {
  background: #1f335d;
  border-color: #1f335d;
  color: #ffffff;
}

.calendar-reports-search {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 999px;
  background: #fffaf3;
}

.calendar-reports-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #282624;
  font-size: 1rem;
}

.calendar-reports-search-icon,
.calendar-report-card-icon,
.calendar-report-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calendar-reports-search-icon,
.calendar-report-card-icon {
  width: 22px;
  height: 22px;
  color: #6f6b66;
}

.calendar-reports-search-icon svg,
.calendar-report-card-icon svg,
.calendar-report-card-action svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-reports-filters {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calendar-reports-filter {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.95);
  color: #4b4845;
  font-weight: 700;
}

.calendar-reports-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-bottom: 18px;
  overflow-x: auto;
}

.calendar-reports-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5b5652;
  font-weight: 700;
  white-space: nowrap;
}

.calendar-reports-tab.is-active {
  color: #ffffff;
  background: #1f335d;
}

.calendar-reports-cards {
  display: grid;
  gap: 14px;
}

.calendar-report-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  padding: 0 18px;
  border: 1px solid rgba(18, 18, 18, 0.07);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.92);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.calendar-report-card:hover,
.calendar-report-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 51, 93, 0.16);
  box-shadow: 0 16px 30px rgba(31, 51, 93, 0.08);
}

.calendar-report-card-copy strong {
  display: block;
  color: #262421;
  font-size: 1.08rem;
}

.calendar-report-card-copy p {
  margin: 6px 0 0;
  color: #7a736d;
}

.calendar-report-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.calendar-report-card-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(243, 235, 228, 0.92);
  color: #5d5650;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calendar-report-card-pill.is-premium {
  background: rgba(31, 51, 93, 0.12);
  color: #1f335d;
}

.calendar-report-card-pill.is-custom {
  background: rgba(17, 101, 73, 0.12);
  color: #116549;
}

.calendar-report-card-pill.is-target {
  background: rgba(161, 88, 22, 0.14);
  color: #8b4a14;
}

.calendar-report-card-summary {
  display: block;
  margin-top: 10px;
  color: #433f3b;
  font-weight: 700;
}

.calendar-report-card-action {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #86807a;
}

.calendar-report-card-action.is-active {
  color: #c08c1b;
}

.calendar-side-drawer h2 {
  margin: 0;
  color: #202020;
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.calendar-drawer-links {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.calendar-drawer-link {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: #4e4b48;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.calendar-drawer-link-with-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calendar-drawer-link-meta {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7a77ea;
}

.calendar-drawer-link:hover {
  color: #1f335d;
}

.calendar-drawer-link-copy {
  display: grid;
  gap: 4px;
}

.calendar-drawer-link-copy strong,
.calendar-drawer-link-copy small {
  display: block;
}

.calendar-drawer-link-copy small {
  color: #7a736d;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
}

.calendar-drawer-section {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.calendar-drawer-section h3 {
  margin: 0;
  color: #2c2a28;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.calendar-staff-row {
  display: flex;
  justify-content: center;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.calendar-staff-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 10px 18px 12px;
  border-radius: 22px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.calendar-staff-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 28px rgba(115, 92, 82, 0.08);
}

.calendar-staff-avatar {
  width: 72px;
  height: 72px;
  border: 3px solid #e4efe6;
  color: #f8fbf7;
  background: #36517d;
  box-shadow: 0 0 0 3px #2e4532 inset;
  font-size: 2rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.calendar-staff-card:hover .calendar-staff-avatar {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 16px 28px rgba(53, 82, 126, 0.2),
    0 0 0 3px #2e4532 inset;
  filter: saturate(1.05);
}

.calendar-staff-card strong {
  font-size: 1rem;
}

.calendar-grid-wrap {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  min-height: calc(100vh - 296px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 248, 242, 0.28));
}

.calendar-times {
  display: grid;
  grid-template-rows: repeat(var(--calendar-slot-count, 8), minmax(88px, 1fr));
  padding-top: 14px;
  color: #231f1d;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.calendar-times span {
  padding-top: 10px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  transition: color 180ms ease;
}

.calendar-grid {
  position: relative;
  display: grid;
  grid-template-rows: repeat(var(--calendar-slot-count, 8), minmax(88px, 1fr));
  border-left: 1px solid rgba(18, 18, 18, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(249, 240, 233, 0.64));
}

.calendar-slot {
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 24%);
  transition: background-color 180ms ease;
}

.calendar-slot:hover {
  background-color: rgba(108, 76, 245, 0.04);
}

.calendar-now-line {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  height: 1px;
  background: #c14b48;
  box-shadow: 0 0 0 1px rgba(193, 75, 72, 0.08);
}

.calendar-now-badge {
  position: absolute;
  top: -14px;
  left: -48px;
  min-width: 52px;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid #c14b48;
  border-radius: 999px;
  color: #9d2825;
  background: #f5e5e0;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 26px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(193, 75, 72, 0.12);
}

.calendar-appointments-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(var(--calendar-slot-count, 8), minmax(88px, 1fr));
  padding: 0 18px;
  pointer-events: none;
}

.calendar-grid-appointment {
  position: relative;
  display: grid;
  gap: 6px;
  align-self: center;
  max-width: 320px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 51, 93, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(47, 79, 143, 0.94), rgba(35, 58, 104, 0.94));
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(34, 54, 92, 0.18);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.calendar-grid-appointment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14px;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18));
  opacity: 0.9;
}

.calendar-grid-appointment:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 32px rgba(34, 54, 92, 0.24);
  filter: saturate(1.04);
}

.calendar-grid-appointment strong,
.calendar-grid-appointment p {
  margin: 0;
}

.calendar-grid-appointment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.calendar-grid-appointment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.calendar-grid-appointment-time {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.calendar-grid-appointment p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.calendar-appointments-panel {
  display: grid;
  gap: 18px;
  padding: 24px 24px 28px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.94), rgba(252, 245, 239, 0.88));
}

.calendar-appointments-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.calendar-appointments-header h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.calendar-appointments-header p {
  margin: 8px 0 0;
  color: #5f5954;
}

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

.calendar-overview-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 20px;
  background: rgba(255, 252, 248, 0.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.calendar-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #594fe2, rgba(89, 79, 226, 0.14));
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.calendar-overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 76, 245, 0.16);
  box-shadow: 0 20px 32px rgba(108, 76, 245, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 255, 0.86));
}

.calendar-overview-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.calendar-overview-card span,
.calendar-overview-card small {
  color: #6a635d;
}

.calendar-overview-card span {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.calendar-overview-card strong {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.calendar-overview-card small {
  line-height: 1.5;
}

.calendar-booking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f335d;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.calendar-booking-link:hover,
.calendar-booking-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(31, 51, 93, 0.18);
  background: linear-gradient(180deg, #284172, #1f335d);
}

.calendar-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.calendar-filter-chip {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.95);
  color: #4b4845;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.calendar-filter-chip:hover,
.calendar-filter-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(108, 76, 245, 0.16);
  background: rgba(244, 238, 255, 0.92);
  box-shadow: 0 12px 22px rgba(108, 76, 245, 0.08);
  color: #4439bf;
}

.calendar-filter-chip.is-active,
.calendar-reports-filter.is-active {
  color: #ffffff;
  background: #1f335d;
  border-color: #1f335d;
}

.calendar-appointments-list {
  display: grid;
  gap: 14px;
}

.calendar-appointment-card,
.calendar-appointment-empty {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.calendar-appointment-card::before,
.calendar-appointment-empty::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(89, 79, 226, 0.82), rgba(133, 123, 244, 0.36));
  opacity: 0.72;
}

.calendar-appointment-card:hover,
.calendar-appointment-empty:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 76, 245, 0.14);
  box-shadow: 0 20px 32px rgba(108, 76, 245, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 246, 255, 0.88));
}

.calendar-appointment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calendar-appointment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(89, 79, 226, 0.12);
  color: #4d45c7;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(89, 79, 226, 0.06);
}

.calendar-appointment-badge.is-completed {
  background: rgba(73, 164, 113, 0.14);
  color: #216040;
}

.calendar-appointment-badge.is-cancelled {
  background: rgba(177, 71, 71, 0.14);
  color: #8f2e2e;
}

.calendar-appointment-badge.is-booked {
  background: rgba(108, 76, 245, 0.12);
  color: #4d45c7;
}

.calendar-appointment-service,
.calendar-appointment-meta,
.calendar-appointment-empty p {
  margin: 8px 0 0;
}

.calendar-appointment-service {
  font-weight: 700;
}

.calendar-appointment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.calendar-appointment-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.calendar-appointment-source {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(31, 51, 93, 0.08);
  color: #34486f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(31, 51, 93, 0.06);
}

.calendar-appointment-meta,
.calendar-appointment-empty p {
  color: #655f59;
}

.calendar-board-agenda .calendar-grid-wrap {
  grid-template-columns: 1fr;
}

.calendar-board-agenda .calendar-times,
.calendar-board-agenda .calendar-now-line {
  display: none;
}

.calendar-board-agenda .calendar-grid {
  border-left: 0;
}

.calendar-board-agenda .calendar-appointments-overlay {
  position: static;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-template-rows: none;
  gap: 12px;
  padding: 18px;
  pointer-events: auto;
}

.calendar-board-agenda .calendar-grid-appointment {
  max-width: none;
  min-height: 108px;
}

.calendar-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(19, 24, 39, 0.45);
  backdrop-filter: blur(6px);
}

.calendar-qr-dialog {
  width: min(560px, 100%);
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 28px 54px rgba(29, 34, 48, 0.22);
}

.calendar-qr-header,
.calendar-qr-body {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.calendar-qr-eyebrow {
  margin: 0 0 8px;
  color: #5d5574;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calendar-qr-header h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.calendar-qr-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 50%;
  background: rgba(247, 237, 230, 0.8);
}

.calendar-qr-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-qr-body {
  margin-top: 22px;
  align-items: center;
}

.calendar-qr-body img {
  width: 240px;
  height: 240px;
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(18, 18, 18, 0.06);
}

.calendar-qr-copy {
  display: grid;
  gap: 16px;
}

.calendar-qr-copy p {
  margin: 0;
  color: #5c5651;
  line-height: 1.6;
}

.calendar-tool-modal {
  position: fixed;
  inset: 0;
  z-index: 81;
  display: grid;
  place-items: start center;
  padding: 24px;
  background: rgba(19, 24, 39, 0.42);
  backdrop-filter: blur(6px);
  overflow-y: auto;
}

.calendar-tool-dialog {
  width: min(520px, 100%);
  max-height: min(calc(100vh - 48px), 900px);
  margin: auto 0;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 28px 54px rgba(29, 34, 48, 0.22);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.calendar-tool-dialog.calendar-tool-dialog-wide {
  width: min(980px, 100%);
}

.calendar-tool-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.calendar-tool-body {
  margin-top: 18px;
  color: #5c5651;
  line-height: 1.6;
}

.calendar-tool-actions {
  display: grid;
  align-items: stretch;
  gap: 12px;
  margin-top: 22px;
}

.calendar-tool-actions > .calendar-tool-action {
  justify-self: start;
}

.calendar-search-results {
  display: grid;
  gap: 12px;
  width: 100%;
}

.calendar-search-result {
  width: 100%;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.92);
  text-align: left;
  color: #2d2a28;
}

.calendar-search-result:hover {
  border-color: rgba(31, 51, 93, 0.22);
  background: rgba(247, 237, 230, 0.94);
}

.calendar-search-result-meta {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a4c10;
}

.calendar-search-result strong,
.calendar-search-result p {
  margin: 0;
}

.calendar-search-result p {
  color: #655f59;
}

.calendar-tool-form {
  display: grid;
  gap: 14px;
  width: min(100%, 420px);
}

.calendar-tool-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.calendar-tool-field {
  display: grid;
  gap: 8px;
  width: 100%;
  color: #4f4a45;
  font-weight: 700;
}

.calendar-tool-field span {
  font-size: 0.92rem;
}

.calendar-tool-field input,
.calendar-tool-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.98);
}

.calendar-role-picker {
  position: relative;
}

.calendar-role-picker-trigger {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.98);
  color: #2d2a28;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.calendar-role-picker.is-open .calendar-role-picker-trigger,
.calendar-role-picker-trigger:hover,
.calendar-role-picker-trigger:focus-visible {
  border-color: rgba(89, 79, 226, 0.28);
  box-shadow: 0 16px 28px rgba(89, 79, 226, 0.12);
  transform: translateY(-1px);
}

.calendar-role-picker-trigger-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: #594fe2;
  transition: transform 180ms ease;
}

.calendar-role-picker.is-open .calendar-role-picker-trigger-icon {
  transform: rotate(180deg);
}

.calendar-role-picker-trigger-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-role-picker-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 24px 44px rgba(29, 34, 48, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.calendar-role-picker.is-open .calendar-role-picker-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.calendar-role-picker-option {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(18, 18, 18, 0.06);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.96);
  color: #2d2a28;
  text-align: left;
  font: inherit;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.calendar-role-picker-option:hover,
.calendar-role-picker-option:focus-visible,
.calendar-role-picker-option.is-selected {
  border-color: rgba(89, 79, 226, 0.22);
  background: rgba(89, 79, 226, 0.1);
  transform: translateX(2px);
}

.calendar-tool-image-preview {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(247, 237, 230, 0.95), rgba(235, 227, 221, 0.96));
  color: #3a342f;
  font-size: 1.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.calendar-tool-file-input {
  display: none;
}

.calendar-tool-submit {
  width: fit-content;
  min-width: 140px;
}

.calendar-tool-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.calendar-notification-item {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.92);
}

.calendar-notification-item strong,
.calendar-notification-item p {
  margin: 0;
}

.calendar-notification-item p {
  margin-top: 6px;
  color: #655f59;
}

.calendar-notification-item .calendar-tool-inline-actions {
  margin-top: 10px;
}

.calendar-notification-read-action {
  min-height: 38px;
  padding: 0 14px;
}

.calendar-client-directory {
  display: grid;
  gap: 18px;
}

.calendar-client-directory-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.calendar-client-directory-metric {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(246, 239, 232, 0.94));
}

.calendar-client-directory-metric-label {
  color: #6b655f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calendar-client-directory-metric-value {
  color: #221f1c;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: -0.04em;
}

.calendar-client-directory-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.96);
}

.calendar-client-directory-search-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: #6a655f;
}

.calendar-client-directory-search-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-client-directory-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #2b2825;
  font-size: 0.98rem;
}

.calendar-client-directory-helper {
  margin: -4px 0 0;
  color: #645e58;
}

.calendar-client-directory-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calendar-client-directory-card,
.calendar-client-directory-empty {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(246, 239, 232, 0.95));
  box-shadow: 0 16px 28px rgba(33, 28, 23, 0.06);
}

.calendar-client-directory-card-header {
  display: grid;
  gap: 10px;
}

.calendar-client-directory-card-identity {
  display: grid;
  gap: 4px;
}

.calendar-client-directory-card-identity strong,
.calendar-client-directory-card-identity p,
.calendar-client-directory-empty strong,
.calendar-client-directory-empty p {
  margin: 0;
}

.calendar-client-directory-card-identity p,
.calendar-client-directory-empty p {
  color: #67615c;
}

.calendar-client-directory-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calendar-client-directory-card-metrics {
  display: grid;
  gap: 10px;
}

.calendar-client-directory-card-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(18, 18, 18, 0.06);
}

.calendar-client-directory-card-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.calendar-client-directory-card-row span {
  color: #6c6661;
  font-size: 0.88rem;
  font-weight: 700;
}

.calendar-client-directory-card-row strong {
  color: #262320;
  font-size: 0.92rem;
  text-align: right;
}

.calendar-client-detail-card {
  display: grid;
  gap: 12px;
}

.calendar-client-detail-header {
  display: grid;
  gap: 4px;
}

.calendar-client-detail-subtitle {
  margin: 0;
  color: #655f59;
  font-size: 0.92rem;
}

.calendar-client-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.calendar-client-detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.calendar-client-detail-badge.is-neutral {
  background: rgba(31, 51, 93, 0.1);
  color: #1f335d;
}

.calendar-client-detail-badge.is-gold {
  background: rgba(168, 94, 20, 0.14);
  color: #8a4c10;
}

.calendar-client-detail-badge.is-green {
  background: rgba(17, 101, 73, 0.14);
  color: #116549;
}

.calendar-client-detail-metrics {
  display: grid;
  gap: 8px;
}

.calendar-client-detail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(247, 237, 230, 0.76);
}

.calendar-client-detail-row span {
  color: #655f59;
  font-size: 0.9rem;
}

.calendar-client-detail-row strong {
  text-align: right;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.calendar-team-member-card {
  display: grid;
  gap: 12px;
}

.calendar-team-member-card .calendar-tool-inline-actions {
  margin-top: 2px;
}

.calendar-tool-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 999px;
  background: rgba(247, 237, 230, 0.82);
  color: #2d2a28;
  font-weight: 700;
}

.calendar-tool-action:hover {
  background: rgba(31, 51, 93, 0.08);
}

.calendar-tool-action-danger {
  border-color: rgba(148, 44, 44, 0.14);
  color: #8a2f2f;
  background: rgba(255, 239, 239, 0.88);
}

.calendar-tool-action-danger:hover {
  background: rgba(173, 51, 51, 0.12);
}

.booking-page {
  min-height: 100vh;
  padding: 24px;
  background: linear-gradient(180deg, #f6e4ec 0%, #fbf7f1 100%);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(360px, 760px);
  gap: 0;
  justify-content: center;
  width: min(760px, 100%);
  margin: 0 auto;
}

.booking-hero,
.booking-card {
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.9);
  box-shadow: 0 20px 40px rgba(63, 52, 69, 0.08);
}

.booking-hero {
  display: none;
}

.booking-eyebrow {
  margin: 0;
  color: #5d5574;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.booking-hero p {
  margin: 0;
  color: #5d5752;
  font-size: 1rem;
  line-height: 1.5;
}

.booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(89, 79, 226, 0.1);
  color: #4b43c4;
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-card {
  padding: 34px;
}

.booking-trust-card {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.7);
}

.booking-trust-card strong {
  font-size: 1.08rem;
}

.booking-trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #5d5752;
}

.booking-summary-card {
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(89, 79, 226, 0.08), rgba(89, 79, 226, 0.03));
}

.booking-summary-eyebrow {
  margin: 0 0 8px;
  color: #5d5574;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-summary-business-name {
  margin: 0 0 10px;
  color: #21162b;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.booking-summary-card strong,
.booking-summary-card p {
  margin: 0;
}

.booking-summary-card p {
  margin-top: 8px;
  color: #5d5752;
  line-height: 1.6;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-field,
.booking-field-row {
  display: grid;
  gap: 12px;
}

.booking-field.is-hidden {
  display: none;
}

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

.booking-field span {
  font-size: 0.95rem;
  font-weight: 700;
}

.booking-field small {
  color: #6f6964;
  font-size: 0.86rem;
  line-height: 1.5;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.booking-phone-inputs {
  display: grid;
  grid-template-columns: minmax(96px, 132px) minmax(0, 1fr);
  gap: 12px;
}

.booking-field textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
  font: inherit;
}

.booking-submit {
  margin-top: 10px;
}

.booking-success {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(73, 164, 113, 0.12);
  color: #1f5035;
}

.booking-success strong,
.booking-success p {
  margin: 0;
}

.booking-success p {
  margin-top: 8px;
}

.manage-booking-shell {
  align-items: start;
}

.manage-booking-hero {
  position: sticky;
  top: 28px;
}

.manage-booking-card {
  display: grid;
  gap: 18px;
}

.manage-booking-countdown {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(244, 202, 76, 0.26), transparent 42%),
    linear-gradient(145deg, rgba(28, 37, 48, 0.98), rgba(57, 74, 93, 0.94));
  box-shadow: 0 28px 56px rgba(18, 27, 38, 0.22);
  color: #f4f0ea;
  overflow: hidden;
}

.manage-booking-countdown::after {
  content: '';
  position: absolute;
  inset: auto -24px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.manage-booking-countdown-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.manage-booking-countdown-label,
.manage-booking-countdown-copy strong,
.manage-booking-countdown-copy p {
  margin: 0;
}

.manage-booking-countdown-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 240, 234, 0.72);
}

.manage-booking-countdown-copy strong {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.manage-booking-countdown-copy p {
  max-width: 54ch;
  color: rgba(244, 240, 234, 0.8);
}

.manage-booking-countdown-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.manage-booking-countdown-segment {
  display: grid;
  gap: 6px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.manage-booking-countdown-segment strong,
.manage-booking-countdown-segment span {
  margin: 0;
}

.manage-booking-countdown-segment strong {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.manage-booking-countdown-segment span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 240, 234, 0.68);
}

.manage-booking-status {
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.9);
  color: #5c5752;
  font-weight: 700;
  line-height: 1.6;
}

.manage-booking-status.is-info {
  border-color: rgba(89, 79, 226, 0.16);
  background: rgba(89, 79, 226, 0.08);
  color: #473ed0;
}

.manage-booking-status.is-success {
  border-color: rgba(34, 139, 90, 0.18);
  background: rgba(34, 139, 90, 0.1);
  color: #1c6d48;
}

.manage-booking-status.is-warning {
  border-color: rgba(194, 98, 55, 0.18);
  background: rgba(194, 98, 55, 0.1);
  color: #9a4e2c;
}

.manage-booking-status.is-muted {
  background: rgba(120, 113, 108, 0.08);
  color: #6d6762;
}

.manage-booking-form {
  gap: 18px;
}

.manage-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.manage-booking-cancel {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(194, 98, 55, 0.24);
  border-radius: 999px;
  background: rgba(255, 245, 241, 0.92);
  color: #9a4e2c;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.manage-booking-cancel:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(194, 98, 55, 0.34);
  background: rgba(255, 238, 231, 0.98);
  box-shadow: 0 18px 28px rgba(194, 98, 55, 0.14);
}

.manage-booking-cancel:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-reviews-card {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 24px 22px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.8);
}

.booking-history-panel {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.booking-history-panel strong {
  display: block;
}

.booking-history-list {
  display: grid;
  gap: 10px;
}

.booking-history-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 249, 242, 0.92);
}

.booking-history-item p {
  margin: 4px 0 0;
  color: #625c56;
  line-height: 1.5;
}

.booking-reviews-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.booking-reviews-header strong,
.booking-review-summary strong,
.booking-review-item strong,
.booking-review-empty strong {
  display: block;
}

.booking-review-summary {
  text-align: right;
}

.booking-review-summary strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.booking-review-summary span {
  color: #6b655f;
  font-size: 0.92rem;
}

.booking-review-list {
  display: grid;
  gap: 12px;
}

.booking-review-item,
.booking-review-empty {
  padding: 16px 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.booking-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-review-stars {
  color: #c89263;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.booking-review-meta,
.booking-review-item p,
.booking-review-empty p {
  margin: 8px 0 0;
  color: #625c56;
  line-height: 1.55;
}

.booking-review-form {
  display: grid;
  gap: 16px;
  padding-top: 4px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.booking-reviews-header-form {
  justify-content: start;
}

.booking-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-star-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(31, 51, 93, 0.22);
  font-size: clamp(2.1rem, 6vw, 3rem);
  line-height: 1;
  cursor: pointer;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.booking-star-button:hover,
.booking-star-button:focus-visible,
.booking-star-button.is-active {
  color: #f4b544;
}

.booking-star-button:hover,
.booking-star-button:focus-visible {
  transform: translateY(-1px);
}

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

.booking-assurance-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.82);
}

.booking-assurance-card strong {
  font-size: 0.98rem;
}

.booking-assurance-card span {
  color: #665f5a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.is-hidden {
  display: none;
}

.setup-guide-page {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 100vh;
  background: #f6f1eb;
}

.setup-guide-sidebar {
  display: grid;
  align-content: start;
  gap: 34px;
  padding: 28px 18px;
  border-right: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 251, 246, 0.9);
}

.setup-guide-brand {
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.setup-guide-nav {
  display: grid;
  gap: 8px;
}

.setup-guide-nav-link {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #6d6863;
  font-weight: 700;
}

.setup-guide-nav-link.is-active {
  color: #4f5dd4;
  background: rgba(92, 111, 244, 0.1);
}

.setup-guide-nav-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.setup-guide-nav-icon svg,
.setup-guide-item-end svg,
.setup-guide-skip svg,
.setup-guide-help-link svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.setup-guide-main {
  display: grid;
  align-items: start;
  padding: 34px 28px;
}

.setup-guide-panel {
  width: min(620px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 28px;
  background: #fffdfa;
  box-shadow: 0 24px 46px rgba(98, 88, 82, 0.1);
  overflow: hidden;
}

.setup-guide-hero {
  padding: 28px 36px;
  color: #ffffff;
  background: linear-gradient(90deg, #0d66f2, #1f57d6);
}

.setup-guide-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.setup-guide-list {
  display: grid;
  gap: 14px;
  padding: 24px 32px 0;
}

.setup-guide-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 0 24px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 6px;
  background: #ffffff;
  color: #2f2c29;
}

.setup-guide-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid #7ca0e9;
  border-radius: 50%;
  color: #5c82d6;
  font-size: 1.25rem;
  font-weight: 800;
}

.setup-guide-copy {
  font-size: 1.12rem;
  font-weight: 700;
}

.setup-guide-item-end {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: #6c6966;
}

.setup-guide-item-end.is-success {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  color: #ffffff;
  background: #43a15d;
}

.setup-guide-skip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px 32px 0;
  color: #8a847e;
  font-size: 1rem;
  font-weight: 700;
}

.setup-guide-skip svg,
.setup-guide-help-link svg {
  width: 20px;
  height: 20px;
}

.setup-guide-help-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 42px 32px 34px;
  padding: 6px 0 0;
}

.setup-guide-help-copy h2 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.setup-guide-help-copy p {
  max-width: 320px;
  margin: 14px 0 0;
  color: #67615d;
  font-size: 1.02rem;
  line-height: 1.5;
}

.setup-guide-help-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #5d5854;
  font-weight: 700;
}

.setup-guide-help-mark {
  position: relative;
  width: 72px;
  height: 72px;
}

.setup-guide-help-mark span {
  position: absolute;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  transform: rotate(-38deg);
}

.setup-guide-help-mark span:first-child {
  top: 18px;
  left: 10px;
  background: #7562f4;
}

.setup-guide-help-mark span:last-child {
  top: 28px;
  right: 8px;
  background: #bb8ef7;
}

.onboarding-continue-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.business-page {
  min-height: 100vh;
  padding: 22px 30px 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(180deg, #f7dfd6 0%, #f7e3da 48%, #f7ede7 100%);
}

.business-header,
.business-hero {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.business-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 6px;
}

.business-brand {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.business-nav,
.business-actions,
.business-cta-row,
.toolbar-left,
.toolbar-right,
.preview-icons,
.team-row {
  display: flex;
  align-items: center;
}

.business-nav {
  gap: 44px;
  justify-content: center;
}

.business-nav a,
.business-nav-toggle {
  font-weight: 700;
}

.business-nav-item {
  position: relative;
}

.business-nav-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.business-types-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  z-index: 20;
  display: grid;
  gap: 2px;
  width: 380px;
  padding: 16px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.98);
  box-shadow: 0 24px 40px rgba(106, 83, 73, 0.16);
}

.business-types-menu.is-hidden {
  display: none;
}

.business-types-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 700;
}

.business-types-menu a.is-active,
.business-types-menu a:hover {
  background: rgba(16, 16, 16, 0.05);
}

.business-actions {
  gap: 12px;
}

.business-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 999px;
  font-weight: 700;
}

.business-pill.ghost {
  background: rgba(247, 239, 228, 0.72);
}

.business-pill.dark {
  color: var(--white);
  background: #1b2533;
  border-color: #1b2533;
}

.business-menu-button {
  gap: 14px;
}

.business-hero {
  padding-top: 86px;
  text-align: center;
}

.business-copy h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(3rem, 5.6vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.08em;
}

.business-copy p {
  margin: 18px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.5rem);
  color: #3c3835;
}

.business-cta-row {
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.business-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 999px;
  font-weight: 700;
}

.business-cta.primary {
  color: var(--white);
  background: #111827;
}

.business-cta.secondary {
  gap: 10px;
  background: rgba(255, 247, 238, 0.62);
}

.play-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.play-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.software-preview {
  margin-top: 54px;
  display: grid;
  place-items: center;
}

.preview-window {
  width: min(940px, 100%);
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 26px 26px 0 0;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 20px 44px rgba(124, 93, 82, 0.12);
  overflow: hidden;
}

.preview-topbar,
.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-topbar {
  min-height: 58px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.preview-brand {
  font-size: 1.05rem;
  font-weight: 800;
}

.preview-icons {
  gap: 12px;
}

.preview-icons span,
.tiny-icon,
.side-icon {
  display: inline-block;
  background: #e8ddd0;
}

.preview-icons span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.preview-icons .avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(180deg, #c67671, #83443f);
}

.preview-toolbar {
  min-height: 56px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.toolbar-left,
.toolbar-right {
  gap: 10px;
}

.mini-chip {
  padding: 8px 12px;
  border-radius: 10px;
  background: #f7ede3;
  font-size: 0.78rem;
}

.mini-chip.selected {
  background: #ede1d5;
  font-weight: 700;
}

.tiny-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.preview-body {
  display: grid;
  grid-template-columns: 68px 1fr;
  min-height: 290px;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 14px;
  background: #20263a;
}

.side-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.side-icon.active {
  background: linear-gradient(180deg, #6d4bd0, #4230ab);
}

.preview-grid {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
    #fff7ef;
}

.team-row {
  justify-content: space-around;
  gap: 16px;
  padding: 22px 22px 16px;
}

.team-member {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #d8ecee;
}

.avatar-a {
  background: linear-gradient(180deg, #b2d9e7, #4f8ba1);
}

.avatar-b {
  background: linear-gradient(180deg, #efc0c9, #ac6675);
}

.avatar-c {
  background: linear-gradient(180deg, #edd0e2, #b07ca0);
}

.avatar-d {
  background: linear-gradient(180deg, #d8f0c4, #85b04d);
}

.avatar-e {
  background: linear-gradient(180deg, #f4d4b2, #af6b29);
}

.team-member strong {
  font-size: 0.82rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 62px 1fr;
  min-height: 168px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.time-column {
  display: grid;
  grid-template-rows: repeat(3, 56px);
  padding-left: 12px;
  color: #6b655f;
  font-size: 0.78rem;
}

.time-column span,
.lane {
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
}

.schedule-lanes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lane {
  position: relative;
  border-left: 1px solid rgba(16, 16, 16, 0.06);
}

.booking-block {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f9d7a3, #efb36c);
}

.booking-one {
  top: 18px;
}

.booking-two {
  top: 44px;
}

.booking-three {
  top: 86px;
}

.booking-four {
  top: 30px;
}

.booking-five {
  top: 66px;
}

.pricing-page {
  min-height: 100vh;
  padding: 22px 30px 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.26), transparent 26%),
    linear-gradient(180deg, #f7dfd6 0%, #f7e3da 48%, #f7ede7 100%);
}

.pricing-main {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding-top: 44px;
}

.business-nav a.active {
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  perspective: 1600px;
}

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 540px;
  padding: 32px 30px 28px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 18px 40px rgba(132, 102, 88, 0.1);
  opacity: 0;
  transform: translateY(38px) rotateX(14deg) rotateY(-10deg) scale(0.98);
  transform-style: preserve-3d;
  will-change: transform;
  animation: pricing-rise 760ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
  transition:
    transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 320ms ease;
}

.pricing-card-a {
  animation-delay: 80ms;
}

.pricing-card-b {
  animation-delay: 180ms;
}

.pricing-card-c {
  animation-delay: 280ms;
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.34) 48%,
    rgba(255, 255, 255, 0) 74%
  );
  opacity: 0;
  transform: translateX(-26%) rotate(10deg);
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(14deg) scale(1.02);
  box-shadow: 0 24px 54px rgba(108, 84, 73, 0.16);
}

.pricing-card:hover::after {
  opacity: 1;
  transform: translateX(24%) rotate(10deg);
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pricing-top h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.trial-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(128, 103, 204, 0.12);
  color: #5a4bb7;
  font-size: 0.88rem;
  font-weight: 700;
}

.price-wrap {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.price-wrap strong {
  font-size: clamp(2.6rem, 3vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.price-wrap span,
.pricing-copy li {
  color: #45403d;
}

.enterprise-copy {
  max-width: 300px;
}

.pricing-copy {
  margin-top: 36px;
}

.pricing-label {
  margin: 0 0 14px;
  font-size: 1.02rem;
  font-weight: 800;
}

.pricing-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-copy li {
  line-height: 1.45;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 54px;
  margin-top: auto;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  font-weight: 800;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(108, 76, 245, 0.24);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes pricing-rise {
  0% {
    opacity: 0;
    transform: translateY(38px) rotateX(14deg) rotateY(-10deg) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .search-bar {
    grid-template-columns: 1fr;
    border-radius: 32px;
  }

  .search-item {
    min-height: 58px;
  }

  .search-item + .search-item {
    border-top: 1px solid rgba(16, 16, 16, 0.08);
    border-left: 0;
  }

  .search-button {
    width: 100%;
  }

  .hero-highlight-grid,
  .public-salon-showcase-list,
  .calendar-overview,
  .booking-assurance {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-inner {
    transform: none;
  }

  .login-page {
    padding: 18px;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-visual {
    min-height: 420px;
  }

  .pro-signup-page {
    padding: 18px;
  }

  .pro-signup-shell {
    grid-template-columns: 1fr;
  }

  .pro-signup-visual {
    min-height: 420px;
  }

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

  .onboarding-top-left {
    width: 100%;
  }

  .onboarding-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .onboarding-footer,
  .onboarding-footer-wide,
  .onboarding-footer-address {
    width: 100%;
    margin-top: 28px;
  }

  .onboarding-main {
    margin-top: 48px;
  }

  .business-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .pricing-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .business-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .calendar-page {
    grid-template-columns: 1fr;
  }

  .setup-guide-page {
    grid-template-columns: 1fr;
  }

  .setup-guide-sidebar {
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  }

  .setup-guide-nav {
    grid-auto-flow: column;
    grid-auto-columns: minmax(110px, 1fr);
    overflow-x: auto;
  }

  .setup-guide-main {
    padding: 20px;
  }

  .calendar-sidebar {
    grid-auto-flow: column;
    align-items: center;
    justify-content: start;
    overflow-x: auto;
  }

  .calendar-nav {
    grid-auto-flow: column;
    grid-template-columns: repeat(10, 48px);
  }

  .calendar-main {
    padding-left: 0;
  }

  .calendar-topbar,
  .calendar-toolbar,
  .calendar-toolbar-left,
  .calendar-toolbar-right,
  .calendar-top-actions {
    flex-wrap: wrap;
  }

  .calendar-grid-wrap {
    min-height: 640px;
  }

  .calendar-side-drawer {
    width: min(340px, 100%);
  }

  .calendar-reports-view {
    grid-template-columns: 1fr;
  }

  .calendar-qr-body,
  .calendar-qr-header,
  .booking-shell,
  .booking-field-row,
  .booking-phone-inputs {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .calendar-qr-body img {
    width: min(240px, 100%);
    height: auto;
  }

  .business-nav,
  .business-actions,
  .business-cta-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .business-types-menu {
    left: 50%;
    width: min(360px, calc(100vw - 40px));
    transform: translateX(-50%);
  }

  .preview-body,
  .schedule-grid,
  .pricing-grid,
  .service-type-grid,
  .venue-location-layout {
    grid-template-columns: 1fr;
  }

  .account-type-grid {
    grid-template-columns: 1fr;
  }

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

  .calendar-appointments-header {
    flex-direction: column;
    align-items: stretch;
  }

  .venue-map-card {
    min-height: 360px;
  }

  .map-surface {
    min-height: 324px;
  }

  .preview-sidebar {
    grid-auto-flow: column;
    justify-content: start;
  }

  .time-column {
    display: none;
  }

  .pricing-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .calendar-client-directory-metrics,
  .calendar-client-directory-results {
    grid-template-columns: minmax(0, 1fr);
  }

  .onboarding-language-grid {
    grid-template-columns: 1fr;
  }

  .calendar-client-directory-card-row {
    flex-direction: column;
  }

  .brand {
    font-size: 1.7rem;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .menu-popover {
    right: 0;
    width: min(280px, calc(100vw - 40px));
  }

  .pill-button {
    min-height: 54px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
    white-space: normal;
  }

  .hero-trust-row {
    justify-content: flex-start;
  }

  .subtitle {
    font-size: 1rem;
  }

  .booking-count {
    font-size: 1.25rem;
  }

  .hero-highlight-card,
  .booking-trust-card,
  .booking-assurance-card,
  .calendar-overview-card {
    text-align: left;
  }

  .app-link {
    margin-top: 36px;
    font-size: 1.08rem;
  }

  .login-panel {
    padding: 22px 22px 18px;
  }

  .login-content {
    justify-items: start;
  }

  .login-content h1 {
    margin-bottom: 24px;
  }

  .login-options {
    width: 100%;
  }

  .login-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
  }

  .pro-signup-panel {
    padding: 22px 22px 18px;
  }

  .pro-signup-content {
    justify-items: start;
  }

  .pro-signup-content h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .pro-signup-footer {
    text-align: left;
  }

  .onboarding-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .onboarding-footer {
    justify-content: stretch;
  }

  .onboarding-close,
  .onboarding-continue {
    width: 100%;
  }

  .venue-address-card,
  .selected-venue-card,
  .map-confirm-copy,
  .venue-map-summary {
    padding-right: 18px;
    padding-left: 18px;
  }

  .venue-search-shell {
    min-height: 168px;
    padding: 16px;
  }

  .venue-search-shell textarea {
    min-height: 124px;
  }

  .selected-venue-edit {
    width: 100%;
  }

  .map-label {
    max-width: calc(100% - 36px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .launch-links-shell {
    padding: 30px 20px 24px;
  }

  .launch-links-grid,
  .launch-link-card-qr {
    grid-template-columns: 1fr;
  }

  .manage-booking-hero {
    position: static;
  }

  .manage-booking-actions {
    display: grid;
  }

  .manage-booking-actions .booking-submit,
  .manage-booking-cancel {
    width: 100%;
  }

  .manage-booking-countdown {
    padding: 22px 18px;
  }

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

  .calendar-times {
    font-size: 0.84rem;
  }

  .calendar-side-drawer {
    right: 0;
    bottom: auto;
    width: 100%;
    border-radius: 0 0 24px 24px;
  }

  .calendar-reports-toolbar,
  .calendar-reports-header {
    flex-direction: column;
    align-items: stretch;
  }

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

  .calendar-reports-workspace-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .setup-guide-panel {
    border-radius: 24px;
  }

  .setup-guide-hero,
  .setup-guide-list,
  .setup-guide-skip,
  .setup-guide-help-card {
    margin-right: 0;
    margin-left: 0;
    padding-right: 22px;
    padding-left: 22px;
  }

  .setup-guide-item {
    grid-template-columns: auto 1fr;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .setup-guide-item-end {
    grid-column: 2;
    justify-self: end;
  }

  .setup-guide-help-card {
    align-items: start;
    flex-direction: column;
  }

  .calendar-add-wrap {
    width: 100%;
  }

  .calendar-add-menu {
    width: 100%;
  }

  .calendar-date-chip,
  .calendar-setup-button,
  .calendar-add-button {
    width: 100%;
  }

  .onboarding-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .service-type-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .business-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .selected-venue-card {
    flex-direction: column;
  }

  .business-copy p {
    font-size: 1rem;
  }

  .business-cta {
    width: 100%;
  }

  .business-types-menu {
    width: min(320px, calc(100vw - 40px));
  }
}
