@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-50: #f5f5f3;
  --gray-100: #ebebea;
  --gray-200: #d4d4d2;
  --gray-300: #b8b8b5;
  --gray-400: #9b9b98;
  --gray-500: #767673;
  --gray-600: #5a5a57;
  --gray-800: #2a2a28;
  --accent: #4f46e5;
  --accent-light: #eef2ff;
  --accent-mid: #818cf8;
  --green: #10b981;
  --green-light: #d1fae5;
  --amber: #f59e0b;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --nav-h: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero-wrapper {
  padding-top: var(--nav-h);
}

.hero {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-600);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.av:first-child {
  margin-left: 0;
}

.av1 {
  background: #6366f1;
}

.av2 {
  background: #8b5cf6;
}

.av3 {
  background: #ec4899;
}

.av4 {
  background: #f97316;
}

.av5 {
  background: #10b981;
}

.proof-text {
  font-size: 13px;
  color: var(--gray-600);
}

.proof-text strong {
  color: var(--black);
  font-weight: 600;
}

/* Dashboard card */
.hero-visual {
  position: relative;
}

.hp-delay-150 {
  transition-delay: 0.15s;
}

.dash-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 24px 64px rgba(0, 0, 0, 0.09);
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.dash-bar {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dr {
  background: #ff5f57;
}

.dy {
  background: #febc2e;
}

.dg {
  background: #28c840;
}

.dash-body {
  padding: 22px;
}

.d-hi {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 3px;
}

.d-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
}

.d-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.d-stat {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 11px;
}

.d-stat .sl {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}

.d-stat .sv {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.d-stat .sc {
  font-size: 10px;
  color: var(--green);
  font-weight: 500;
  margin-top: 1px;
}

.d-lbl {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.t-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  background: var(--gray-50);
  border-radius: 8px;
  margin-bottom: 5px;
}

.t-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.tc-done {
  background: var(--green);
}

.tc-warn {
  background: var(--amber);
}

.tc-pend {
  background: var(--gray-200);
}

.t-info {
  flex: 1;
}

.t-n {
  font-size: 12px;
  font-weight: 500;
}

.t-s {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 1px;
}

.t-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 100px;
}

.tbg {
  background: var(--green-light);
  color: #065f46;
}

.tba {
  background: #fef3c7;
  color: #92400e;
}

.tbx {
  background: var(--gray-100);
  color: var(--gray-600);
}

.fc {
  position: absolute;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  font-size: 12px;
}

.fc1 {
  bottom: -18px;
  left: -36px;
  animation: floatY2 5s ease-in-out infinite;
}

.fc2 {
  top: 36px;
  right: -28px;
  animation: floatY3 7s ease-in-out infinite;
}

@keyframes floatY2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes floatY3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.fc-lbl {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.fc-val {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.fc-sub {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 1px;
}

.fc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.hp-bg-green {
  background: var(--green);
}

/* LOGOS */
.logos-strip {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 22px 32px;
}

.logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.logos-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray-300);
  white-space: nowrap;
  margin-right: 40px;
}

.logos-items {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.logo-item {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gray-300);
  white-space: nowrap;
  transition: color 0.2s;
}

.logo-item:hover {
  color: var(--gray-500);
}

/* SHARED SECTION */
.sec {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.sec-bg {
  padding: 100px 32px;
  background: var(--off-white);
}

.sec-bg-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-dk {
  padding: 100px 32px;
  background: var(--black);
}

.sec-dk-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-off-white {
  background: var(--off-white);
}

.sec-border-top {
  border-top: 1px solid var(--gray-100);
}

.sec-coming-soon-txt {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 9px;
  border-radius: 6px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}

.hp-text-center {
  text-align: center;
}

.hp-center-block {
  margin-left: auto;
  margin-right: auto;
}

.sec-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.sec-title em {
  font-style: italic;
  color: var(--accent);
}

.sec-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-600);
  font-weight: 300;
  max-width: 500px;
}

/* PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
}

.pillar {
  background: white;
  padding: 40px 36px;
  transition: background 0.2s;
}

.pillar:hover {
  background: var(--gray-50);
}

.p-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 22px;
}

.pi1 {
  background: #eff6ff;
}

.pi2 {
  background: #f0fdf4;
}

.pi3 {
  background: #faf5ff;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.2px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  font-weight: 300;
}

.p-list {
  margin-top: 22px;
  list-style: none;
}

.p-list li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 7px 0;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}

/* TASK SECTION */
.tasks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.flow-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.flow-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.flow-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.flow-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 100px;
}

.flow-steps {
  position: relative;
}

.flow-line {
  position: absolute;
  left: 16px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--gray-100);
}

.fstep {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 10px 0;
  position: relative;
}

.fnum {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
}

.fn-done {
  background: var(--green);
  color: white;
}

.fn-act {
  background: var(--black);
  color: white;
}

.fn-wait {
  background: white;
  color: var(--gray-400);
  border-color: var(--gray-200);
}

.fbody {
  flex: 1;
  padding-top: 4px;
}

.fn-name {
  font-size: 13px;
  font-weight: 500;
}

.fn-desc {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 2px;
}

.fn-tag {
  margin-top: 6px;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 9px;
  border-radius: 6px;
}

.feat-list {
  margin-top: 32px;
  list-style: none;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.fi {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.hp-bg-blue-soft {
  background: #eff6ff;
}

.hp-bg-green-soft {
  background: #f0fdf4;
}

.hp-bg-purple-soft {
  background: #faf5ff;
}

.hp-bg-orange-soft {
  background: #fff7ed;
}

.ft h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 3px;
}

.ft p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  font-weight: 300;
}

/* INDUSTRIES */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.ind-card {
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 26px 22px;
  transition: all 0.2s;
  cursor: default;
}

.ind-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  transform: translateY(-2px);
}

.ind-em {
  font-size: 26px;
  margin-bottom: 14px;
}

.ind-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 7px;
}

.ind-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  font-weight: 300;
}

.ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.ind-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-50);
  border-radius: 6px;
  padding: 3px 8px;
}

/* PRICING */
.price-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
}

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

.plan {
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 34px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.plan:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.plan.feat {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.feat-lbl {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent);
  color: white;
  padding: 3px 9px;
  border-radius: 100px;
}

.pl-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.plan.feat .pl-name {
  color: rgba(255, 255, 255, 0.45);
}

.pl-price {
  font-family: var(--serif);
  font-size: 46px;
  letter-spacing: -1.2px;
  line-height: 1;
  margin-bottom: 2px;
}

.pl-price sup {
  font-family: var(--sans);
  font-size: 18px;
  vertical-align: super;
  letter-spacing: 0;
}

.pl-per {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 22px;
}

.pl-price-custom {
  font-size: 34px;
  letter-spacing: -1px;
  padding-top: 8px;
}

.pl-per-spaced {
  margin-top: 10px;
}

.plan.feat .pl-per {
  color: rgba(255, 255, 255, 0.45);
}

.pl-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-600);
  margin-bottom: 26px;
  font-weight: 300;
}

.plan.feat .pl-desc {
  color: rgba(255, 255, 255, 0.55);
}

.pl-btn {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 11px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.18s;
  margin-bottom: 26px;
}

.pb-dark {
  background: var(--black);
  color: white;
}

.pb-dark:hover {
  background: var(--gray-800);
}

.pb-light {
  background: white;
  color: var(--black);
}

.pb-light:hover {
  background: var(--gray-100);
}

.pl-feats {
  list-style: none;
}

.pl-feats li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 7px 0;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 300;
}

.plan.feat .pl-feats li {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

.ck {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.plan.feat .ck {
  color: #6ee7b7;
}

/* CTA */
.cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 22px;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--accent-mid);
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-main {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  background: white;
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}

.cta-main:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.cta-sec {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 13px 30px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}

.cta-sec:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}

/* ANIMATIONS */
.fi-anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fi-anim.vis {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .tasks-grid {
    grid-template-columns: 1fr;
  }
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
}
/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  transition: border-color 0.2s;
}

nav.menu-open {
  border-color: transparent;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  font-family: var(--serif);
  color: var(--accent);
  flex-shrink: 0;
}

.nav-logo-image {
  display: block;
  width: auto;
  height: 28px;
}

.nav-logo span {
  color: var(--accent);
}

/* Nav items */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-item {
  position: static;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-trigger:hover, .nav-item.active .nav-trigger {
  color: var(--black);
  background: var(--gray-50);
}

.nav-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.nav-item.active .nav-trigger svg {
  transform: rotate(180deg);
}

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

.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger.open span {
  height: 1.5px;
}

.hamburger:hover {
  background: var(--gray-50);
}

.hamburger span {
  width: 18px;
  height: 1px;
  border-radius: 2px;
  background: var(--black);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  backdrop-filter: blur(2px);
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* Mega panel */
.mega-panel {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 195;
  background: white;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-panel.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 36px;
  display: none;
}

.mega-inner.active {
  display: grid;
}

/* Features panel - 4 col */
.mega-features {
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 0;
}

/* Industries panel - 3 col */
.mega-industries {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
}

/* Developers panel - 3 col */
.mega-developers {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
}

.mega-intro {
  padding-right: 40px;
  border-right: 1px solid var(--gray-100);
}

.mega-intro .mi-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 10px;
}

.mega-intro h3 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 10px;
}

.mega-intro p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-500);
  font-weight: 300;
  margin-bottom: 20px;
}

.mega-intro a {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
}

.mega-intro a:hover {
  gap: 8px;
}

/* Mega columns */
.mega-col {
  padding: 0 28px;
}

.mega-col + .mega-col {
  border-left: 1px solid var(--gray-100);
}

.mega-col-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--gray-400);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.mega-links {
  list-style: none;
}

.mega-links li {
  margin-bottom: 2px;
}

.mega-links a {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.15s;
  color: inherit;
}

.mega-links a:hover {
  background: var(--gray-50);
}

.ml-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ml-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.1px;
  display: block;
  margin-bottom: 2px;
}

.ml-desc {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.4;
  display: block;
}

/* Simple link lists (Developers / Industries) */
.mega-simple {
  list-style: none;
}

.mega-simple li {
  margin-bottom: 2px;
}

.mega-simple a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 400;
  transition: background 0.15s;
}

.mega-simple a:hover {
  background: var(--gray-50);
  color: var(--black);
}

.ms-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
}

.mega-simple a:hover .ms-dot {
  background: var(--accent);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 195;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 4px 14px 18px;
}

.mobile-accordion-item {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-accordion-trigger {
  width: 100%;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 6px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: -0.35px;
  font-weight: 500;
  color: var(--black);
}

.mobile-accordion-trigger svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  color: var(--gray-400);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-accordion-item.open .mobile-accordion-trigger svg {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  padding: 0 6px 16px;
}

.mobile-accordion-item.open .mobile-accordion-content {
  display: block;
}

.mobile-section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 12px 0 8px;
  padding: 0 8px;
}

.mobile-feature-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 2px;
}

.mobile-feature-link:hover {
  background: var(--gray-50);
}

.mobile-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.mfi-blue {
  background: #eff6ff;
}

.mfi-amber {
  background: #fef3c7;
}

.mfi-purple {
  background: #fdf4ff;
}

.mfi-green {
  background: #f0fdf4;
}

.mfi-lilac {
  background: #faf5ff;
}

.mfi-orange {
  background: #fff7ed;
}

.mobile-feature-text {
  display: block;
  min-width: 0;
}

.mobile-feature-name {
  display: block;
  font-size: 17px;
  letter-spacing: -0.25px;
  font-weight: 500;
  color: var(--black);
}

.mobile-feature-desc {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.32;
  color: var(--gray-500);
  font-weight: 300;
}

.mobile-simple-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 2px;
}

.mobile-simple-link:hover {
  background: var(--gray-50);
  color: var(--black);
}

.mobile-simple-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
}

.mobile-plain-link {
  display: block;
  text-decoration: none;
  color: var(--black);
  font-size: 18px;
  letter-spacing: -0.35px;
  font-weight: 500;
  padding: 16px 6px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-plain-link:hover {
  color: var(--accent);
}

.mobile-menu-footer {
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-primary,
.mobile-menu-secondary {
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  padding: 15px 16px;
}

.mobile-menu-primary {
  color: var(--white);
  background: var(--black);
}

.mobile-menu-primary:hover {
  background: var(--gray-800);
}

.mobile-menu-secondary {
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  font-weight: 500;
}

.mobile-menu-secondary:hover {
  color: var(--black);
  border-color: var(--gray-400);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-ghost:hover {
  color: var(--black);
  background: var(--gray-50);
}

.btn-primary {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--black);
  border: none;
  cursor: pointer;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary.large {
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
}

.btn-outline-lg {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  background: none;
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.18s;
}

.btn-outline-lg:hover {
  color: var(--black);
  border-color: var(--gray-400);
  background: var(--gray-50);
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
  }
  .mega-panel {
    display: none !important;
  }
  .nav-backdrop {
    display: none !important;
  }
  nav {
    padding: 0 20px;
  }
}
/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 32px 36px;
}

.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.foot-logo {
  display: block;
  width: 76px;
  height: auto;
}

.foot-logo svg {
  color: var(--white);
}

.foot-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
  margin-top: 14px;
  font-weight: 300;
  max-width: 230px;
}

.foot-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.foot-col ul {
  list-style: none;
}

.foot-col li {
  margin-bottom: 9px;
}

.foot-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.foot-col a:hover {
  color: white;
}

.foot-btm {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-btm p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 900px) {
  .foot-inner {
    grid-template-columns: 1fr 1fr;
  }
}
:root {
  --cat-h: 52px;
  --red: #ef4444;
}

/* ── HERO ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 72px;
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.features-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.8px;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.page-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-600);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: white;
  background: var(--black);
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.btn-hero-ghost {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  background: none;
  border: 1.5px solid var(--gray-200);
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}

.btn-hero-ghost:hover {
  color: var(--black);
  border-color: var(--gray-400);
  background: var(--gray-50);
}

/* ── FEATURE COUNT STRIP ── */
.count-strip {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 32px;
}

.count-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.count-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid var(--gray-100);
}

.count-item:last-child {
  border-right: none;
}

.count-num {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.count-num em {
  font-style: italic;
  color: var(--accent);
}

.count-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 300;
}

/* ── STICKY CATEGORY NAV ── */
.cat-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  height: var(--cat-h);
  display: flex;
  align-items: center;
}

.cat-nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cat-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}

.cat-link:hover {
  color: var(--black);
  background: var(--gray-50);
}

.cat-link.active {
  color: var(--black);
  background: var(--gray-50);
  font-weight: 600;
}

.cat-link .cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CATEGORY SECTION ── */
.cat-section {
  padding: 80px 0 0;
}

.cat-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 56px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.cat-header-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-header-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
}

.cat-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 0;
}

.cat-header h2 em {
  font-style: italic;
}

.cat-header-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-600);
  font-weight: 300;
  padding-top: 8px;
}

/* ── FEATURE GRID ── */
.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  display: grid;
  gap: 16px;
}

.feature-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.feature-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feat-card {
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: default;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.feat-card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.feat-card.large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Card mockup area */
.feat-mockup {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
}

.feat-card.large .feat-mockup {
  padding: 36px 36px 0;
  min-height: 260px;
}

.feat-mockup-inner {
  width: 100%;
}

/* Card content */
.feat-content {
  padding: 24px 28px 28px;
  flex: 1;
}

.feat-card.large .feat-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.feat-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.feat-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
  font-weight: 300;
  margin-bottom: 16px;
}

.feat-bullets {
  list-style: none;
  margin-bottom: 20px;
}

.feat-bullets li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--gray-100);
  font-weight: 300;
}

.feat-bullets li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.15s;
}

.feat-link:hover {
  gap: 8px;
}

/* Divider between categories */
.cat-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  border-top: 1px solid var(--gray-100);
}

/* ── MINI UI MOCKUPS ── */
/* Storefront mockup */
.mock-store {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-prod {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.mock-prod-img {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.mock-prod-info {
  padding: 8px;
}

.mock-prod-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.1px;
  margin-bottom: 2px;
}

.mock-prod-price {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

/* Calendar mockup */
.mock-cal {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-cal-title {
  font-size: 12px;
  font-weight: 600;
}

.mock-cal-nav {
  display: flex;
  gap: 4px;
}

.mock-cal-nav span {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  cursor: pointer;
}

.mock-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.mock-cal-day {
  text-align: center;
  font-size: 10px;
  padding: 4px 2px;
  border-radius: 4px;
}

.mock-cal-day.hd {
  color: var(--gray-400);
  font-weight: 600;
  font-size: 9px;
  text-transform: uppercase;
}

.mock-cal-day.booked {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
}

.mock-cal-day.today {
  background: var(--black);
  color: white;
  font-weight: 600;
}

.mock-cal-day.avail {
  color: var(--gray-600);
}

.mock-cal-day.empty {
  color: var(--gray-200);
}

/* Subscription mockup */
.mock-sub {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-sub-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  margin-bottom: 5px;
  background: var(--gray-50);
}

.mock-sub-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.mock-sub-info {
  flex: 1;
}

.mock-sub-name {
  font-size: 11px;
  font-weight: 600;
}

.mock-sub-plan {
  font-size: 10px;
  color: var(--gray-400);
}

.mock-sub-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 100px;
}

.ss-active {
  background: var(--green-light);
  color: #065f46;
}

.ss-paused {
  background: #fef3c7;
  color: #92400e;
}

.ss-gated {
  background: var(--accent-light);
  color: var(--accent);
}

/* Task flow mockup */
.mock-task {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-task-hd {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.mock-task-hd span {
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 7px;
  border-radius: 100px;
}

.mock-step {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 0;
  position: relative;
}

.mock-step-line {
  position: absolute;
  left: 11px;
  top: 26px;
  bottom: -7px;
  width: 1px;
  background: var(--gray-100);
}

.mock-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.msn-done {
  background: var(--green);
  color: white;
}

.msn-act {
  background: var(--black);
  color: white;
}

.msn-wait {
  background: white;
  color: var(--gray-400);
  border: 1.5px solid var(--gray-200);
}

.mock-step-body {
  flex: 1;
}

.mock-step-name {
  font-size: 11px;
  font-weight: 500;
}

.mock-step-desc {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 1px;
}

/* Payments mockup */
.mock-pay {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-pay-total {
  margin-bottom: 12px;
}

.mock-pay-label {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.mock-pay-amount {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.5px;
  margin-top: 2px;
}

.mock-pay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid var(--gray-100);
  font-size: 11px;
}

.mock-pay-row .pr-label {
  color: var(--gray-500);
}

.mock-pay-row .pr-val {
  font-weight: 600;
}

.mock-pay-row .pr-green {
  color: var(--green);
}

.mock-pay-btn {
  margin-top: 12px;
  background: var(--black);
  color: white;
  border: none;
  border-radius: 7px;
  padding: 9px;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
}

/* Analytics mockup */
.mock-analytics {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-chart-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mock-chart-title {
  font-size: 11px;
  font-weight: 600;
}

.mock-chart-val {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.mock-chart-change {
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}

.mock-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 6px;
  transition: height 0.3s;
}

/* Portal mockup */
.mock-portal {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-portal-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mock-portal-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.mock-portal-name {
  font-size: 13px;
  font-weight: 600;
}

.mock-portal-email {
  font-size: 11px;
  color: var(--gray-400);
}

.mock-portal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mock-portal-card {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 10px;
}

.mock-portal-card .pc-label {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.mock-portal-card .pc-val {
  font-size: 14px;
  font-weight: 600;
}

.mock-portal-card .pc-sub {
  font-size: 10px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Notifications mockup */
.mock-notif {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-notif-item {
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  background: var(--gray-50);
}

.mock-notif-ico {
  font-size: 16px;
  flex-shrink: 0;
}

.mock-notif-body .mn-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 1px;
}

.mock-notif-body .mn-msg {
  font-size: 10px;
  color: var(--gray-500);
  line-height: 1.4;
}

.mock-notif-body .mn-time {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Forms mockup */
.mock-form {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-form-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mock-field {
  margin-bottom: 10px;
}

.mock-field-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.mock-field-input {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 11px;
  color: var(--gray-500);
  width: 100%;
}

.mock-sig-area {
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: 6px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 10px;
}

/* Discounts mockup */
.mock-disc {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-disc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--gray-50);
  margin-bottom: 5px;
}

.mock-disc-code {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--black);
  font-family: monospace;
}

.mock-disc-info {
  font-size: 10px;
  color: var(--gray-500);
  margin-top: 1px;
}

.mock-disc-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--green-light);
  color: #065f46;
}

/* Reviews mockup */
.mock-reviews {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.mock-review-text {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 8px;
  font-weight: 300;
}

.mock-reviewer {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
}

.mock-review-bar {
  margin-top: 10px;
}

.mock-review-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.mock-review-bar-row .rb-label {
  font-size: 10px;
  color: var(--gray-400);
  width: 20px;
  text-align: right;
}

.mock-review-bar-row .rb-track {
  flex: 1;
  height: 5px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}

.mock-review-bar-row .rb-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 3px;
}

.mock-review-bar-row .rb-count {
  font-size: 10px;
  color: var(--gray-400);
  width: 20px;
}

/* Staff tasks mockup */
.mock-staff {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-staff-task {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 10px;
  background: var(--gray-50);
  border-radius: 8px;
  margin-bottom: 5px;
}

.mock-staff-cb {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
}

.ms-done {
  background: var(--green);
}

.ms-todo {
  background: white;
  border: 1.5px solid var(--gray-200);
}

.ms-urg {
  background: var(--red);
}

.mock-staff-info .mst-name {
  font-size: 11px;
  font-weight: 500;
}

.mock-staff-info .mst-meta {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 1px;
}

.mock-staff-assign {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Prescription mockup */
.mock-rx {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-rx-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-rx-title {
  font-size: 11px;
  font-weight: 600;
}

.mock-rx-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--green-light);
  color: #065f46;
}

.mock-rx-drug {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
}

.mock-rx-drug-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}

.mock-rx-drug-dose {
  font-size: 10px;
  color: var(--gray-500);
}

.mock-rx-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--gray-400);
}

.mock-rx-dispensed {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
}

/* Multi-location mockup */
.mock-location {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mock-loc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--gray-50);
  border-radius: 8px;
  margin-bottom: 5px;
}

.mock-loc-pin {
  font-size: 14px;
}

.mock-loc-info {
  flex: 1;
}

.mock-loc-name {
  font-size: 11px;
  font-weight: 600;
}

.mock-loc-addr {
  font-size: 10px;
  color: var(--gray-400);
}

.mock-loc-stat {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
}

.mls-open {
  background: var(--green-light);
  color: #065f46;
}

.mls-busy {
  background: #fef3c7;
  color: #92400e;
}

/* API mockup */
.mock-api {
  background: #0f1117;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px 10px 0 0;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  font-family: "Courier New", monospace;
}

.mock-api-line {
  font-size: 11px;
  line-height: 1.7;
}

.api-purple {
  color: #c084fc;
}

.api-green {
  color: #86efac;
}

.api-blue {
  color: #93c5fd;
}

.api-yellow {
  color: #fde68a;
}

.api-white {
  color: rgba(255, 255, 255, 0.85);
}

.api-gray {
  color: rgba(255, 255, 255, 0.35);
}

.api-orange {
  color: #fdba74;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--black);
  padding: 80px 32px;
}

.cta-band-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-band-inner h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: white;
  margin-bottom: 18px;
}

.cta-band-inner h2 em {
  font-style: italic;
  color: var(--accent-mid);
}

.cta-band-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  margin-bottom: 32px;
}

.cta-band-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-band-primary {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  background: white;
  border: none;
  padding: 12px 26px;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}

.cta-band-primary:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.cta-band-ghost {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 11px 26px;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}

.cta-band-ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}

/* ── ANIMATIONS ── */
.fi-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fi-reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: if JS fails, show everything */
.no-js .fi-reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .feat-card.large {
    grid-column: span 1;
    display: flex;
  }
  .feature-grid.cols-2, .feature-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .cat-header {
    grid-template-columns: 1fr;
  }
  .count-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* INLINE UTILITY CLASSES (features.liquid) - generated */
.fxu-001 {
  align-items: center;
}

.fxu-002 {
  align-items: flex-end;
}

.fxu-003 {
  align-items: flex-start;
}

.fxu-004 {
  background: #0f1117;
}

.fxu-005 {
  background: #10b981;
}

.fxu-006 {
  background: #3b82f6;
}

.fxu-007 {
  background: #6366f1;
}

.fxu-008 {
  background: #8b5cf6;
}

.fxu-009 {
  background: #eff6ff;
}

.fxu-010 {
  background: #f0fdf4;
}

.fxu-011 {
  background: #f59e0b;
}

.fxu-012 {
  background: #f97316;
}

.fxu-013 {
  background: #faf5ff;
}

.fxu-014 {
  background: #fdf4ff;
}

.fxu-015 {
  background: #fef3c7;
}

.fxu-016 {
  background: #fff7ed;
}

.fxu-017 {
  background: none;
}

.fxu-018 {
  background: var(--accent);
}

.fxu-019 {
  background: var(--accent-light);
}

.fxu-020 {
  background: var(--gray-100);
}

.fxu-021 {
  background: var(--gray-200);
}

.fxu-022 {
  background: var(--gray-50);
}

.fxu-023 {
  background: var(--green);
}

.fxu-024 {
  background: var(--green-light);
}

.fxu-025 {
  background: var(--red);
}

.fxu-026 {
  background: white;
}

.fxu-027 {
  border: 1.5px dashed var(--gray-200);
}

.fxu-028 {
  border: 1.5px solid var(--gray-300);
}

.fxu-029 {
  border: 1px solid var(--gray-100);
}

.fxu-030 {
  border: 1px solid var(--gray-200);
}

.fxu-031 {
  border-radius: 100px;
}

.fxu-032 {
  border-radius: 10px 10px 0 0;
}

.fxu-033 {
  border-radius: 12px 12px 0 0;
}

.fxu-034 {
  border-radius: 2px;
}

.fxu-035 {
  border-radius: 4px;
}

.fxu-036 {
  border-radius: 50%;
}

.fxu-037 {
  border-radius: 5px;
}

.fxu-038 {
  border-radius: 6px;
}

.fxu-039 {
  border-radius: 7px;
}

.fxu-040 {
  border-radius: 8px;
}

.fxu-041 {
  border-top: 1px solid var(--gray-100);
}

.fxu-042 {
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.fxu-043 {
  color: #065f46;
}

.fxu-044 {
  color: #10b981;
}

.fxu-045 {
  color: #3b82f6;
}

.fxu-046 {
  color: #8b5cf6;
}

.fxu-047 {
  color: #92400e;
}

.fxu-048 {
  color: #f59e0b;
}

.fxu-049 {
  color: var(--accent);
}

.fxu-050 {
  color: var(--amber);
}

.fxu-051 {
  color: var(--black);
}

.fxu-052 {
  color: var(--gray-400);
}

.fxu-053 {
  color: var(--gray-500);
}

.fxu-054 {
  color: var(--gray-600);
}

.fxu-055 {
  color: var(--green);
}

.fxu-056 {
  color: var(--red);
}

.fxu-057 {
  color: white;
}

.fxu-058 {
  cursor: pointer;
}

.fxu-059 {
  display: block;
}

.fxu-060 {
  display: flex;
}

.fxu-061 {
  display: grid;
}

.fxu-062 {
  flex: 1;
}

.fxu-063 {
  flex: 2;
}

.fxu-064 {
  flex-shrink: 0;
}

.fxu-065 {
  float: right;
}

.fxu-066 {
  font-family: monospace;
}

.fxu-067 {
  font-family: var(--serif);
}

.fxu-068 {
  font-size: 10px;
}

.fxu-069 {
  font-size: 11px;
}

.fxu-070 {
  font-size: 12px;
}

.fxu-071 {
  font-size: 13px;
}

.fxu-072 {
  font-size: 14px;
}

.fxu-073 {
  font-size: 8px;
}

.fxu-074 {
  font-size: 9px;
}

.fxu-075 {
  font-size: clamp(32px, 3.5vw, 44px);
}

.fxu-076 {
  font-style: italic;
}

.fxu-077 {
  font-weight: 400;
}

.fxu-078 {
  font-weight: 500;
}

.fxu-079 {
  font-weight: 600;
}

.fxu-080 {
  font-weight: 700;
}

.fxu-081 {
  gap: 10px;
}

.fxu-082 {
  gap: 5px;
}

.fxu-083 {
  gap: 6px;
}

.fxu-084 {
  gap: 7px;
}

.fxu-085 {
  gap: 8px;
}

.fxu-086 {
  grid-column: span 2;
}

.fxu-087 {
  grid-template-columns: 1fr 1fr;
}

.fxu-088 {
  grid-template-columns: 1fr 1fr 1fr;
}

.fxu-089 {
  grid-template-columns: repeat(3, 1fr);
}

.fxu-090 {
  height: 100%;
}

.fxu-091 {
  height: 11px;
}

.fxu-092 {
  height: 18px;
}

.fxu-093 {
  height: 28px;
}

.fxu-094 {
  height: 2px;
}

.fxu-095 {
  height: 30%;
}

.fxu-096 {
  height: 36px;
}

.fxu-097 {
  height: 3px;
}

.fxu-098 {
  height: 40%;
}

.fxu-099 {
  height: 4px;
}

.fxu-100 {
  height: 50%;
}

.fxu-101 {
  height: 55%;
}

.fxu-102 {
  height: 65%;
}

.fxu-103 {
  height: 72%;
}

.fxu-104 {
  height: 90%;
}

.fxu-105 {
  justify-content: center;
}

.fxu-106 {
  justify-content: space-between;
}

.fxu-107 {
  letter-spacing: -0.2px;
}

.fxu-108 {
  letter-spacing: -0.8px;
}

.fxu-109 {
  line-height: 1.1;
}

.fxu-110 {
  line-height: 1.5;
}

.fxu-111 {
  margin-bottom: 10px;
}

.fxu-112 {
  margin-bottom: 12px;
}

.fxu-113 {
  margin-bottom: 1px;
}

.fxu-114 {
  margin-bottom: 2px;
}

.fxu-115 {
  margin-bottom: 5px;
}

.fxu-116 {
  margin-bottom: 6px;
}

.fxu-117 {
  margin-bottom: 7px;
}

.fxu-118 {
  margin-top: 10px;
}

.fxu-119 {
  margin-top: 12px;
}

.fxu-120 {
  margin-top: 1px;
}

.fxu-121 {
  margin-top: 4px;
}

.fxu-122 {
  min-height: 220px;
}

.fxu-123 {
  opacity: 0.15;
}

.fxu-124 {
  opacity: 0.5;
}

.fxu-125 {
  opacity: 0.65;
}

.fxu-126 {
  padding: 10px;
}

.fxu-127 {
  padding: 14px;
}

.fxu-128 {
  padding: 16px;
}

.fxu-129 {
  padding: 16px 16px 0;
}

.fxu-130 {
  padding: 1px 5px;
}

.fxu-131 {
  padding: 28px 28px 0;
}

.fxu-132 {
  padding: 2px;
}

.fxu-133 {
  padding: 2px 7px;
}

.fxu-134 {
  padding: 3px 7px;
}

.fxu-135 {
  padding: 3px 8px;
}

.fxu-136 {
  padding: 4px 0;
}

.fxu-137 {
  padding: 6px;
}

.fxu-138 {
  padding: 7px 10px;
}

.fxu-139 {
  padding: 8px;
}

.fxu-140 {
  padding: 8px 10px;
}

.fxu-141 {
  padding: 9px;
}

.fxu-142 {
  padding-top: 10px;
}

.fxu-143 {
  padding-top: 6px;
}

.fxu-144 {
  position: relative;
}

.fxu-145 {
  text-align: right;
}

.fxu-146 {
  width: 10%;
}

.fxu-147 {
  width: 11px;
}

.fxu-148 {
  width: 18px;
}

.fxu-149 {
  width: 20px;
}

.fxu-150 {
  width: 28px;
}

.fxu-151 {
  width: 4%;
}

.fxu-152 {
  width: 52%;
}

.fxu-153 {
  width: 84%;
}

/* END INLINE UTILITY CLASSES */
.booking-feature-page .breadcrumb {
  padding-top: calc(var(--nav-h) + 24px);
}
.booking-feature-page .breadcrumb.wrap {
  max-width: 1200px;
  margin: auto;
  padding-left: 20px;
}

.booking-feature-page .avail-icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.booking-feature-page .sec-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.booking-feature-page .session-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}

.booking-feature-page .session-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gray-50);
  color: var(--gray-600);
  border: 1px solid var(--gray-100);
}

.booking-feature-page .breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
}

.booking-feature-page .breadcrumb-inner a {
  color: var(--gray-400);
  text-decoration: none;
}

.booking-feature-page .breadcrumb-inner a:hover {
  color: var(--black);
}

.booking-feature-page .breadcrumb-cur {
  color: var(--gray-600);
  font-weight: 500;
}

.booking-feature-page .booking-hero {
  padding: 48px 0px 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.booking-feature-page .hero-badge {
  background: var(--green-light);
  color: #065f46;
}

.booking-feature-page .hero-badge-dot {
  background: var(--green);
}

.booking-feature-page .hero h1 em {
  color: var(--green);
}

.booking-feature-page .btn-hero {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.booking-feature-page .btn-hero:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
}

.booking-feature-page .btn-hero-ghost {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  background: none;
  border: 1.5px solid var(--gray-200);
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}

.booking-feature-page .btn-hero-ghost:hover {
  color: var(--black);
  border-color: var(--gray-400);
}

.booking-feature-page .booking-toggle-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.booking-feature-page .biz-toggle {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.15s;
}

.booking-feature-page .biz-toggle:hover {
  border-color: var(--gray-300);
  color: var(--black);
}

.booking-feature-page .biz-toggle.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.booking-feature-page .booking-step-row {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.booking-feature-page .bpm-step-tab {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 7px;
  background: var(--gray-50);
  color: var(--gray-500);
  border: 1px solid var(--gray-100);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s;
}

.booking-feature-page .bpm-step-tab:hover {
  background: var(--gray-100);
  color: var(--black);
}

.booking-feature-page .bpm-step-tab.active-tab {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.booking-feature-page .booking-page-mock {
  --bpm-accent: #0d9488;
  --bpm-accent-light: #f0fdfa;
  --bpm-logo: #10b981;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 20px 56px rgba(0, 0, 0, 0.1);
}

.booking-feature-page .booking-page-mock.is-gym {
  --bpm-accent: #f59e0b;
  --bpm-accent-light: #fefce8;
}

.booking-feature-page .booking-page-mock.is-salon {
  --bpm-accent: #ec4899;
  --bpm-accent-light: #fdf2f8;
}

.booking-feature-page .bpm-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-feature-page .bpm-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--bpm-logo);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.booking-feature-page .bpm-head-copy {
  min-width: 0;
}

.booking-feature-page .bpm-business {
  font-size: 13px;
  font-weight: 600;
}

.booking-feature-page .bpm-location {
  font-size: 11px;
  color: var(--gray-400);
}

.booking-feature-page .bpm-head-rating {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

.booking-feature-page .bpm-stars {
  font-size: 11px;
  color: #f59e0b;
  line-height: 1;
}

.booking-feature-page .bpm-rating {
  font-size: 10px;
  color: var(--gray-400);
}

.booking-feature-page .bpm-step {
  display: none;
}

.booking-feature-page .bpm-step.is-active {
  display: block;
}

.booking-feature-page .bpm-body {
  padding: 20px;
}

.booking-feature-page .bpm-photo-strip {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
}

.booking-feature-page .bpm-photo {
  flex: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-feature-page .bpm-photo.p1 {
  flex: 2;
}

.booking-feature-page .bpm-photo-emoji {
  font-size: 20px;
  line-height: 1;
}

.booking-feature-page .bpm-photo.p1 .bpm-photo-emoji {
  font-size: 24px;
}

.booking-feature-page .booking-page-mock.is-clinic .bpm-photo.p1 {
  background: linear-gradient(135deg, #ccfbf1, #5eead4);
}

.booking-feature-page .booking-page-mock.is-clinic .bpm-photo.p2 {
  background: linear-gradient(135deg, #ede9fe, #c4b5fd);
}

.booking-feature-page .booking-page-mock.is-clinic .bpm-photo.p3 {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.booking-feature-page .booking-page-mock.is-gym .bpm-photo.p1 {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.booking-feature-page .booking-page-mock.is-gym .bpm-photo.p2 {
  background: linear-gradient(135deg, #dcfce7, #86efac);
}

.booking-feature-page .booking-page-mock.is-gym .bpm-photo.p3 {
  background: linear-gradient(135deg, #ffe4e6, #fda4af);
}

.booking-feature-page .booking-page-mock.is-salon .bpm-photo.p1 {
  background: linear-gradient(135deg, #fce7f3, #f9a8d4);
}

.booking-feature-page .booking-page-mock.is-salon .bpm-photo.p2 {
  background: linear-gradient(135deg, #ede9fe, #c4b5fd);
}

.booking-feature-page .booking-page-mock.is-salon .bpm-photo.p3 {
  background: linear-gradient(135deg, #fef9c3, #fef08a);
}

.booking-feature-page .bpm-title {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.booking-feature-page .bpm-title-step {
  margin-bottom: 4px;
}

.booking-feature-page .bpm-kicker {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  margin-bottom: 7px;
}

.booking-feature-page .bpm-kicker-team {
  margin-top: 12px;
}

.booking-feature-page .bpm-service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.booking-feature-page .bpm-service {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-100);
  border-radius: 9px;
}

.booking-feature-page .bpm-service.sel {
  border-color: var(--bpm-accent);
  background: var(--bpm-accent-light);
}

.booking-feature-page .bpm-service-name {
  font-size: 12px;
  font-weight: 500;
}

.booking-feature-page .bpm-service-dur {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--gray-400);
}

.booking-feature-page .bpm-service-meta-sep {
  color: var(--gray-400);
}

.booking-feature-page .bpm-service-type {
  font-size: 9px;
  font-weight: 600;
  border-radius: 3px;
  padding: 1px 5px;
}

.booking-feature-page .bpm-service-type.inperson {
  color: #166534;
  background: #f0fdf4;
}

.booking-feature-page .bpm-service-type.virtual {
  color: #1d4ed8;
  background: #eff6ff;
}

.booking-feature-page .bpm-service-selected {
  font-size: 9px;
  font-weight: 600;
  border-radius: 3px;
  padding: 1px 5px;
  color: #166534;
  background: #dcfce7;
}

.booking-feature-page .bpm-service-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.booking-feature-page .bpm-service-price.free {
  color: var(--green);
}

.booking-feature-page .bpm-team-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.booking-feature-page .bpm-team-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  flex: 1;
}

.booking-feature-page .bpm-team-card.is-selected {
  border-color: var(--bpm-accent);
  background: var(--bpm-accent-light);
}

.booking-feature-page .bpm-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-feature-page .bpm-avatar.avatar-teal {
  background: #0d9488;
}

.booking-feature-page .bpm-avatar.avatar-indigo {
  background: #4f46e5;
}

.booking-feature-page .bpm-avatar.avatar-violet {
  background: #8b5cf6;
}

.booking-feature-page .bpm-avatar.avatar-amber {
  background: #f59e0b;
}

.booking-feature-page .bpm-avatar.avatar-green {
  background: #10b981;
}

.booking-feature-page .bpm-avatar.avatar-red {
  background: #ef4444;
}

.booking-feature-page .bpm-avatar.avatar-pink {
  background: #ec4899;
}

.booking-feature-page .bpm-team-name {
  font-size: 11px;
  font-weight: 600;
}

.booking-feature-page .bpm-team-name.is-accent {
  color: var(--bpm-accent);
}

.booking-feature-page .bpm-team-role {
  font-size: 10px;
  color: var(--gray-400);
}

.booking-feature-page .bpm-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}

.booking-feature-page .bpm-total {
  font-size: 12px;
  font-weight: 700;
}

.booking-feature-page .bpm-total-sub {
  font-size: 10px;
  color: var(--gray-400);
}

.booking-feature-page .bpm-btn {
  width: 100%;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--bpm-accent);
  border: none;
  border-radius: 9px;
  padding: 12px;
  cursor: pointer;
}

.booking-feature-page .bpm-btn-inline {
  width: auto;
  padding: 9px 20px;
}

.booking-feature-page .bpm-crumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.booking-feature-page .bpm-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 12px;
  font-family: var(--sans);
}

.booking-feature-page .bpm-crumb {
  font-size: 10px;
  color: var(--gray-400);
}

.booking-feature-page .bpm-crumb strong {
  color: var(--black);
}

.booking-feature-page .bpm-help-text {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 14px;
}

.booking-feature-page .bpm-staff-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.booking-feature-page .bpm-staff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.booking-feature-page .bpm-staff-item.is-selected {
  border: 1.5px solid var(--bpm-accent);
  background: var(--bpm-accent-light);
}

.booking-feature-page .bpm-staff-copy {
  flex: 1;
  min-width: 0;
}

.booking-feature-page .bpm-staff-name {
  font-size: 13px;
  font-weight: 600;
}

.booking-feature-page .bpm-staff-name.is-accent {
  color: var(--bpm-accent);
}

.booking-feature-page .bpm-staff-meta {
  font-size: 11px;
  color: var(--gray-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-feature-page .bpm-staff-check {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--bpm-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.booking-feature-page .bpm-staff-any {
  border: 1.5px dashed var(--gray-200);
  background: var(--white);
}

.booking-feature-page .bpm-staff-any-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.booking-feature-page .bpm-staff-any .bpm-staff-name {
  color: var(--gray-600);
}

.booking-feature-page .bpm-month-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.booking-feature-page .bpm-month-arrow {
  font-size: 12px;
  color: var(--gray-400);
  cursor: pointer;
}

.booking-feature-page .bpm-month-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}

.booking-feature-page .bpm-cal-strip {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

.booking-feature-page .bpm-cal-day {
  flex: 1;
  text-align: center;
  padding: 7px 4px;
  border-radius: 8px;
  cursor: pointer;
}

.booking-feature-page .bpm-cal-day .bcd-name {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--gray-400);
}

.booking-feature-page .bpm-cal-day .bcd-num {
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
  color: var(--gray-600);
}

.booking-feature-page .bpm-cal-day .bcd-num.strike {
  text-decoration: line-through;
}

.booking-feature-page .bpm-cal-day .bcd-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bpm-accent);
  margin: 3px auto 0;
}

.booking-feature-page .bpm-cal-day.sel {
  max-width: 88px;
  background: var(--black);
}

.booking-feature-page .bpm-cal-day.sel .bcd-name {
  color: rgba(255, 255, 255, 0.55);
}

.booking-feature-page .bpm-cal-day.sel .bcd-num {
  color: var(--white);
}

.booking-feature-page .bpm-cal-day.muted {
  opacity: 0.3;
}

.booking-feature-page .bpm-timeslots {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.booking-feature-page .bpm-timeslot {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
  font-size: 12px;
  color: var(--gray-600);
  cursor: pointer;
}

.booking-feature-page .bpm-timeslot.is-selected {
  border: 1.5px solid var(--bpm-accent);
  background: var(--bpm-accent-light);
  color: var(--bpm-accent);
  font-weight: 600;
}

.booking-feature-page .bpm-slot-note {
  font-size: 10px;
  color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 12px;
}

.booking-feature-page .bpm-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 9px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 11px;
}

.booking-feature-page .bpm-summary-main {
  font-weight: 600;
  margin-bottom: 2px;
}

.booking-feature-page .bpm-summary-sub {
  color: var(--gray-400);
}

.booking-feature-page .bpm-form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.booking-feature-page .bpm-field-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.booking-feature-page .bpm-field-hint {
  color: var(--gray-400);
  font-weight: 300;
}

.booking-feature-page .bpm-field-input {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--black);
}

.booking-feature-page .bpm-field.is-active .bpm-field-input {
  border-color: var(--bpm-accent);
  box-shadow: 0 0 0 3px var(--bpm-accent-light);
}

.booking-feature-page .bpm-field.is-placeholder .bpm-field-input {
  color: var(--gray-400);
}

.booking-feature-page .bpm-field.is-readonly .bpm-field-input {
  background: var(--white);
}

.booking-feature-page .bpm-team-row {
  grid-template-columns: 1fr 1fr;
}

.booking-feature-page .bpm-team-card {
  min-width: 0;
}

.booking-feature-page .bpm-team-card > div:last-child {
  min-width: 0;
}

.booking-feature-page .bpm-team-name,
.booking-feature-page .bpm-team-role {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-feature-page .bpm-staff-name,
.booking-feature-page .bpm-staff-meta {
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-feature-page .bpm-staff-name {
  white-space: nowrap;
}

.booking-feature-page .bpm-btn:focus-visible,
.booking-feature-page .biz-toggle:focus-visible,
.booking-feature-page .bpm-step-tab:focus-visible,
.booking-feature-page .bpm-back-btn:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.booking-feature-page .bpm-back-btn:focus-visible {
  border-radius: 4px;
}

.booking-feature-page .bpm-step-tab,
.booking-feature-page .biz-toggle,
.booking-feature-page .bpm-btn {
  border-style: solid;
}

.booking-feature-page .bpm-step-tab,
.booking-feature-page .biz-toggle {
  border-width: 1.5px;
}

.booking-feature-page .bpm-step-tab.active-tab {
  border-width: 1px;
}

.booking-feature-page .bpm-step-tab {
  border-color: var(--gray-100);
}

.booking-feature-page .bpm-step-tab.active-tab {
  border-color: var(--black);
}

.booking-feature-page .bpm-service:first-child,
.booking-feature-page .bpm-service:nth-child(2) {
  border-width: 1.5px;
}

.booking-feature-page .bpm-service:last-child {
  border-width: 1px;
}

.booking-feature-page .bpm-staff-item:last-child {
  margin-top: 4px;
}

.booking-feature-page .bpm-cal-day.sel .bcd-num {
  line-height: 1.1;
}

.booking-feature-page .bpm-service-left,
.booking-feature-page .bpm-service-right {
  min-width: 0;
}

.booking-feature-page .bpm-service-left {
  flex: 1;
  padding-right: 8px;
}

.booking-feature-page .bpm-service-right {
  flex-shrink: 0;
}

.booking-feature-page .bpm-service-name,
.booking-feature-page .bpm-service-dur {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-feature-page .bpm-service-dur {
  white-space: normal;
}

.booking-feature-page .bpm-service-type,
.booking-feature-page .bpm-service-selected {
  white-space: nowrap;
}

.booking-feature-page .bpm-service-duration {
  white-space: nowrap;
}

.booking-feature-page .bpm-form-fields .bpm-field:last-child {
  margin-bottom: 0;
}

.booking-feature-page .bpm-crumb-row + .bpm-title {
  margin-top: 0;
}

.booking-feature-page .bpm-timeslot:not(.is-selected):hover {
  border-color: var(--gray-200);
  background: var(--gray-50);
}

.booking-feature-page .bpm-staff-item:not(.is-selected):hover {
  background: var(--gray-50);
}

.booking-feature-page .bpm-back-btn:hover {
  color: var(--gray-600);
}

.booking-feature-page .bpm-btn:hover {
  filter: brightness(0.95);
}

.booking-feature-page .bpm-btn:active {
  transform: translateY(1px);
}

.booking-feature-page .bpm-back-btn,
.booking-feature-page .bpm-step-tab,
.booking-feature-page .biz-toggle {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.booking-feature-page .bpm-month-title,
.booking-feature-page .bpm-month-arrow {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.booking-feature-page .bpm-service,
.booking-feature-page .bpm-staff-item,
.booking-feature-page .bpm-timeslot,
.booking-feature-page .bpm-cal-day {
  transition: all 0.15s;
}

.booking-feature-page .bpm-cal-day:hover:not(.sel):not(.muted) {
  background: var(--gray-50);
}

.booking-feature-page .bpm-cal-day.muted:hover {
  background: transparent;
}

.booking-feature-page .bpm-footer-row .bpm-btn {
  width: auto;
}

.booking-feature-page .bpm-crumb-row .bpm-back-btn {
  padding: 0;
}

.booking-feature-page .bpm-summary:empty,
.booking-feature-page .bpm-form-fields:empty,
.booking-feature-page .bpm-service-list:empty,
.booking-feature-page .bpm-team-row:empty,
.booking-feature-page .bpm-staff-list:empty,
.booking-feature-page .bpm-timeslots:empty {
  min-height: 24px;
}

.booking-feature-page .bpm-total,
.booking-feature-page .bpm-total-sub {
  white-space: nowrap;
}

.booking-feature-page .bpm-summary-main,
.booking-feature-page .bpm-summary-sub,
.booking-feature-page .bpm-field-label,
.booking-feature-page .bpm-field-input {
  letter-spacing: 0;
}

.booking-feature-page .bpm-form-fields .bpm-field {
  min-width: 0;
}

.booking-feature-page .bpm-field-input {
  background: var(--white);
}

.booking-feature-page .bpm-field.is-active .bpm-field-input {
  background: var(--white);
}

.booking-feature-page .bpm-service-dur .bpm-service-meta-sep {
  margin-right: 1px;
}

.booking-feature-page .bpm-service-dur .bpm-service-type + .bpm-service-selected {
  margin-left: 0;
}

.booking-feature-page .bpm-service-dur .bpm-service-type {
  margin-right: 0;
}

.booking-feature-page .bpm-service-dur .bpm-service-selected {
  margin-left: 0;
}

.booking-feature-page .booking-stat-strip {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}

.booking-feature-page .booking-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.booking-feature-page .booking-stat-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid var(--gray-100);
}

.booking-feature-page .booking-stat-item:last-child {
  border-right: none;
}

.booking-feature-page .booking-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.booking-feature-page .booking-stat-num em {
  font-style: italic;
  color: var(--green);
}

.booking-feature-page .booking-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 300;
}

.booking-feature-page .booking-center-copy {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.booking-feature-page .booking-green {
  color: var(--green);
}

.booking-feature-page .booking-green-center {
  color: var(--green);
  justify-content: center;
}

.booking-feature-page .booking-green-center::before {
  background: var(--green);
}

.booking-feature-page .booking-center-sub {
  margin: 0 auto;
}

.booking-feature-page .booking-how-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.booking-feature-page .booking-how-step {
  padding: 32px 24px;
}

.booking-feature-page .booking-how-num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.booking-feature-page .booking-how-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-feature-page .booking-how-desc {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.6;
}

.booking-feature-page .booking-session-grid,
.booking-feature-page .booking-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.booking-feature-page .booking-card {
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 24px;
  background: var(--white);
  position: relative;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
}
.booking-feature-page .booking-card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.booking-feature-page .booking-card.coming-soon {
  cursor: default;
  opacity: 0.6;
  pointer-events: none;
}

.booking-feature-page .booking-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.booking-feature-page .booking-card p {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.6;
}

.booking-feature-page .booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.booking-feature-page .booking-feature-list {
  list-style: none;
  margin-top: 28px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-icon.time {
  background: #f0fdf4;
}
.feature-icon.buffer {
  background: #fef3c7;
}
.feature-icon.calendar {
  background: #eff6ff;
}
.feature-icon.lock {
  background: #fdf4ff;
}
.feature-icon.block {
  background: #fdf0f0;
}
.feature-icon.staff {
  background: #eff6ff;
}

.booking-feature-page .booking-feature-list li {
  display: flex;
  font-size: 15px;
  gap: 12px;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.5;
  padding: 12px 0;
  border-top: 1px solid var(--gray-100);
}

.booking-feature-page .booking-feature-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.booking-feature-page .booking-feature-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.booking-feature-page .booking-settings-panel,
.booking-feature-page .booking-location-panel {
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  padding: 24px;
}

.booking-feature-page .booking-settings-panel h3,
.booking-feature-page .booking-location-panel h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.booking-feature-page .booking-day-row {
  display: grid;
  grid-template-columns: 40px 1fr 88px;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.booking-feature-page .booking-day-row span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
}

.booking-feature-page .booking-day-row small {
  font-size: 11px;
  color: var(--gray-500);
  text-align: right;
}

.booking-feature-page .booking-day-row.off small {
  color: var(--gray-300);
}

.booking-feature-page .booking-day-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--gray-100);
}

.booking-feature-page .booking-day-bar.w70 {
  width: 70%;
  background: var(--green);
}

.booking-feature-page .booking-day-bar.w80 {
  width: 80%;
  background: var(--green);
}

.booking-feature-page .booking-day-bar.w100 {
  width: 100%;
  background: var(--green);
}

.booking-feature-page .booking-rule-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.booking-feature-page .booking-rule {
  background: var(--gray-50);
  border-radius: 9px;
  padding: 12px;
}

.booking-feature-page .booking-rule.warning {
  background: var(--amber-light);
}

.booking-feature-page .booking-rule label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.booking-feature-page .booking-rule strong {
  font-size: 18px;
  letter-spacing: -0.5px;
}

.booking-feature-page .booking-calendar {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 24px 64px rgba(0, 0, 0, 0.08);
}

.booking-feature-page .booking-calendar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
}

.booking-feature-page .booking-calendar-title {
  font-size: 13px;
  font-weight: 600;
}

.booking-feature-page .booking-calendar-search {
  font-size: 11px;
  color: var(--gray-400);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 7px;
  padding: 5px 10px;
}

.booking-feature-page .booking-calendar-body {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.booking-feature-page .booking-calendar-side {
  border-right: 1px solid var(--gray-100);
  padding: 14px;
}

.booking-feature-page .booking-calendar-side h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.booking-feature-page .booking-calendar-side ul {
  list-style: none;
  margin-bottom: 12px;
}

.booking-feature-page .booking-calendar-side li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--gray-600);
  margin-bottom: 5px;
}

.booking-feature-page .booking-calendar-side .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.booking-feature-page .dot.green {
  background: #10b981;
}

.booking-feature-page .dot.indigo {
  background: #4f46e5;
}

.booking-feature-page .dot.amber {
  background: #f59e0b;
}

.booking-feature-page .dot.teal {
  background: #0d9488;
}

.booking-feature-page .dot.orange {
  background: #f97316;
}

.booking-feature-page .dot.violet {
  background: #8b5cf6;
}

.booking-feature-page .booking-calendar-grid {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.booking-feature-page .booking-calendar-head {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  padding: 8px 0;
}

.booking-feature-page .booking-calendar-head.active {
  color: var(--black);
}

.booking-feature-page .booking-calendar-cell {
  min-height: 120px;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-feature-page .booking-calendar-cell.active {
  background: rgba(79, 70, 229, 0.03);
}

.booking-feature-page .booking-chip {
  font-size: 11px;
  font-weight: 600;
  border-radius: 7px;
  padding: 6px 8px;
}

.booking-feature-page .booking-chip.green {
  background: #dcfce7;
  color: #166534;
}

.booking-feature-page .booking-chip.violet {
  background: #ede9fe;
  color: #5b21b6;
}

.booking-feature-page .booking-chip.amber {
  background: #fef3c7;
  color: #92400e;
}

.booking-feature-page .booking-chip.blue {
  background: #dbeafe;
  color: #1e40af;
}

.booking-feature-page .booking-popover {
  margin-top: auto;
  border-radius: 9px;
  border: 1px solid var(--gray-100);
  padding: 8px;
  background: var(--white);
}

.booking-feature-page .booking-popover strong {
  display: block;
  font-size: 10px;
  font-family: monospace;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.booking-feature-page .booking-popover span {
  font-size: 11px;
  color: var(--gray-600);
}

.booking-feature-page .booking-callout-grid,
.booking-feature-page .booking-customer-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.booking-feature-page .booking-callout-card {
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 22px;
  background: var(--white);
}

.booking-feature-page .booking-callout-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.booking-feature-page .booking-callout-card p {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.6;
}

.booking-feature-page .booking-notif-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-feature-page .booking-notif-item {
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
}

.booking-feature-page .booking-notif-item h3 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.booking-feature-page .booking-notif-item p {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.5;
}

.booking-feature-page .booking-notif-item small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--gray-400);
}

.booking-feature-page .booking-notif-soon {
  border-radius: 9px;
  padding: 10px 14px;
  background: var(--amber-light);
  color: #92400e;
  font-size: 12px;
  font-weight: 600;
}

/* ── CALENDAR MOCKUP ── */
.cal-mockup {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 24px 64px rgba(0, 0, 0, 0.08);
}

.cal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  background: white;
}

.cal-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cal-brand {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: -0.2px;
}

.cal-brand span {
  color: var(--accent);
}

.cal-location {
  font-size: 11px;
  color: var(--gray-400);
  background: var(--gray-50);
  padding: 3px 8px;
  border-radius: 5px;
}

.cal-topbar-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cal-view-btn {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  background: white;
  border: 1px solid var(--gray-200);
  padding: 5px 12px;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cal-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cal-nav-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-500);
  transition: all 0.15s;
}

.cal-nav-btn:hover {
  background: var(--gray-50);
  color: var(--black);
}

.cal-month-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.cal-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cal-search {
  font-size: 11px;
  color: var(--gray-400);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 5px 10px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Calendar body */
.cal-body {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.cal-sidebar {
  border-right: 1px solid var(--gray-100);
  padding: 14px;
  background: white;
}

.cal-mini {
  margin-bottom: 16px;
}

.cal-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cal-mini-title {
  font-size: 12px;
  font-weight: 600;
}

.cal-mini-nav {
  display: flex;
  gap: 3px;
}

.cal-mini-nav span {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gray-400);
  cursor: pointer;
}

.cal-mini-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.cal-mini-day {
  text-align: center;
  font-size: 10px;
  padding: 3px 1px;
  border-radius: 4px;
  cursor: pointer;
}

.cal-mini-day.hd {
  color: var(--gray-400);
  font-weight: 600;
  font-size: 9px;
}

.cal-mini-day.today {
  background: var(--black);
  color: white;
  font-weight: 600;
  border-radius: 50%;
}

.cal-mini-day.sel {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
  border-radius: 50%;
}

.cal-mini-day.other {
  color: var(--gray-300);
}

.cal-mini-day:hover:not(.hd):not(.today):not(.sel) {
  background: var(--gray-100);
  border-radius: 50%;
}

.cal-sidebar-section {
  margin-bottom: 14px;
}

.cal-sidebar-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.cal-service {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  font-size: 11px;
  color: var(--gray-600);
  cursor: pointer;
}

.cal-service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cal-staff {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  font-size: 11px;
  color: var(--gray-600);
}

.cal-staff-av {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* Week grid */
.cal-week {
  overflow: hidden;
}

.cal-week-header {
  display: grid;
  grid-template-columns: 40px repeat(7, 1fr);
  border-bottom: 1px solid var(--gray-100);
}

.cal-week-header-blank {
  border-right: 1px solid var(--gray-100);
}

.cal-day-col-hd {
  padding: 8px 6px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
}

.cal-day-col-hd .day-name {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--gray-400);
}

.cal-day-col-hd .day-num {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--gray-600);
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 2px auto 0;
  border-radius: 50%;
}

.cal-day-col-hd .day-num.today {
  background: var(--black);
  color: white;
}

.cal-day-col-hd .day-num.sel {
  background: var(--accent);
  color: white;
}

.cal-week-body {
  display: grid;
  grid-template-columns: 40px repeat(7, 1fr);
  position: relative;
}

.cal-time-slot {
  height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 4px 6px 0 0;
  font-size: 9px;
  color: var(--gray-400);
  font-weight: 500;
  border-right: 1px solid var(--gray-100);
}

.cal-day-col {
  border-right: 1px solid var(--gray-100);
  position: relative;
}

.cal-day-col:last-child {
  border-right: none;
}

.cal-cell {
  height: 48px;
  border-bottom: 1px solid var(--gray-50);
}

.cal-cell:last-child {
  border-bottom: none;
}

.cal-unavail {
  background: repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(0, 0, 0, 0.025) 4px, rgba(0, 0, 0, 0.025) 8px);
}

/* Booking blocks */
.cal-booking {
  position: absolute;
  left: 3px;
  right: 3px;
  border-radius: 7px;
  padding: 5px 7px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}

.cal-booking:hover {
  filter: brightness(0.95);
  transform: scale(1.01);
}

.cal-booking .bk-name {
  font-size: 11px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-booking .bk-service {
  font-size: 10px;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.cal-booking .bk-time {
  font-size: 9px;
  opacity: 0.65;
  margin-top: 1px;
  display: block;
}

/* Drag ghost */
.cal-booking.dragging {
  opacity: 0.5;
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cal-drop-target {
  position: absolute;
  left: 3px;
  right: 3px;
  border: 2px dashed var(--accent);
  border-radius: 7px;
  background: var(--accent-light);
  opacity: 0.6;
}

/* Today line */
.today-line {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.today-line::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-left: -4px;
}

.today-line::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: var(--red);
}

/* Popover */
.cal-popover {
  position: absolute;
  z-index: 50;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 16px 40px rgba(0, 0, 0, 0.12);
  width: 240px;
  top: 60px;
  left: 50%;
  transform: translateX(-30%);
}

.cal-popover-id {
  font-size: 10px;
  color: var(--gray-400);
  font-family: monospace;
  margin-bottom: 10px;
}

.cal-popover-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 3px;
}

.cal-popover-service {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 3px;
}

.cal-popover-meta {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cal-popover-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
  margin-top: 12px;
}

.cal-pop-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  padding: 7px 4px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.cpb-view {
  background: var(--accent);
  color: white;
}

.cpb-view:hover {
  background: #4338ca;
}

.cpb-noshow {
  background: var(--red-light);
  color: var(--red);
}

.cpb-noshow:hover {
  background: #fecaca;
}

.cpb-arrived {
  background: var(--green-light);
  color: #065f46;
}

.cpb-arrived:hover {
  background: #a7f3d0;
}

.cal-pop-cancel {
  width: 100%;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 8px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.15s;
}

.cal-pop-cancel:hover {
  color: var(--red);
  background: var(--red-light);
  border-color: transparent;
}

.cal-popover-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-popover-close:hover {
  background: var(--gray-100);
  color: var(--black);
}

.booking-feature-page .booking-location-card {
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  background: var(--gray-50);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.booking-feature-page .booking-location-card .card-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-feature-page .booking-location-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: -4px;
}

.booking-feature-page .booking-location-card span {
  font-size: 11px;
  color: var(--gray-400);
}

.booking-feature-page .booking-location-card em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  border-radius: 999px;
  padding: 3px 8px;
  background: var(--green-light);
  color: #065f46;
}

.booking-feature-page .booking-location-card em.busy {
  background: var(--amber-light);
  color: #92400e;
}

.booking-feature-page .booking-location-add {
  border: 1.5px dashed var(--gray-200);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--gray-400);
  font-size: 13px;
  margin-bottom: 12px;
}

.booking-feature-page .booking-location-summary {
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  background: var(--accent-light);
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.booking-feature-page .booking-location-summary label {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
}

.booking-feature-page .booking-location-summary strong {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

@media (max-width: 1100px) {
  .booking-feature-page .booking-hero {
    grid-template-columns: 1fr;
    padding: 36px 20px 56px;
  }
  .booking-feature-page .booking-how-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .booking-feature-page .booking-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .booking-feature-page .booking-calendar-body {
    grid-template-columns: 1fr;
  }
  .booking-feature-page .booking-calendar-side {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }
}
@media (max-width: 900px) {
  .booking-feature-page .booking-step-row {
    display: none;
  }
  .booking-feature-page .booking-stat-grid {
    grid-template-columns: 1fr;
  }
  .booking-feature-page .booking-stat-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
    padding: 28px;
  }
  .booking-feature-page .booking-stat-item:first-of-type {
    padding-top: 0;
  }
  .booking-feature-page .booking-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .booking-feature-page .booking-session-grid,
  .booking-feature-page .booking-payment-grid,
  .booking-feature-page .booking-callout-grid,
  .booking-feature-page .booking-customer-grid {
    grid-template-columns: 1fr;
  }
  .booking-feature-page .bpm-team-row {
    flex-direction: column;
  }
  .booking-feature-page .booking-rule-grid {
    grid-template-columns: 1fr;
  }
  .booking-feature-page .booking-calendar-grid {
    grid-template-columns: 1fr;
  }
  .booking-feature-page .booking-calendar-head {
    text-align: left;
    padding: 0;
    margin-top: 8px;
  }
}/*# sourceMappingURL=index-home-v2.css.map */