:root {
  --ink: #142039;
  --ink-soft: #52617a;
  --muted: #7f8da5;
  --line: #e6e8f2;
  --surface: #ffffff;
  --surface-alt: #f7f8fc;
  --purple: #7467e8;
  --purple-dark: #5f53d5;
  --purple-soft: #f0edff;
  --pink: #e991ba;
  --pink-soft: #fff0f7;
  --mint: #2bbf91;
  --mint-soft: #eafbf5;
  --blue: #5588e9;
  --blue-soft: #edf4ff;
  --amber: #eaa954;
  --amber-soft: #fff7e9;
  --peach: #f29e87;
  --shadow-sm: 0 8px 28px rgba(31, 38, 77, 0.07);
  --shadow-md: 0 24px 70px rgba(31, 38, 77, 0.12);
  --shadow-purple: 0 18px 44px rgba(116, 103, 232, 0.26);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(116, 103, 232, 0.38);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.announcement {
  position: relative;
  z-index: 60;
  background: #171f35;
  color: #f6f8ff;
  font-size: 12px;
}

.announcement__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5ee0af;
  box-shadow: 0 0 0 5px rgba(94, 224, 175, 0.12);
}

.announcement a {
  margin-left: 6px;
  color: #c8c0ff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(227, 229, 239, 0.86);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(31, 38, 77, 0.07);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--purple-soft), var(--pink-soft));
  color: var(--purple);
}

.brand__mark svg {
  width: 29px;
  height: 29px;
}

.brand__text {
  letter-spacing: -0.035em;
  font-size: 19px;
  font-weight: 540;
}

.brand__text strong {
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #536079;
  font-size: 13px;
  font-weight: 650;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 99px;
  background: var(--purple);
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button--small {
  min-height: 41px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 13px;
}

.button--large {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 15px;
}

.button--primary {
  background: linear-gradient(135deg, var(--purple), #8e68e8);
  color: white;
  box-shadow: var(--shadow-purple);
}

.button--primary:hover {
  box-shadow: 0 22px 50px rgba(116, 103, 232, 0.34);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(31, 38, 77, 0.04);
}

.button--outline {
  border-color: #dcd9f7;
  background: #fff;
  color: var(--purple-dark);
}

.button--outline:hover,
.button--ghost:hover {
  border-color: #c7c1f4;
  background: var(--purple-soft);
}

.button--white {
  background: white;
  color: var(--purple-dark);
  box-shadow: 0 18px 46px rgba(33, 25, 94, 0.25);
}

.play-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 8px;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-menu__inner {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  padding-bottom: 20px;
}

.mobile-menu__inner > a:not(.button) {
  border-radius: 10px;
  padding: 10px 4px;
  font-size: 15px;
  font-weight: 650;
}

.hero {
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 102px;
  padding-bottom: 98px;
  background:
    radial-gradient(circle at 15% 30%, rgba(237, 231, 255, 0.84), transparent 28%),
    radial-gradient(circle at 88% 28%, rgba(230, 251, 246, 0.88), transparent 23%),
    linear-gradient(180deg, #fdfdff 0%, #f8f9fd 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(116, 103, 232, 0.14) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 75%);
  content: "";
  opacity: 0.38;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.hero__glow--one {
  width: 290px;
  height: 290px;
  top: 20%;
  left: -170px;
  background: rgba(233, 145, 186, 0.16);
}

.hero__glow--two {
  width: 240px;
  height: 240px;
  right: -100px;
  bottom: 12%;
  background: rgba(43, 191, 145, 0.14);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  border: 1px solid #e2defa;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 12px;
  box-shadow: 0 8px 22px rgba(61, 48, 139, 0.05);
}

.eyebrow__icon {
  color: var(--pink);
}

.hero h1 {
  max-width: 650px;
  margin: 25px 0 22px;
  color: #111b30;
  font-size: clamp(47px, 5.2vw, 72px);
  font-weight: 800;
  letter-spacing: -0.064em;
  line-height: 0.99;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(105deg, var(--purple) 10%, #a762d3 56%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  color: #64728a;
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__trust li span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--mint);
  font-size: 10px;
}

.hero-product {
  position: relative;
  width: 650px;
  max-width: 100%;
  justify-self: end;
  perspective: 1200px;
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 220, 234, 0.95);
  border-radius: 22px;
  background: white;
  box-shadow: 0 35px 90px rgba(33, 41, 76, 0.18), 0 8px 24px rgba(33, 41, 76, 0.08);
  transform: rotateY(-2.5deg) rotateX(1deg);
}

.product-window__bar {
  height: 39px;
  display: grid;
  grid-template-columns: 70px 1fr 26px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ebeef5;
  background: #fbfcff;
  padding: 0 13px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4d9e5;
}

.window-dots i:first-child { background: #f5b2aa; }
.window-dots i:nth-child(2) { background: #f5d58e; }
.window-dots i:nth-child(3) { background: #9be0c2; }

.window-address {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #e9ebf3;
  border-radius: 7px;
  background: white;
  color: #8a95a8;
  padding: 0 10px;
  font-size: 8px;
}

.secure-dot {
  width: 8px;
  height: 8px;
  justify-self: end;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px var(--mint-soft);
}

.product-window__body {
  height: 420px;
  display: grid;
  grid-template-columns: 122px 1fr;
  background: #f7f8fc;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e7e8f1;
  background: linear-gradient(180deg, #f4f0ff, #fff 55%, #eef9ff);
  padding: 18px 11px 12px;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #29334b;
  font-size: 7px;
}

.mock-logo span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--purple);
  color: white;
  font-size: 7px;
  font-weight: 800;
}

.mock-logo b {
  white-space: nowrap;
}

.mock-nav {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.mock-nav span {
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  color: #748096;
  padding: 7px 8px;
  font-size: 7px;
  font-weight: 650;
}

.mock-nav span i {
  width: 10px;
  color: #8c97aa;
  font-style: normal;
  font-size: 9px;
}

.mock-nav span.active {
  border: 1px solid #ddd7ff;
  background: linear-gradient(90deg, #ece8ff, #f8f6ff);
  color: var(--purple-dark);
}

.mock-sidebar__footer {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: #8792a6;
  font-size: 6.5px;
}

.mock-sidebar__footer span { color: var(--mint); }

.mock-content {
  padding: 21px 22px;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mock-header small {
  display: block;
  margin-bottom: 5px;
  color: var(--purple);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mock-header h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.04em;
}

.mock-avatar {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 9px;
  background: var(--purple);
  color: white;
  font-size: 8px;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.metric-card {
  min-height: 82px;
  border: 1px solid rgba(226, 228, 238, 0.9);
  border-radius: 11px;
  background: white;
  padding: 10px;
}

.metric-card span,
.metric-card small {
  display: block;
  color: #7b879a;
  font-size: 6.5px;
}

.metric-card strong {
  display: block;
  margin: 4px 0 1px;
  font-size: 19px;
  letter-spacing: -0.06em;
}

.metric-card--lilac { background: linear-gradient(145deg, #fff, #f6f2ff); }
.metric-card--mint { background: linear-gradient(145deg, #fff, #effbf7); }
.metric-card--peach { background: linear-gradient(145deg, #fff, #fff5f0); }

.mock-panels {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr;
  gap: 10px;
  margin-top: 11px;
}

.agenda-panel,
.day-panel {
  border: 1px solid #e5e7ef;
  border-radius: 12px;
  background: white;
  padding: 11px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 7px;
}

.panel-title span {
  color: var(--purple);
  font-size: 6px;
}

.appointment {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #f0f1f5;
  padding: 8px 0;
  font-size: 6.5px;
}

.appointment time { color: #68758b; font-weight: 750; }
.appointment div strong,
.appointment div small { display: block; }
.appointment div small { margin-top: 1px; color: #99a1b1; font-size: 5.5px; }
.appointment > span { border-radius: 99px; background: #fff6e8; color: #bd7b22; padding: 3px 5px; font-size: 5px; font-weight: 700; }
.appointment--confirmed > span { background: var(--mint-soft); color: #188463; }

.day-panel {
  text-align: center;
}

.donut {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 19px auto 10px;
  border-radius: 50%;
  background: conic-gradient(var(--purple) 78%, #ebe9f9 0);
}

.donut::before {
  position: absolute;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: white;
  content: "";
}

.donut span { position: relative; z-index: 1; font-size: 15px; font-weight: 800; }
.donut span small { font-size: 7px; }
.day-panel p { margin: 0 0 2px; font-size: 7px; font-weight: 750; }
.day-panel > small { display: block; color: #8995a9; font-size: 5.5px; }

.floating-pill {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(225, 226, 238, 0.9);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  padding: 9px 12px;
  backdrop-filter: blur(10px);
  animation: float 4.5s ease-in-out infinite;
}

.floating-pill--message { top: -35px; right: 26px; }
.floating-pill--calendar { bottom: -35px; left: 74px; animation-delay: -2.2s; }

.floating-pill__icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.floating-pill__icon--green { background: var(--mint-soft); color: var(--mint); font-size: 13px; }
.floating-pill strong,
.floating-pill small { display: block; }
.floating-pill strong { color: #344057; font-size: 8px; }
.floating-pill small { margin-top: 1px; color: #8d97a8; font-size: 6px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.trust-rail {
  position: relative;
  z-index: 2;
  border-top: 1px solid #e9e9f2;
  border-bottom: 1px solid #e9e9f2;
  background: #fbfbfe;
}

.trust-rail__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-rail__grid > div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid #e9e9f2;
  padding: 22px 25px;
}

.trust-rail__grid > div:first-child { border-left: 1px solid #e9e9f2; }
.trust-rail__grid strong { color: var(--ink); font-size: 13px; }
.trust-rail__grid span { color: var(--ink-soft); font-size: 10px; line-height: 1.55; }

.segments {
  border-top: 1px solid #ececf3;
  border-bottom: 1px solid #ececf3;
  background: #fff;
  padding: 28px 0 31px;
}

.segments p {
  margin-bottom: 19px;
  color: #8490a4;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.segment-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.segment-list span {
  border: 1px solid #ecebf3;
  border-radius: 999px;
  background: #fbfbfe;
  color: #566279;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 650;
}

.problem-section {
  background: #fff;
}

.section-heading {
  max-width: 660px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.workflow-copy h2,
.faq-intro h2,
.integration-copy h2 {
  margin: 14px 0 18px;
  color: #151f35;
  font-size: clamp(35px, 4.2vw, 54px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-heading p,
.workflow-copy > p,
.faq-intro > p,
.integration-copy > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 58px;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 31px;
}

.comparison-card--before { background: linear-gradient(150deg, #fff, #fbf8fa); }
.comparison-card--after { border-color: #d9d4ff; background: linear-gradient(150deg, #fff, #f7f4ff); box-shadow: var(--shadow-sm); }

.comparison-card__label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #66728a;
  font-size: 12px;
  font-weight: 700;
}

.comparison-card__label span {
  border-radius: 999px;
  background: #f2edf0;
  color: #a56a7f;
  padding: 6px 10px;
}

.comparison-card--after .comparison-card__label span { background: var(--purple-soft); color: var(--purple-dark); }

.comparison-card ul {
  display: grid;
  gap: 17px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #4d5a71;
  font-size: 14px;
}

.comparison-card li > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: #f5edef;
  color: #bd7186;
  font-size: 13px;
  font-weight: 800;
}

.comparison-card--after li > span { background: var(--mint-soft); color: var(--mint); }

.features-section {
  overflow: hidden;
  background: #f7f8fc;
}

.features-section::before {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 10%;
  right: -290px;
  border-radius: 50%;
  background: rgba(223, 214, 255, 0.36);
  content: "";
  filter: blur(2px);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.feature-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #e4e6ef;
  border-radius: var(--radius-md);
  background: white;
  padding: 31px;
  box-shadow: 0 8px 28px rgba(32, 40, 77, 0.035);
}

.feature-card--wide {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 1.14fr);
  grid-column: span 2;
  align-items: center;
  gap: 38px;
  min-height: 390px;
}

.feature-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 13px;
  font-size: 18px;
  font-weight: 800;
}

.feature-icon--purple { background: var(--purple-soft); color: var(--purple); }
.feature-icon--green { background: var(--mint-soft); color: var(--mint); }
.feature-icon--blue { background: var(--blue-soft); color: var(--blue); }
.feature-icon--pink { background: var(--pink-soft); color: #cf6c9b; }
.feature-icon--amber { background: var(--amber-soft); color: var(--amber); }

.feature-tag {
  display: block;
  margin-bottom: 8px;
  color: #8b96a9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 460px;
  margin-bottom: 12px;
  color: #182239;
  font-size: 26px;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.feature-card > p,
.feature-card__copy p {
  max-width: 500px;
  color: #66738a;
  font-size: 14px;
  line-height: 1.72;
}

.feature-points {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #536078;
  font-size: 11px;
  font-weight: 700;
}

.feature-points li::before {
  width: 20px;
  height: 20px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: #ecfaf5;
  color: #17986d;
  content: "\2713";
  font-size: 10px;
  font-weight: 900;
}

.booking-demo {
  position: relative;
  min-height: 220px;
  align-self: stretch;
  border: 1px solid #e4e2f6;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f7f5ff);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(65, 52, 146, 0.09);
}

.booking-demo__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: #364159;
  font-size: 12px;
  font-weight: 750;
}

.booking-demo__top small { color: #8c96a8; font-size: 9px; font-weight: 600; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 25px;
}

.time-slots span {
  border: 1px solid #e1e3ed;
  border-radius: 9px;
  background: white;
  color: #5c687e;
  padding: 9px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.time-slots span.selected { border-color: var(--purple); background: var(--purple-soft); color: var(--purple-dark); }

.booking-demo__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  border-radius: 10px;
  background: var(--purple);
  color: white;
  padding: 11px 13px;
  font-size: 10px;
  font-weight: 750;
}

.feature-card--whatsapp { background: linear-gradient(160deg, #fff 48%, #effbf7); }
.feature-card--calendar { background: linear-gradient(160deg, #fff 48%, #f1f5ff); }
.feature-card--team { background: linear-gradient(160deg, #fff 48%, #fff4f9); }
.feature-card--crm { background: linear-gradient(160deg, #fff 48%, #fff8ed); }

.message-demo {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 42px;
  min-height: 120px;
  border-radius: 18px 18px 5px 18px;
  background: #dcf8ed;
  padding: 21px 22px;
  box-shadow: 0 18px 34px rgba(33, 130, 98, 0.09);
}

.message-bubble b,
.message-bubble span,
.message-bubble small { display: block; }
.message-bubble b { color: #236e58; font-size: 12px; }
.message-bubble span { margin-top: 6px; color: #53766a; font-size: 10px; }
.message-bubble small { margin-top: 18px; color: #5c9b88; font-size: 8px; text-align: right; }

.calendar-demo {
  position: absolute;
  right: 25px;
  bottom: 26px;
  left: 25px;
  border: 1px solid #dfe6f5;
  border-radius: 17px;
  background: white;
  padding: 18px;
  box-shadow: 0 18px 38px rgba(61, 93, 153, 0.08);
}

.calendar-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.calendar-week span {
  border-radius: 9px;
  color: #9aa3b3;
  padding: 6px;
  font-size: 7px;
  text-align: center;
}

.calendar-week small { display: block; margin-top: 2px; color: #4d5b72; font-size: 10px; font-weight: 750; }
.calendar-week span.today { background: var(--blue); color: white; }
.calendar-week span.today small { color: white; }

.calendar-event {
  display: grid;
  grid-template-columns: 4px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  border-radius: 10px;
  background: var(--blue-soft);
  padding: 10px;
}

.calendar-event > i { width: 4px; height: 30px; border-radius: 99px; background: var(--blue); }
.calendar-event b,
.calendar-event small { display: block; }
.calendar-event b { color: #41516b; font-size: 9px; }
.calendar-event small { margin-top: 2px; color: #7b8aa1; font-size: 7px; }
.calendar-event em { border-radius: 99px; background: white; color: var(--blue); padding: 4px 6px; font-size: 6px; font-style: normal; font-weight: 750; }

.team-demo {
  position: absolute;
  right: 30px;
  bottom: 35px;
  left: 30px;
  display: flex;
  align-items: center;
}

.avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-left: -10px;
  border: 4px solid white;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.avatar:first-child { margin-left: 0; }
.avatar--one { background: #816fe9; }
.avatar--two { background: #db7baa; }
.avatar--three { background: #46bc96; }
.avatar--more { background: #edf0f6; color: #657189; }

.crm-demo {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
  border: 1px solid #ede6d9;
  border-radius: 16px;
  background: white;
  padding: 17px;
  box-shadow: 0 18px 36px rgba(127, 86, 30, 0.07);
}

.crm-demo > div:first-child {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
}

.avatar--client { width: 42px; height: 42px; margin: 0; border: 0; background: var(--amber-soft); color: #ba7d2f; }
.crm-demo p { margin: 0; }
.crm-demo b,
.crm-demo small { display: block; }
.crm-demo b { color: #475267; font-size: 9px; }
.crm-demo small { color: #929baa; font-size: 7px; }
.crm-demo em { border-radius: 99px; background: var(--amber-soft); color: #b47729; padding: 4px 7px; font-size: 6px; font-style: normal; font-weight: 750; }
.crm-bar { height: 5px; margin-top: 15px; overflow: hidden; border-radius: 99px; background: #f1eee8; }
.crm-bar i { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--amber), #f2c17f); }

.feature-card--reputation { background: linear-gradient(135deg, #fff, #f8f6ff 58%, #fff2f8); }

.reputation-demo {
  border: 1px solid #e5e0fa;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  padding: 28px;
  box-shadow: 0 20px 48px rgba(72, 55, 159, 0.09);
}

.stars { color: #efb749; font-size: 22px; letter-spacing: 3px; }
.reputation-demo > p { margin: 9px 0 18px; color: #425069; font-size: 13px; font-weight: 750; }
.feedback-line { display: flex; gap: 6px; }
.feedback-line span { height: 7px; border-radius: 99px; background: #ecebf3; }
.feedback-line span:first-child { width: 58%; }
.feedback-line span:nth-child(2) { width: 23%; }
.feedback-line span:nth-child(3) { width: 12%; }

.recovery-status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 25px;
  border-radius: 13px;
  background: var(--mint-soft);
  padding: 13px;
}

.recovery-status i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--mint); font-size: 11px; font-style: normal; font-weight: 800; }
.recovery-status b,
.recovery-status small { display: block; }
.recovery-status b { color: #246d58; font-size: 9px; }
.recovery-status small { color: #659182; font-size: 7px; }

.workflow-section {
  overflow: hidden;
  background: #fff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(430px, 0.75fr);
  align-items: center;
  gap: 100px;
}

.workflow-steps {
  display: grid;
  gap: 5px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 41px 1fr;
  gap: 13px;
  border-radius: 14px;
  padding: 13px;
  cursor: default;
  transition: background 180ms ease, transform 180ms ease;
}

.workflow-steps li:hover,
.workflow-steps li.active {
  background: #f7f5ff;
  transform: translateX(4px);
}

.workflow-steps li > span {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid #e3e1f2;
  border-radius: 12px;
  background: white;
  color: #8c96a8;
  font-size: 9px;
  font-weight: 800;
}

.workflow-steps li.active > span { border-color: #d6d0ff; background: var(--purple); color: white; }
.workflow-steps b,
.workflow-steps small { display: block; }
.workflow-steps b { margin-bottom: 2px; color: #344057; font-size: 14px; }
.workflow-steps small { color: #7a879b; font-size: 12px; }

.phone-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 213, 255, 0.86), rgba(240, 247, 255, 0.42) 54%, transparent 70%);
}

.phone {
  position: relative;
  z-index: 2;
  width: 286px;
  border: 8px solid #1b2437;
  border-radius: 43px;
  background: #1b2437;
  padding: 4px;
  box-shadow: 0 35px 80px rgba(23, 31, 57, 0.28);
}

.phone__notch {
  position: absolute;
  z-index: 4;
  top: 13px;
  left: 50%;
  width: 78px;
  height: 21px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #1b2437;
}

.phone__screen {
  min-height: 560px;
  overflow: hidden;
  border-radius: 33px;
  background: linear-gradient(180deg, #faf9ff, white 33%);
  padding: 17px 17px 22px;
}

.phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 17px;
  color: #29344c;
  font-size: 8px;
  font-weight: 800;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #ececf3;
  padding: 5px 0 14px;
}

.mini-logo { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: var(--purple); color: white; font-size: 8px; font-weight: 800; }
.mobile-brand b,
.mobile-brand small { display: block; }
.mobile-brand b { color: #344057; font-size: 10px; }
.mobile-brand small { color: #8b96a8; font-size: 7px; }

.mobile-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin: 20px 0 24px; }
.mobile-progress i { height: 3px; border-radius: 99px; background: #e7e8ef; }
.mobile-progress i.done { background: #bdb4ff; }
.mobile-progress i.active { background: var(--purple); }

.mobile-kicker { color: var(--purple); font-size: 6px; font-weight: 850; letter-spacing: .1em; }
.phone__screen h3 { margin: 8px 0 20px; color: #283349; font-size: 17px; letter-spacing: -.04em; line-height: 1.2; }
.mobile-days { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.mobile-days span { border: 1px solid #e3e5ed; border-radius: 12px; background: white; color: #4f5c73; padding: 9px 4px; font-size: 11px; font-weight: 750; text-align: center; }
.mobile-days small { display: block; margin-bottom: 2px; color: #98a1b1; font-size: 6px; }
.mobile-days span.selected { border-color: var(--purple); background: var(--purple); color: white; box-shadow: 0 8px 18px rgba(116, 103, 232, .24); }
.mobile-days span.selected small { color: #e6e2ff; }
.mobile-period { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin: 23px 0 14px; border-radius: 10px; background: #f3f4f8; padding: 3px; }
.mobile-period span { border-radius: 8px; color: #8c96a8; padding: 7px; font-size: 7px; font-weight: 750; text-align: center; }
.mobile-period span.active { background: white; color: var(--purple); box-shadow: 0 4px 12px rgba(33, 41, 76, .08); }
.mobile-times { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-times span { border: 1px solid #e3e5ed; border-radius: 9px; color: #667289; padding: 9px; font-size: 8px; font-weight: 700; text-align: center; }
.mobile-times span.selected { border-color: #cfc8ff; background: var(--purple-soft); color: var(--purple-dark); }
.phone__screen button { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: 22px; border: 0; border-radius: 11px; background: var(--purple); color: white; padding: 12px 14px; font-size: 9px; font-weight: 750; }

.phone-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e4e5ed;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  color: #566279;
  padding: 11px 13px;
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.phone-badge span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; background: var(--mint-soft); color: var(--mint); font-size: 11px; }
.phone-badge--top { top: 75px; right: -10px; }
.phone-badge--bottom { bottom: 80px; left: -31px; }

.roles-section {
  background: #f8f9fd;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.role-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid #e3e5ee;
  border-radius: var(--radius-md);
  background: white;
  padding: 31px;
}

.role-card--highlight { border-color: #d7d1ff; background: linear-gradient(155deg, #fff, #f8f5ff); box-shadow: var(--shadow-sm); }
.role-card__number { position: absolute; top: 23px; right: 25px; color: #e0e2e9; font-size: 46px; font-weight: 800; letter-spacing: -.08em; }
.role-card__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 46px; border-radius: 15px; font-size: 21px; }
.role-card__icon--purple { background: var(--purple-soft); color: var(--purple); }
.role-card__icon--green { background: var(--mint-soft); color: var(--mint); }
.role-card__icon--pink { background: var(--pink-soft); color: #cf6c9b; }
.role-card h3 { margin-bottom: 12px; font-size: 22px; letter-spacing: -.04em; }
.role-card > p { color: #68758a; font-size: 13px; line-height: 1.7; }
.role-card ul { display: grid; gap: 9px; margin: 25px 0 0; padding: 0; list-style: none; }
.role-card li { display: flex; align-items: center; gap: 8px; color: #57647a; font-size: 12px; font-weight: 650; }
.role-card li::before { width: 5px; height: 5px; border-radius: 50%; background: var(--purple); content: ""; }

.integrations-section {
  background: #fff;
}

.integration-panel {
  min-height: 530px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #18233b, #202b47 58%, #2d2853);
  color: white;
  padding: 70px;
  box-shadow: 0 30px 80px rgba(24, 35, 59, 0.2);
}

.integration-copy .section-kicker { color: #c9c2ff; }
.integration-copy h2 { color: white; }
.integration-copy > p { color: #b4bfd2; }
.integration-copy ul { display: grid; gap: 18px; margin: 29px 0 0; padding: 0; list-style: none; }
.integration-copy li { display: grid; grid-template-columns: 28px 1fr; gap: 11px; }
.integration-copy .check { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; background: rgba(92, 221, 179, .13); color: #5cddb3; font-size: 11px; font-weight: 800; }
.integration-copy b,
.integration-copy small { display: block; }
.integration-copy b { color: #f3f6ff; font-size: 13px; }
.integration-copy small { margin-top: 3px; color: #98a7bf; font-size: 11px; line-height: 1.55; }

.integration-orbit {
  position: relative;
  width: 400px;
  height: 400px;
  justify-self: center;
}

.orbit { position: absolute; inset: 36px; border: 1px solid rgba(190, 187, 238, .18); border-radius: 50%; }
.orbit--two { inset: 92px; border-color: rgba(190, 187, 238, .25); }
.orbit-logo { position: absolute; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.09); color: white; box-shadow: 0 18px 44px rgba(4,8,22,.22); font-size: 19px; font-weight: 800; backdrop-filter: blur(10px); }
.orbit-logo--center { width: 96px; height: 96px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 28px; background: linear-gradient(145deg, var(--purple), #9d72e8); font-size: 25px; box-shadow: 0 24px 60px rgba(116,103,232,.35); }
.orbit-logo--whatsapp { top: 31px; left: 64px; color: #65ddb8; }
.orbit-logo--google { top: 54px; right: 44px; color: #fff; }
.orbit-logo--mail { bottom: 39px; left: 51px; color: #f0a9c9; }
.orbit-logo--calendar { right: 31px; bottom: 66px; color: #8fb8ff; font-size: 13px; }

.pricing-section {
  background: #f7f8fc;
}

.pricing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.billing-toggle {
  display: flex;
  border: 1px solid #e1e2eb;
  border-radius: 14px;
  background: white;
  padding: 4px;
  box-shadow: 0 8px 25px rgba(31,38,77,.04);
}

.billing-toggle button {
  min-height: 39px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #7a869a;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.billing-toggle button.active { background: var(--purple-soft); color: var(--purple-dark); }
.billing-toggle button span { margin-left: 4px; color: var(--mint); font-size: 8px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
  margin-top: 58px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #e1e3ec;
  border-radius: var(--radius-md);
  background: white;
  padding: 31px;
}

.price-card--featured { border: 2px solid var(--purple); box-shadow: 0 24px 60px rgba(70,58,156,.14); }
.popular-badge { position: absolute; top: -14px; right: 24px; border-radius: 99px; background: var(--purple); color: white; padding: 6px 11px; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-card__top span,
.price-card__top small { display: block; }
.price-card__top span { margin-bottom: 5px; color: #202b42; font-size: 17px; font-weight: 800; }
.price-card__top small { min-height: 35px; color: #7b879a; font-size: 11px; }
.price { display: flex; align-items: flex-start; margin-top: 27px; color: #182239; }
.price sup { margin-top: 9px; margin-right: 3px; font-size: 12px; font-weight: 750; }
.price strong { font-size: 49px; letter-spacing: -.065em; line-height: 1; }
.price > span { display: flex; flex-direction: column; margin-top: 8px; color: #7d899c; font-size: 9px; }
.price > span b { color: #303c54; font-size: 14px; }
.price-caption { margin: 9px 0 23px; color: #9aa3b1; font-size: 9px; }
.price-card ul { display: grid; gap: 12px; margin: 0 0 28px; padding: 23px 0 0; border-top: 1px solid #eff0f4; list-style: none; }
.price-card li { display: flex; gap: 9px; color: #5e6b81; font-size: 11px; }
.price-card li::before { width: 18px; height: 18px; display: grid; place-items: center; flex: none; border-radius: 50%; background: var(--mint-soft); color: var(--mint); content: "✓"; font-size: 8px; font-weight: 900; }
.price-card .button { width: 100%; margin-top: auto; }
.pricing-note { max-width: 740px; margin: 26px auto 0; color: #8994a6; font-size: 10px; line-height: 1.6; text-align: center; }

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  align-items: start;
  gap: 100px;
}

.faq-intro { position: sticky; top: 120px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--purple-dark); font-size: 13px; font-weight: 800; }
.text-link span { transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }
.faq-list { border-top: 1px solid #e7e8ef; }
.faq-list details { border-bottom: 1px solid #e7e8ef; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: #344057; font-size: 14px; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 24px; height: 24px; flex: none; border-radius: 50%; background: #f3f2fb; }
.faq-list summary span::before,
.faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: 9px; height: 1.5px; transform: translate(-50%, -50%); border-radius: 10px; background: var(--purple); content: ""; transition: transform 160ms ease; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details p { margin: -5px 48px 23px 0; color: #6d798e; font-size: 13px; line-height: 1.75; }

.final-cta {
  padding: 0 0 88px;
  background: white;
}

.final-cta__inner {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(125deg, #6c5ce0, #8064e4 48%, #b06ebd);
  color: white;
  padding: 70px;
  box-shadow: 0 32px 78px rgba(82,63,177,.25);
}

.final-cta__inner::before,
.final-cta__inner::after { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; }
.final-cta__inner::before { width: 430px; height: 430px; top: -220px; right: -130px; }
.final-cta__inner::after { width: 270px; height: 270px; right: -20px; bottom: -160px; }
.final-cta__inner > * { position: relative; z-index: 1; }
.final-cta__kicker { display: block; margin-bottom: 17px; color: #ded9ff; font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.final-cta h2 { margin-bottom: 15px; font-size: clamp(37px, 4.4vw, 54px); letter-spacing: -.055em; line-height: 1.07; }
.final-cta p { max-width: 640px; margin-bottom: 0; color: #e5e1f8; font-size: 15px; }
.final-cta__action { display: grid; gap: 13px; justify-items: stretch; }
.final-cta__action small { color: #e0dcf5; font-size: 9px; text-align: center; }

.final-cta__mini-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
  padding: 7px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(9px);
}

.final-cta__mini-panel span {
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 12px 0;
}

.final-cta__mini-panel span:last-child { border-bottom: 0; }

.final-cta__mini-panel i {
  width: 28px;
  height: 28px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, .15);
  color: #f1eeff;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .04em;
}

.final-cta__mini-panel b {
  color: white;
  font-size: 11px;
  font-weight: 750;
}

.site-footer {
  background: #151e32;
  color: #aeb8ca;
  padding: 70px 0 25px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
}

.brand--footer { color: white; }
.brand--footer .brand__mark { background: rgba(255,255,255,.08); color: #c9c2ff; }
.footer__brand > p { max-width: 340px; margin: 20px 0 0; color: #8996aa; font-size: 12px; line-height: 1.7; }
.footer__column { display: grid; align-content: start; gap: 10px; }
.footer__column h3 { margin: 0 0 8px; color: white; font-size: 11px; }
.footer__column a { color: #98a5b8; font-size: 11px; transition: color 160ms ease; }
.footer__column a:hover { color: white; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; color: #718096; font-size: 9px; }

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: #20bd75;
  color: white;
  box-shadow: 0 15px 35px rgba(24,155,96,.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 42px rgba(24,155,96,.36); }
.whatsapp-float svg { width: 28px; height: 28px; }

.platform-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(116, 103, 232, .11), transparent 24%),
    radial-gradient(circle at 95% 75%, rgba(43, 191, 145, .09), transparent 25%),
    #151e32;
  color: white;
}

.platform-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}

.platform-heading .section-heading { max-width: 760px; }
.platform-heading .section-kicker { color: #b9b0ff; }
.platform-heading h2 { color: white; }
.platform-heading > p {
  margin-bottom: 8px;
  color: #aeb8ca;
  font-size: 14px;
  line-height: 1.75;
}

.platform-explorer {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 28px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .22);
  backdrop-filter: blur(15px);
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 9px;
}

.platform-tabs button {
  min-width: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #9ca9bd;
  padding: 15px 12px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  text-align: left;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.platform-tabs button:hover { color: white; }
.platform-tabs button.active { background: white; color: var(--ink); box-shadow: 0 9px 28px rgba(0, 0, 0, .16); }
.platform-tabs button span { margin-right: 7px; color: #7c70ed; font-size: 9px; }

.platform-panel {
  padding: 42px;
  animation: platform-panel-in 260ms ease both;
}

.platform-panel[hidden] { display: none; }

@keyframes platform-panel-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.platform-panel__intro {
  display: grid;
  grid-template-columns: 110px minmax(240px, .8fr) minmax(300px, 1.2fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}

.platform-panel__intro > span {
  color: #b8afff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.platform-panel__intro h3 {
  margin: 0;
  color: white;
  font-size: 24px;
  letter-spacing: -.035em;
  line-height: 1.18;
}

.platform-panel__intro p {
  margin: 0;
  color: #aeb8ca;
  font-size: 12px;
  line-height: 1.7;
}

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

.module-grid article {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 17px;
  background: rgba(255, 255, 255, .045);
  padding: 19px;
  transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.module-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 175, 255, .36);
  background: rgba(255, 255, 255, .075);
}

.module-grid i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 10px;
  background: rgba(124, 112, 237, .17);
  color: #c7c0ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.module-grid h4 {
  margin: 2px 0 7px;
  color: #f9faff;
  font-size: 12px;
  line-height: 1.25;
}

.module-grid p {
  margin: 0;
  color: #9ca8bc;
  font-size: 10px;
  line-height: 1.62;
}

.platform-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  padding: 19px 22px;
}

.platform-note > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(94, 224, 175, .12);
  color: #5ee0af;
}

.platform-note p { margin: 0; color: #b5bfd0; font-size: 11px; }
.platform-note strong { color: white; }
.platform-note a { color: #c8c0ff; font-size: 11px; font-weight: 800; }

.institutional-section {
  border-top: 1px solid #e8eaf2;
  border-bottom: 1px solid #e8eaf2;
  background: linear-gradient(140deg, #fbfbfe, #f5f7fb);
  padding: 95px 0;
}

.institutional-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(480px, 1.2fr);
  align-items: start;
  gap: 90px;
}

.institutional-copy h2 {
  margin: 14px 0 20px;
  color: var(--ink);
  font-size: clamp(35px, 4vw, 51px);
  letter-spacing: -.055em;
  line-height: 1.08;
}

.institutional-copy p { max-width: 500px; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }

.institutional-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.institutional-points article {
  min-height: 165px;
  display: flex;
  gap: 14px;
  border: 1px solid #e3e6ef;
  border-radius: 18px;
  background: white;
  padding: 22px;
}

.institutional-points article > span {
  color: var(--purple);
  font-size: 9px;
  font-weight: 850;
}

.institutional-points h3 { margin: 0 0 8px; color: var(--ink); font-size: 13px; }
.institutional-points p { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.65; }

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 19px; }
  .hero__grid { grid-template-columns: .85fr 1.15fr; gap: 36px; }
  .hero-product { width: 590px; }
  .platform-heading { gap: 45px; }
  .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .institutional-grid { gap: 50px; }
  .workflow-grid { gap: 55px; }
  .integration-panel { gap: 25px; padding: 55px; }
  .integration-orbit { width: 350px; height: 350px; }
}

@media (max-width: 920px) {
  .section { padding: 90px 0; }
  .desktop-nav,
  .desktop-cta { display: none; }
  .menu-button { display: grid; }
  .hero { padding-top: 76px; }
  .hero__grid { grid-template-columns: 1fr; gap: 80px; }
  .hero__copy { max-width: 720px; text-align: center; margin-inline: auto; }
  .hero__lead { margin-inline: auto; }
  .hero__actions,
  .hero__trust { justify-content: center; }
  .hero-product { justify-self: center; }
  .trust-rail__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-rail__grid > div:nth-child(2) { border-right: 0; }
  .trust-rail__grid > div:nth-child(-n+2) { border-bottom: 1px solid #e9e9f2; }
  .platform-heading { grid-template-columns: 1fr; gap: 10px; }
  .platform-heading > p { max-width: 680px; }
  .platform-panel__intro { grid-template-columns: 90px 1fr; }
  .platform-panel__intro p { grid-column: 2; }
  .institutional-grid { grid-template-columns: 1fr; gap: 35px; }
  .institutional-copy { max-width: 680px; }
  .before-after-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; gap: 35px; }
  .workflow-copy { max-width: 680px; }
  .role-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .role-card { min-height: auto; }
  .integration-panel { grid-template-columns: 1fr; }
  .integration-copy { max-width: 680px; }
  .integration-orbit { margin-top: -20px; }
  .pricing-grid { max-width: 650px; margin-inline: auto; margin-top: 50px; }
  .price-card { min-height: auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: static; }
  .final-cta__inner { grid-template-columns: 1fr; gap: 35px; }
  .final-cta__action { max-width: 420px; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .announcement__inner { min-height: 39px; gap: 7px; font-size: 10px; }
  .announcement__inner a { display: none; }
  .header__inner { min-height: 67px; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__mark svg { width: 26px; height: 26px; }
  .brand__text { font-size: 17px; }
  .hero { min-height: auto; padding-top: 64px; padding-bottom: 82px; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 58px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__trust { gap: 10px 14px; }
  .hero-product { width: min(650px, 112%); margin-left: -6%; }
  .trust-rail__grid > div { min-height: 96px; padding: 18px; }
  .platform-section { padding-top: 85px; padding-bottom: 85px; }
  .platform-heading { margin-bottom: 38px; }
  .platform-tabs {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
  }
  .platform-tabs::-webkit-scrollbar { display: none; }
  .platform-tabs button { min-width: 145px; scroll-snap-align: start; text-align: center; }
  .platform-panel { padding: 28px 20px 22px; }
  .platform-panel__intro { grid-template-columns: 1fr; gap: 8px; }
  .platform-panel__intro p { grid-column: auto; margin-top: 5px; }
  .module-grid { grid-template-columns: 1fr; }
  .module-grid article { min-height: 124px; }
  .platform-note { grid-template-columns: auto 1fr; }
  .platform-note a { grid-column: 2; }
  .institutional-section { padding: 74px 0; }
  .institutional-points { grid-template-columns: 1fr; }
  .institutional-points article { min-height: 130px; }
  .product-window__body { height: 355px; grid-template-columns: 84px 1fr; }
  .mock-sidebar { padding: 13px 7px 9px; }
  .mock-logo b { display: none; }
  .mock-logo { justify-content: center; }
  .mock-nav span { justify-content: center; padding: 7px 3px; }
  .mock-nav span i { width: auto; }
  .mock-nav span { font-size: 0; }
  .mock-nav span i { font-size: 9px; }
  .mock-sidebar__footer { justify-content: center; font-size: 0; }
  .mock-content { padding: 16px 13px; }
  .mock-header h3 { font-size: 11px; }
  .metric-card { min-height: 69px; padding: 8px; }
  .metric-card span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .metric-card strong { font-size: 16px; }
  .mock-panels { grid-template-columns: 1fr; }
  .day-panel { display: none; }
  .appointment { grid-template-columns: 30px 1fr auto; }
  .floating-pill--message { top: -28px; right: 12px; }
  .floating-pill--calendar { bottom: -32px; left: 44px; }
  .floating-pill { transform: scale(.9); }
  .section-heading h2,
  .workflow-copy h2,
  .faq-intro h2,
  .integration-copy h2 { font-size: 38px; }
  .section-heading p,
  .workflow-copy > p,
  .faq-intro > p,
  .integration-copy > p { font-size: 15px; }
  .comparison-card { padding: 24px; }
  .comparison-card__label { align-items: flex-start; flex-direction: column; }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card--wide { grid-column: auto; grid-template-columns: 1fr; min-height: 420px; gap: 20px; padding: 25px; }
  .feature-card--booking { min-height: 650px; }
  .feature-card--reputation { min-height: 620px; }
  .booking-demo { align-self: auto; }
  .feature-card h3 { font-size: 23px; }
  .phone-stage { min-height: 610px; transform: scale(.9); margin: -30px 0; }
  .phone-badge--top { right: -8px; }
  .phone-badge--bottom { left: -8px; }
  .role-grid { gap: 12px; }
  .integration-panel { min-height: auto; border-radius: 25px; padding: 38px 24px 15px; }
  .integration-orbit { width: 330px; max-width: 110%; height: 330px; transform: scale(.88); }
  .pricing-header { align-items: flex-start; flex-direction: column; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; }
  .price-card { padding: 25px; }
  .final-cta { padding-bottom: 68px; }
  .final-cta__inner { min-height: 480px; border-radius: 25px; padding: 40px 25px; }
  .final-cta h2 { font-size: 39px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

@media (max-width: 430px) {
  .hero__trust { font-size: 10px; }
  .trust-rail__grid { grid-template-columns: 1fr; }
  .trust-rail__grid > div,
  .trust-rail__grid > div:first-child,
  .trust-rail__grid > div:nth-child(2) { border-right: 0; border-left: 0; border-bottom: 1px solid #e9e9f2; }
  .trust-rail__grid > div:last-child { border-bottom: 0; }
  .platform-panel { padding-inline: 15px; }
  .module-grid article { padding: 17px; }
  .platform-note { align-items: start; padding: 17px; }
  .segments p { font-size: 9px; }
  .segment-list { gap: 8px; }
  .segment-list span { padding: 7px 10px; font-size: 9px; }
  .feature-card--booking { min-height: 625px; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .phone-stage { margin-inline: -15px; }
  .phone-badge { font-size: 8px; }
  .phone-badge--top { top: 54px; right: -5px; }
  .phone-badge--bottom { bottom: 58px; left: -5px; }
  .integration-orbit { margin-left: -12px; }
  .faq-list summary { font-size: 13px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
