:root {
  --bg: #ffffff;
  --bg-soft: #f6fbf9;
  --bg-mint: #e8f8f2;
  --text: #0b1020;
  --muted: #586170;
  --line: #d8e4e0;
  --mint: #2fbd93;
  --mint-deep: #087965;
  --mint-light: #def5ed;
  --coral: #f16458;
  --coral-deep: #df4e43;
  --ink: #0d1426;
  --gold: #c7a65b;
  --peach: #fff0dd;
  --shadow-soft: 0 34px 90px rgba(8, 24, 38, 0.16);
  --shadow-card: 0 18px 46px rgba(8, 24, 38, 0.09);
  --radius: 8px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 46%, #ffffff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

main,
section,
.hero-product,
.dashboard-window,
.dashboard-sidebar,
.calendar-panel,
.calendar-grid,
.feature-layout,
.feature-column,
.feature-line,
.booking-flow,
	.flow-form,
	.slot-grid,
	.confirmation-strip,
	.audience-visual,
	.mini-admin,
	.demo-path-grid,
	.pricing-grid {
	  min-width: 0;
	}

section,
#top {
  scroll-margin-top: 90px;
}

body.nav-open {
  overflow: hidden;
}

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

.nowrap {
  white-space: nowrap;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(216, 228, 224, 0.72);
  box-shadow: 0 12px 40px rgba(8, 24, 38, 0.045);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  min-height: 90px;
  padding: 0 clamp(24px, 4vw, 58px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 29px;
  font-weight: 800;
  gap: 12px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 10px);
  width: 28px;
}

.brand-mark span {
  background: linear-gradient(135deg, var(--mint), #8ee0c8);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(47, 189, 147, 0.2);
  display: block;
  height: 10px;
}

.brand-mark span:nth-child(1) {
  grid-column: 1 / 3;
  width: 18px;
}

.brand-mark span:nth-child(2) {
  opacity: 0.55;
}

.brand-mark span:nth-child(3) {
  transform: translateY(-6px);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  justify-content: center;
}

.desktop-nav a,
.site-footer nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--mint-deep);
}

.header-cta {
  background: linear-gradient(135deg, var(--ink), #1f2f4c);
  border-radius: 7px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  justify-self: end;
  line-height: 1;
  padding: 18px 30px;
  box-shadow: 0 16px 36px rgba(13, 20, 38, 0.22);
}

.header-cta:hover,
.button.primary:hover {
  background: linear-gradient(135deg, var(--coral-deep), #d94238);
}

.menu-button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  display: none;
  height: 44px;
  justify-content: center;
  justify-self: end;
  width: 44px;
}

.mobile-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: none;
  flex-direction: column;
  gap: 4px;
  left: 0;
  padding: 16px 24px 24px;
  position: fixed;
  right: 0;
  top: 76px;
  z-index: 19;
}

.mobile-nav a {
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 12px;
}

.mobile-nav a:last-child {
  background: var(--coral);
  color: #fff;
  text-align: center;
}

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: clamp(20px, 3.5vw, 48px);
  padding-right: clamp(20px, 3.5vw, 48px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(480px, 0.82fr) minmax(650px, 1.12fr);
  gap: clamp(34px, 4vw, 56px);
  min-height: 780px;
  padding-bottom: 62px;
  padding-top: clamp(34px, 4vw, 58px);
  position: relative;
}

.hero::before {
  background:
    linear-gradient(135deg, rgba(47, 189, 147, 0.11), transparent 38%),
    linear-gradient(315deg, rgba(199, 166, 91, 0.13), transparent 34%);
  content: "";
  height: 100%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}

.hero-copy {
  align-self: center;
  max-width: 560px;
  padding-bottom: 50px;
}

.hero-copy h1,
.section-heading h2,
.audience-copy h2 {
  color: var(--text);
  font-size: clamp(44px, 4.6vw, 62px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.hero-copy p {
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 560;
  line-height: 1.55;
  margin: 34px 0 0;
  max-width: 530px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
}

.button {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 58px;
  padding: 0 32px;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--coral), #f47a61);
  color: #fff;
  box-shadow: 0 18px 38px rgba(241, 100, 88, 0.26);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 20, 38, 0.22);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(8, 24, 38, 0.06);
}

.button.secondary:hover {
  background: #fff;
  border-color: rgba(8, 121, 101, 0.42);
  color: var(--mint-deep);
}

.hero-product {
  align-self: center;
  min-height: 610px;
  position: relative;
}

.dashboard-window {
  background: #fff;
  border: 1px solid rgba(216, 228, 224, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  min-height: 610px;
  overflow: hidden;
}

.dashboard-sidebar {
  background: linear-gradient(180deg, #0d1426 0%, #111c32 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 16px;
}

.mini-brand {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  margin-bottom: 24px;
}

.mini-mark {
  background: linear-gradient(135deg, var(--mint), #88ddc8);
  border-radius: 6px;
  height: 18px;
  width: 18px;
}

.sidebar-item {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  height: 42px;
  padding: 0 10px;
  text-align: left;
  width: 100%;
}

.sidebar-item + .sidebar-item {
  margin-top: 8px;
}

.sidebar-item svg {
  color: rgba(255, 255, 255, 0.55);
  height: 17px;
  width: 17px;
}

.sidebar-item.active {
  background: rgba(47, 189, 147, 0.16);
  color: #a8f1dc;
}

.sidebar-item.active svg {
  color: #a8f1dc;
}

.calendar-panel {
  background:
    linear-gradient(180deg, rgba(246, 251, 249, 0.78), #fff 42%);
  min-width: 0;
  padding: 26px;
}

.calendar-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr auto;
  padding-bottom: 20px;
}

.calendar-toolbar strong {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.toolbar-controls {
  display: flex;
  gap: 8px;
}

.calendar-toolbar button,
.view-switch span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  min-width: 34px;
  padding: 0 12px;
}

.calendar-toolbar button svg {
  height: 16px;
  width: 16px;
}

.view-switch {
  display: flex;
}

.view-switch span {
  border-radius: 0;
  min-width: 58px;
}

.view-switch span:first-child {
  border-radius: 6px 0 0 6px;
}

.view-switch span:last-child {
  border-radius: 0 6px 6px 0;
}

.view-switch .selected {
  background: #eef9f5;
  color: var(--mint-deep);
}

.calendar-grid {
  display: grid;
  grid-template-columns: 58px repeat(7, minmax(76px, 1fr));
  min-height: 500px;
  overflow: hidden;
}

.time-col {
  border-right: 1px solid var(--line);
  color: #6f7684;
  display: grid;
  font-size: 11px;
  font-weight: 700;
  grid-template-rows: 46px repeat(10, 46px);
  padding-top: 46px;
}

.time-col span {
  align-items: start;
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}

.day {
  background:
    linear-gradient(to bottom, transparent 45px, rgba(220, 230, 228, 0.72) 46px, transparent 47px) top / 100% 46px repeat-y,
    #fff;
  border-right: 1px solid var(--line);
  min-width: 0;
  padding-top: 12px;
  position: relative;
}

.day:last-child {
  border-right: 0;
}

.day b,
.day > span {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

.day b {
  color: var(--text);
  font-weight: 800;
}

.day > span {
  color: #606877;
  font-weight: 700;
  margin-top: 4px;
}

.day.current::after {
  align-items: center;
  background: var(--mint-deep);
  border-radius: 999px;
  color: #fff;
  content: "21";
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 24px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 24px;
  transform: translateX(-50%);
  width: 24px;
}

.day.quiet {
  background:
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(220, 230, 228, 0.5) 8px 10px),
    linear-gradient(to bottom, transparent 45px, rgba(220, 230, 228, 0.72) 46px, transparent 47px) top / 100% 46px repeat-y,
    #fbfdfc;
}

.appointment {
  border: 1px solid rgba(16, 19, 38, 0.06);
  border-radius: 6px;
  height: var(--height);
  left: 8px;
  overflow: hidden;
  padding: 10px 8px;
  position: absolute;
  right: 8px;
  top: var(--top);
}

.appointment strong,
.appointment small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.appointment strong {
  font-size: 11px;
  font-weight: 800;
}

.appointment small {
  color: #4e5667;
  font-size: 10px;
  font-weight: 700;
  margin-top: 4px;
}

.appointment.mint {
  background: #dff5ee;
}

.appointment.coral {
  background: #ffe3df;
}

.appointment.peach {
  background: var(--peach);
}

.appointment.blue {
  background: #e8f1fa;
}

.appointment.lavender {
  background: #eeeafd;
}

.appointment.sage {
  background: #ebf4df;
}

.appointment.pink {
  background: #fde9f3;
}

.phone-preview {
  background: #fff;
  border: 8px solid #0c1222;
  border-radius: 32px;
  bottom: -34px;
  box-shadow: 0 30px 70px rgba(8, 24, 38, 0.24);
  padding: 20px 16px 14px;
  position: absolute;
  right: -28px;
  width: 238px;
}

.phone-top {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: space-between;
  margin-bottom: 18px;
}

.phone-top span:last-child {
  background: #0c1222;
  border-radius: 999px;
  height: 4px;
  width: 38px;
}

.phone-preview h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
}

.phone-preview p {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 12px;
}

.service-row {
  align-items: center;
  background: linear-gradient(180deg, #fff, #fbfdfc);
  border: 1px solid rgba(216, 228, 224, 0.95);
  border-radius: 7px;
  display: grid;
  gap: 9px;
  grid-template-columns: 52px 1fr 16px;
  min-height: 68px;
  padding: 8px;
  text-align: left;
  width: 100%;
}

.service-row + .service-row {
  margin-top: 8px;
}

.service-row.active {
  border-color: rgba(47, 189, 147, 0.55);
  box-shadow: 0 10px 24px rgba(8, 24, 38, 0.08);
}

.service-thumb {
  background: linear-gradient(135deg, #f3d0c0, #a0674e);
  background-image: url("./assets/images/service-collage.png");
  background-position: 0% 50%;
  background-size: 400% 100%;
  border-radius: 6px;
  display: block;
  height: 52px;
  width: 52px;
}

.service-thumb.nails {
  background-image: url("./assets/images/service-collage.png");
  background-position: 33% 50%;
  background-size: 400% 100%;
}

.service-thumb.massage {
  background-image: url("./assets/images/service-collage.png");
  background-position: 66% 50%;
  background-size: 400% 100%;
}

.service-row strong,
.service-row small {
  display: block;
}

.service-row strong {
  font-size: 12px;
  font-weight: 800;
}

.service-row small {
  color: #626a78;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 3px;
}

.service-row svg {
  height: 15px;
  width: 15px;
}

.continue-button {
  background: linear-gradient(135deg, var(--ink), #1f2f4c);
  border: 0;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  height: 42px;
  margin-top: 12px;
  width: 100%;
}

.powered {
  color: #7a808d;
  display: block;
  font-size: 8px;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
}

.feature-preview {
  background:
    linear-gradient(135deg, #0d1426 0%, #14243a 58%, #0f3a33 100%);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(250px, 1fr) repeat(3, minmax(180px, 0.7fr));
  margin: -26px auto 0;
  max-width: 100%;
  padding: 48px clamp(20px, 6vw, 72px);
}

.feature-preview h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0;
  max-width: 520px;
}

.feature-preview article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-height: 156px;
  padding: 26px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.feature-preview svg {
  color: #8ee0c8;
  height: 36px;
  margin-bottom: 26px;
  width: 36px;
}

.feature-preview strong,
.feature-preview span {
  display: block;
}

.feature-preview strong {
  font-size: 16px;
  font-weight: 800;
}

.feature-preview span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 8px;
}

.product-demo {
  background:
    linear-gradient(180deg, #fff 0%, #f7fbf9 100%);
  padding-bottom: 96px;
  padding-top: 96px;
}

.demo-path-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
}

.demo-path-card {
  background: linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
  border: 1px solid rgba(216, 228, 224, 0.9);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(8, 24, 38, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(24px, 4vw, 42px);
}

.demo-path-card.darker {
  background:
    linear-gradient(135deg, #0d1426 0%, #172641 48%, #123f37 100%);
  border-color: rgba(13, 20, 38, 0.95);
  color: #fff;
}

.demo-path-icon {
  align-items: center;
  background: #ecf8f3;
  border: 1px solid rgba(47, 189, 147, 0.32);
  border-radius: 8px;
  color: var(--mint-deep);
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.demo-path-icon svg {
  height: 28px;
  width: 28px;
}

.demo-path-card.darker .demo-path-icon {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  color: #8edfc8;
}

.path-kicker {
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 30px 0 10px;
  text-transform: uppercase;
}

.demo-path-card h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin: 0;
}

.demo-path-card p:not(.path-kicker) {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  margin: 18px 0 0;
}

.demo-path-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 30px;
  padding: 0;
}

.demo-path-card li {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
}

.demo-path-card li::before {
  background: var(--mint);
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.demo-path-card.darker .path-kicker,
.demo-path-card.darker p:not(.path-kicker),
.demo-path-card.darker li {
  color: rgba(255, 255, 255, 0.78);
}

.demo-path-card.darker h3 {
  color: #fff;
}

.demo-path-card.darker li::before {
  background: #8edfc8;
}

.demo-path-card.darker .button.secondary {
  border-color: #fff;
  color: #101326;
  box-shadow: none;
}

.features {
  background:
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 100%);
  border-radius: 0;
  max-width: none;
  padding-bottom: 92px;
  padding-top: 98px;
}

.features > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 560;
  line-height: 1.75;
  margin: 22px auto 0;
  max-width: 780px;
}

.feature-layout {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(220px, 0.76fr) minmax(520px, 1.35fr) minmax(220px, 0.76fr);
  margin-top: 68px;
}

.feature-column {
  display: grid;
  gap: 78px;
}

.feature-line {
  align-items: flex-start;
  display: grid;
  gap: 22px;
  grid-template-columns: 72px 1fr;
}

.feature-line h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.feature-line p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.7;
  margin: 12px 0 0;
}

.icon-box {
  align-items: center;
  background: rgba(47, 189, 147, 0.1);
  border: 1px solid rgba(47, 189, 147, 0.24);
  border-radius: 8px;
  color: var(--mint-deep);
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.icon-box svg {
  height: 34px;
  width: 34px;
}

.icon-box.coral-icon {
  background: rgba(241, 100, 88, 0.08);
  border-color: rgba(241, 100, 88, 0.24);
  color: var(--coral);
}

.booking-flow {
  background: #fff;
  border: 1px solid rgba(216, 228, 224, 0.9);
  border-radius: 8px;
  box-shadow: 0 24px 66px rgba(8, 24, 38, 0.1);
  padding: clamp(22px, 3vw, 34px);
}

.flow-steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.flow-steps::before {
  background: repeating-linear-gradient(90deg, rgba(56, 185, 145, 0.36) 0 8px, transparent 8px 14px);
  content: "";
  height: 1px;
  left: 54px;
  position: absolute;
  right: 54px;
  top: 28px;
}

.flow-steps li {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  position: relative;
  text-align: center;
}

.flow-steps span {
  align-items: center;
  background: #fff;
  border: 2px solid rgba(56, 185, 145, 0.58);
  border-radius: 50%;
  color: var(--mint-deep);
  display: flex;
  height: 56px;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  width: 56px;
  z-index: 1;
}

.flow-steps .confirmed span {
  border-color: rgba(255, 100, 86, 0.62);
  color: var(--coral);
}

.flow-form {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}

.select-box {
  background: #fbfdfc;
  border: 1px solid rgba(216, 228, 224, 0.95);
  border-radius: 7px;
  padding: 14px;
}

.select-box label,
.select-box span {
  display: block;
}

.select-box label {
  color: #747b89;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.select-box strong {
  font-size: 14px;
  font-weight: 800;
}

.select-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 5px;
}

.slot-grid {
  display: grid;
  gap: 8px;
  grid-column: 1 / 3;
  grid-template-columns: repeat(4, 1fr);
}

.slot-grid button {
  background: #fff;
  border: 1px solid rgba(216, 228, 224, 0.95);
  border-radius: 6px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  height: 38px;
}

.slot-grid button.selected {
  background: linear-gradient(135deg, var(--mint), #59d4b4);
  border-color: transparent;
  color: #fff;
}

.confirmation-strip {
  align-items: center;
  background: linear-gradient(90deg, #eef9f5, #fff);
  border: 1px solid rgba(216, 228, 224, 0.95);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 34px 1fr auto;
  margin-top: 18px;
  padding: 14px;
}

.confirmation-strip svg {
  background: #fff;
  border: 2px solid rgba(56, 185, 145, 0.48);
  border-radius: 50%;
  color: var(--mint-deep);
  height: 34px;
  padding: 7px;
  width: 34px;
}

.confirmation-strip span {
  font-size: 13px;
  font-weight: 800;
}

.confirmation-strip button {
  background: linear-gradient(135deg, var(--coral), #f47a61);
  border: 0;
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  height: 40px;
  padding: 0 18px;
}

.trust-row {
  align-items: center;
  color: #525967;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  gap: 24px;
  justify-content: center;
  margin-top: 54px;
}

.trust-row span {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.trust-row span::before {
  background: var(--mint);
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.audience {
  align-items: center;
  display: grid;
  gap: clamp(38px, 5vw, 72px);
  grid-template-columns: minmax(390px, 0.9fr) minmax(560px, 1.1fr);
  padding-bottom: 108px;
  padding-top: 108px;
}

.audience-copy h2 {
  font-size: clamp(40px, 4.7vw, 68px);
}

.audience-copy p {
  border-left: 4px solid var(--gold);
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
  margin: 34px 0 0;
  padding-left: 24px;
}

.industry-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}

.industry-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 228, 224, 0.92);
  border-radius: 8px;
  color: var(--text);
  display: flex;
  font-size: 15px;
  font-weight: 800;
  gap: 12px;
  min-height: 66px;
  padding: 10px 14px;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.industry-card:hover,
.industry-card.active {
  border-color: rgba(47, 189, 147, 0.52);
  box-shadow: 0 16px 36px rgba(8, 24, 38, 0.09);
  transform: translateY(-1px);
}

.industry-card span {
  align-items: center;
  background: rgba(47, 189, 147, 0.1);
  border: 1px solid rgba(47, 189, 147, 0.22);
  border-radius: 7px;
  color: var(--mint-deep);
  display: flex;
  flex: 0 0 auto;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.industry-card svg {
  height: 21px;
  width: 21px;
}

.audience-visual {
  display: grid;
  gap: 20px;
}

.service-collage {
  border: 1px solid rgba(216, 228, 224, 0.95);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(8, 24, 38, 0.12);
  margin: 0;
  overflow: hidden;
}

.service-collage img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.mini-admin {
  background: #fff;
  border: 1px solid rgba(216, 228, 224, 0.95);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(8, 24, 38, 0.09);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 240px;
  padding: 20px;
}

.admin-top {
  align-items: center;
  display: flex;
  gap: 16px;
  grid-column: 1 / 3;
  justify-content: space-between;
}

.admin-top strong {
  font-size: 18px;
  font-weight: 800;
}

.admin-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-schedule {
  background:
    linear-gradient(to bottom, transparent 45px, rgba(220, 230, 228, 0.65) 46px, transparent 47px) top / 100% 46px repeat-y,
    #fbfdfc;
  border: 1px solid rgba(216, 228, 224, 0.95);
  border-radius: 8px;
  display: grid;
  gap: 10px 16px;
  grid-template-columns: 58px 1fr;
  min-height: 180px;
  padding: 14px;
}

.admin-schedule > span:nth-child(odd) {
  color: #767d8a;
  font-size: 12px;
  font-weight: 800;
  padding-top: 4px;
}

.booking {
  background: #e8f8f2;
  border: 1px solid rgba(56, 185, 145, 0.4);
  border-radius: 7px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  padding: 10px 12px;
}

.booking.mint-bg {
  background: #e1f7ee;
}

.booking.coral-bg {
  background: #ffe8e5;
  border-color: rgba(255, 100, 86, 0.35);
}

.admin-note {
  align-self: center;
  background: linear-gradient(180deg, #f7fbf9, #fff);
  border: 1px solid rgba(216, 228, 224, 0.95);
  border-radius: 8px;
  padding: 18px;
}

.admin-note strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.admin-note p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin: 12px 0 0;
}

.pricing {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbf9 100%);
  max-width: none;
  padding-bottom: 54px;
  padding-top: 102px;
}

.pricing > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
}

.price-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 228, 224, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 24, 38, 0.055);
  display: flex;
  flex-direction: column;
  min-height: 468px;
  padding: 30px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.price-card:hover {
  border-color: rgba(47, 189, 147, 0.34);
  box-shadow: 0 24px 60px rgba(8, 24, 38, 0.09);
  transform: translateY(-2px);
}

.price-card.featured {
  background:
    linear-gradient(180deg, #ffffff 0%, #fff9f8 100%);
  border-color: rgba(241, 100, 88, 0.46);
  box-shadow: 0 28px 70px rgba(241, 100, 88, 0.14);
  position: relative;
}

.price-card.featured::before {
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 8px 8px 0 0;
  content: "";
  height: 4px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.price-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.price-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin: 12px 0 0;
}

.price {
  align-items: baseline;
  display: flex;
  gap: 8px;
  margin-top: 26px;
}

.price strong {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 28px 0 30px;
  padding: 0;
}

.price-card li {
  align-items: center;
  color: #2f3748;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
}

.price-card li::before {
  background: linear-gradient(135deg, var(--mint), #86dfc7);
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.button.full {
  margin-top: auto;
  width: 100%;
}

.support-strip {
  align-items: center;
  background: linear-gradient(90deg, #0d1426, #123f37);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 800;
  gap: 22px;
  justify-content: space-around;
  margin-top: 34px;
  padding: 28px;
}

.support-strip span {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.support-strip span::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.site-footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid rgba(216, 228, 224, 0.9);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 1fr) auto minmax(230px, auto);
  justify-content: space-between;
  min-height: 162px;
  padding: 32px clamp(24px, 4vw, 58px);
}

.site-footer .brand {
  font-size: 24px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 360px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-end;
}

.footer-actions {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-actions .button {
  min-height: 56px;
}

.advisor-link {
  color: var(--mint-deep);
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 80px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }

  .hero-copy {
    max-width: 780px;
    padding-bottom: 0;
  }

  .hero-product {
    min-height: 580px;
  }

  .phone-preview {
    right: 22px;
  }

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

  .feature-preview > div {
    grid-column: 1 / -1;
  }

  .feature-layout,
  .audience {
    grid-template-columns: 1fr;
  }

  .feature-column {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 0 20px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  body.nav-open .mobile-nav {
    display: flex;
  }

  .brand {
    font-size: 25px;
  }

  .hero {
    padding-top: 48px;
  }

  .dashboard-window {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    align-items: center;
    border-bottom: 1px solid var(--line);
    border-right: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px;
    width: 100%;
  }

  .mini-brand {
    flex: 0 0 auto;
    margin: 0 14px 0 0;
  }

  .sidebar-item {
    flex: 0 0 auto;
    width: auto;
  }

  .sidebar-item + .sidebar-item {
    margin-top: 0;
  }

  .calendar-panel {
    padding: 18px;
  }

  .calendar-toolbar {
    grid-template-columns: auto 1fr;
  }

  .view-switch {
    display: none;
  }

  .calendar-grid {
    grid-template-columns: 48px repeat(4, minmax(86px, 1fr));
    overflow-x: auto;
  }

  .calendar-grid .day:nth-last-child(-n + 3) {
    display: none;
  }

  .phone-preview {
    bottom: -52px;
    right: 16px;
    transform: scale(0.88);
    transform-origin: bottom right;
  }

  .feature-preview,
  .demo-path-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-column,
  .flow-form,
  .mini-admin {
    grid-template-columns: 1fr;
  }

  .admin-top,
  .confirmation-strip,
  .slot-grid,
  .mini-admin {
    grid-column: auto;
  }

  .confirmation-strip {
    align-items: stretch;
    grid-template-columns: 34px 1fr;
  }

  .confirmation-strip button {
    grid-column: 1 / 3;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav,
  .footer-actions {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy h1,
  .section-heading h2,
  .audience-copy h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-copy p,
  .audience-copy p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    min-height: 690px;
  }

  .dashboard-window {
    min-height: 548px;
  }

  .calendar-toolbar {
    gap: 12px;
  }

  .calendar-toolbar strong {
    font-size: 14px;
  }

  .calendar-grid {
    grid-template-columns: 44px repeat(3, 102px);
    min-height: 430px;
  }

  .calendar-grid .day:nth-last-child(-n + 4) {
    display: none;
  }

  .time-col {
    grid-template-rows: 40px repeat(10, 39px);
    padding-top: 40px;
  }

  .day {
    background:
      linear-gradient(to bottom, transparent 38px, rgba(220, 230, 228, 0.72) 39px, transparent 40px) top / 100% 39px repeat-y,
      #fff;
  }

  .appointment {
    left: 6px;
    right: 6px;
    transform: scaleY(0.85);
    transform-origin: top;
  }

  .phone-preview {
    bottom: -16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) scale(0.92);
    transform-origin: bottom center;
  }

  .feature-preview {
    margin-top: 0;
    padding: 42px 18px;
  }

  .features,
  .audience,
  .product-demo,
  .pricing {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .flow-steps {
    grid-template-columns: repeat(5, 74px);
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .flow-steps::before {
    display: none;
  }

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

  .feature-line {
    gap: 16px;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .icon-box {
    height: 58px;
    width: 58px;
  }

  .icon-box svg {
    height: 28px;
    width: 28px;
  }

  .booking-flow {
    padding: 18px;
  }

  .trust-row,
  .support-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card {
    min-height: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
