:root {
  --ink: #17171f;
  --ink-soft: #2c2c37;
  --muted: #6e6e7c;
  --line: rgba(23, 23, 31, 0.1);
  --surface: #ffffff;
  --soft: #f6f6f9;
  --soft-cyan: #e9fffe;
  --cyan: #25f4ee;
  --cyan-deep: #00aeb3;
  --pink: #fe2c55;
  --pink-soft: #ff4f9d;
  --violet: #8a62ee;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow-sm: 0 14px 42px rgba(25, 25, 38, 0.09);
  --shadow-lg: 0 32px 90px rgba(31, 31, 48, 0.16);
  --container: 1200px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 118px 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(20, 20, 30, 0.05);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 15px;
}

.brand:focus-visible {
  outline: 3px solid rgba(37, 244, 238, 0.55);
  outline-offset: 4px;
}

.brand-art {
  width: 150px;
  height: 64px;
  overflow: hidden;
  display: block;
  border: 0;
  background: transparent;
}

.brand-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #4d4d59;
  transition: color 180ms ease;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--ink);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 6px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease;
}

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

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-outline {
  color: var(--ink);
  border: 1px solid #d9dbe3;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 23, 31, 0.06);
}

.button-outline:hover {
  color: var(--ink);
  border-color: var(--cyan);
  background: #f8ffff;
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible {
  outline: 3px solid rgba(37, 244, 238, 0.55);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button > i {
  font-size: 17px;
  line-height: 1;
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  border-radius: 14px;
  font-size: 13px;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 8px 8px 0 rgba(37, 244, 238, 0.28);
}

.button-dark:hover {
  box-shadow: 5px 5px 0 rgba(254, 44, 85, 0.32);
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(24, 24, 33, 0.19), 6px 6px 0 rgba(37, 244, 238, 0.55);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(24, 24, 33, 0.22), 6px 6px 0 rgba(254, 44, 85, 0.48);
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 6px 6px 0 var(--cyan);
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  padding: 164px 0 92px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfbfd 72%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: radial-gradient(rgba(23, 23, 31, 0.11) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to right, #000, transparent 38%, transparent 62%, #000);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-orb-cyan {
  width: 360px;
  height: 360px;
  top: 90px;
  right: 8%;
  background: var(--cyan);
}

.hero-orb-pink {
  width: 290px;
  height: 290px;
  right: 38%;
  bottom: 40px;
  background: #ff87bd;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  padding-bottom: 12px;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: #474753;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 24px rgba(22, 22, 31, 0.05);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 5px 0 0 rgba(254, 44, 85, 0.68);
}

.hero h1 {
  max-width: 630px;
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #00bac1 10%, #4c90dd 44%, var(--pink-soft) 85%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-price {
  position: relative;
  width: fit-content;
  min-width: 350px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 5px 16px;
  margin-top: 26px;
  padding: 16px 20px 15px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(105deg, rgba(37, 244, 238, 0.95), rgba(254, 44, 85, 0.72)) border-box;
  box-shadow: 0 16px 36px rgba(23, 23, 31, 0.1), 8px 8px 0 rgba(37, 244, 238, 0.16);
}

.hero-price::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -70px;
  width: 42px;
  height: 200%;
  background: rgba(255, 255, 255, 0.7);
  transform: rotate(22deg);
  animation: hero-price-shine 4.5s ease-in-out infinite;
}

.hero-price-label {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #087d7b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-price-value {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.hero-price-value > small {
  color: #777783;
  font-size: 12px;
  font-weight: 750;
}

.hero-price-value strong {
  color: var(--ink);
  font-size: 38px;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.hero-price-value strong sup {
  position: relative;
  top: -0.45em;
  font-size: 14px;
  letter-spacing: 0;
}

.hero-price-value b {
  color: var(--muted);
  font-size: 12px;
}

.hero-price-detail {
  align-self: center;
  padding-left: 16px;
  color: #575863;
  border-left: 1px solid #dedfe6;
  font-size: 12px;
  font-weight: 750;
}

@keyframes hero-price-shine {
  0%, 64% { left: -70px; }
  88%, 100% { left: calc(100% + 70px); }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5d5d6a;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 14px;
  color: var(--ink);
}

.text-link span {
  color: var(--pink);
  font-size: 18px;
}

.text-link i {
  color: var(--pink);
  font-size: 16px;
}

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

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
}

.proof-faces {
  display: flex;
}

.proof-faces span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.proof-faces span:first-child {
  margin-left: 0;
  background: var(--pink);
}

.proof-faces span:nth-child(2) {
  color: var(--ink);
  background: var(--cyan);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 50px 0 42px;
}

.visual-halo {
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(37, 244, 238, 0.6), rgba(255, 255, 255, 0), rgba(254, 44, 85, 0.38), rgba(255, 255, 255, 0));
  filter: blur(44px);
  opacity: 0.48;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 31, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.window-bar {
  height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid #ececf1;
  background: #fcfcfd;
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7d7df;
}

.window-controls span:first-child {
  background: var(--pink);
}

.window-controls span:nth-child(2) {
  background: #ffd266;
}

.window-controls span:last-child {
  background: var(--cyan);
}

.window-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #737380;
  font-size: 12px;
  font-weight: 800;
}

.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24c77a;
  box-shadow: 0 0 0 4px rgba(36, 199, 122, 0.12);
}

.window-avatar {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  justify-self: end;
  color: #fff;
  border-radius: 10px;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.product-workspace {
  height: 440px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 185px;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 16px 0 12px;
  background: #17171f;
}

.mini-bot {
  position: relative;
  width: 34px;
  height: 26px;
  margin-bottom: 8px;
  border: 2px solid #fff;
  border-radius: 12px 12px 11px 11px;
  background: linear-gradient(135deg, var(--cyan), #fff 44%, var(--pink));
}

.mini-bot::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 7px;
  top: -8px;
  left: 15px;
  background: #fff;
}

.mini-bot::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: -12px;
  left: 13.5px;
  border-radius: 50%;
  background: var(--pink);
}

.mini-bot span,
.mini-bot i {
  position: absolute;
  top: 10px;
  width: 5px;
  height: 3px;
  border-top: 2px solid var(--ink);
  border-radius: 50%;
}

.mini-bot span {
  left: 8px;
}

.mini-bot i {
  right: 8px;
}

.side-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #8c8c99;
  border-radius: 11px;
}

.side-icon.active {
  color: var(--ink);
  background: var(--cyan);
}

.side-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-spacer {
  flex: 1;
}

.conversation-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: 59px 1fr 54px;
  border-right: 1px solid #ececf1;
  background: #fbfbfc;
}

.conversation-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-bottom: 1px solid #ececf1;
  background: #fff;
}

.client-avatar {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c5aed, #ff73a9);
  font-size: 12px;
  font-weight: 900;
}

.conversation-head div:nth-child(2) {
  min-width: 0;
  display: grid;
}

.conversation-head strong {
  font-size: 13px;
}

.conversation-head span {
  color: #36ae77;
  font-size: 12px;
  font-weight: 700;
}

.conversation-head button {
  margin-left: auto;
  padding: 4px;
  color: #8c8c97;
  border: 0;
  background: transparent;
}

.conversation-body {
  overflow: hidden;
  padding: 14px 14px 10px;
}

.date-chip {
  width: fit-content;
  display: block;
  margin: 0 auto 12px;
  padding: 3px 8px;
  color: #8b8b97;
  border-radius: 999px;
  background: #eeeef2;
  font-size: 12px;
  font-weight: 800;
}

.message {
  max-width: 82%;
  margin-bottom: 10px;
  padding: 10px 11px 7px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.45;
  box-shadow: 0 5px 15px rgba(20, 20, 30, 0.05);
}

.message time {
  display: block;
  margin-top: 5px;
  color: #9898a4;
  font-size: 12px;
  text-align: right;
}

.message time b {
  color: #00b7bd;
}

.message-client {
  margin-left: auto;
  border-bottom-right-radius: 3px;
  background: #fff;
}

.message-bot {
  border-bottom-left-radius: 3px;
  background: var(--soft-cyan);
}

.typing-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 8px;
  color: #83838e;
  font-size: 12px;
}

.bot-avatar-small {
  width: 21px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid #e2e2e7;
  border-radius: 7px;
  background: #fff;
}

.bot-avatar-small i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan-deep);
}

.bot-avatar-small i:last-child {
  background: var(--pink);
}

.time-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.time-options span {
  padding: 5px 7px;
  border: 1px solid rgba(0, 174, 179, 0.22);
  border-radius: 7px;
  background: #fff;
  color: #087a7e;
  font-size: 12px;
  font-weight: 800;
}

.conversation-input {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  border-top: 1px solid #ececf1;
  background: #fff;
}

.conversation-input > span {
  flex: 1;
  color: #a0a0aa;
  font-size: 12px;
}

.conversation-input button {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: #f2f2f5;
}

.conversation-input .send-button {
  color: var(--ink);
  background: var(--cyan);
}

.send-button svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schedule-panel {
  padding: 16px 13px;
  background: #fff;
}

.schedule-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.schedule-title span {
  font-size: 12px;
  font-weight: 850;
}

.schedule-title strong {
  color: var(--pink);
  font-size: 16px;
}

.calendar-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 18px;
}

.calendar-strip span {
  height: 44px;
  display: grid;
  place-content: center;
  color: #696976;
  border: 1px solid #ececf1;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.calendar-strip small {
  display: block;
  color: #aaaab4;
  font-size: 12px;
}

.calendar-strip .today {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 3px 3px 0 var(--cyan);
}

.calendar-strip .today small {
  color: var(--cyan);
}

.appointment {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 7px;
  margin-bottom: 9px;
  padding: 9px 7px 9px 10px;
  overflow: hidden;
  border-radius: 9px;
  background: #f4f1ff;
}

.appointment::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--violet);
}

.appointment-cyan {
  background: var(--soft-cyan);
}

.appointment-cyan::before {
  background: var(--cyan-deep);
}

.appointment-pink {
  background: #fff0f4;
}

.appointment-pink::before {
  background: var(--pink);
}

.appointment time {
  color: #7b7b87;
  font-size: 12px;
  font-weight: 800;
}

.appointment div {
  min-width: 0;
  display: grid;
}

.appointment strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.appointment span {
  color: #92929d;
  font-size: 12px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(23, 23, 31, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.floating-card > div:last-child {
  display: grid;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card span {
  color: #858590;
  font-size: 12px;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 11px;
  background: var(--cyan);
}

.floating-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-conversion {
  bottom: 8px;
  left: -28px;
  animation: floating-card 4.6s ease-in-out infinite;
}

.floating-message {
  top: 22px;
  right: -24px;
  animation: floating-card 4.6s 1.2s ease-in-out infinite;
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(254, 44, 85, 0.13);
}

.audience-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

.audience-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.audience-inner p {
  flex: 0 0 auto;
  margin: 0;
  color: #666875;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 750;
}

.audience-list i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-deep), var(--pink));
}

.pain-section {
  position: relative;
  background:
    radial-gradient(circle at 8% 8%, rgba(37, 244, 238, 0.12), transparent 26%),
    #f7f7fa;
}

.pain-title,
.pricing-heading,
.faq-heading {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.pain-lead,
.pricing-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.pain-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 35px rgba(23, 23, 31, 0.04);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pain-card:hover {
  border-color: rgba(0, 174, 179, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.pain-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--ink);
  border-radius: 15px;
  background: var(--cyan);
  font-size: 21px;
}

.pain-icon-pink {
  color: #fff;
  background: var(--pink);
}

.pain-icon-violet {
  color: #fff;
  background: var(--violet);
}

.pain-icon-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 4px 4px 0 rgba(37, 244, 238, 0.6);
}

.pain-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.solution-bridge {
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 28px;
  color: #fff;
  border-radius: 24px;
  background: var(--ink);
  box-shadow: 8px 8px 0 rgba(254, 44, 85, 0.2);
}

.solution-bridge > span,
.solution-bridge > a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
}

.solution-bridge > span {
  color: var(--ink);
  background: var(--cyan);
  font-size: 20px;
}

.solution-bridge > a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.solution-bridge > a:hover {
  color: var(--ink);
  background: #fff;
  transform: translateY(3px);
}

.solution-bridge p {
  margin: 0;
  color: #b6b6c1;
  font-size: 14px;
}

.solution-bridge strong {
  color: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

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

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #777783;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-kicker span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(23, 23, 31, 0.15);
  border-radius: 50%;
  font-size: 12px;
}

.section-heading h2,
.workflow-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-heading > p,
.workflow-copy > p {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.centered > p {
  margin-inline: auto;
}

.solution-section {
  background: #fff;
}

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

.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.feature-chat {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  background:
    radial-gradient(circle at 88% 15%, rgba(37, 244, 238, 0.25), transparent 36%),
    #f6f6f9;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 15px;
}

.feature-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon > i {
  font-size: 22px;
  line-height: 1;
}

.icon-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--cyan);
}

.icon-cyan {
  color: var(--ink);
  background: var(--cyan);
}

.icon-pink {
  color: #fff;
  background: var(--pink);
}

.icon-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 4px 4px 0 var(--pink);
}

.feature-label {
  display: block;
  margin-bottom: 9px;
  color: #777784;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 400px;
  margin: 0;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.feature-card p {
  max-width: 420px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.chat-visual {
  align-self: end;
  padding-top: 30px;
}

.chat-bubble {
  margin-bottom: 12px;
  padding: 14px 15px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 10px 26px rgba(23, 23, 31, 0.08);
}

.chat-bubble.pale {
  margin-left: 26px;
  border-bottom-right-radius: 3px;
  background: #fff;
}

.chat-bubble.dark {
  margin-right: 16px;
  color: #fff;
  border-bottom-left-radius: 3px;
  background: var(--ink);
}

.chat-status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 18px auto 0;
  color: #777784;
  font-size: 12px;
  font-weight: 750;
}

.chat-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #29c87d;
  box-shadow: 0 0 0 4px rgba(41, 200, 125, 0.14);
}

.feature-agenda {
  background: #f0fffe;
}

.feature-clientes {
  background: #fff4f7;
}

.feature-products {
  min-height: 410px;
  background:
    radial-gradient(circle at 94% 8%, rgba(138, 98, 238, 0.2), transparent 34%),
    linear-gradient(145deg, #f6fffe, #f8f5ff);
}

.feature-products .feature-icon {
  margin-bottom: 20px;
}

.icon-products {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan-deep), var(--violet));
  box-shadow: 4px 4px 0 rgba(254, 44, 85, 0.75);
}

.stock-preview {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 35px rgba(30, 30, 50, 0.08);
}

.stock-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid var(--line);
  color: #7e7e8b;
  font-size: 11px;
}

.stock-preview-head strong {
  color: var(--ink);
  font-size: 13px;
}

.stock-product {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
}

.stock-product > i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #008f94;
  border-radius: 11px;
  background: var(--soft-cyan);
}

.stock-product > span {
  display: grid;
}

.stock-product strong,
.stock-product > b {
  font-size: 11px;
}

.stock-product small {
  color: var(--muted);
  font-size: 9px;
}

.stock-sale {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.stock-sale > i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--cyan);
}

.stock-sale small {
  color: #aaaab6;
  font-size: 9px;
  font-weight: 600;
}

.mini-calendar {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  padding: 18px;
  border: 1px solid rgba(0, 174, 179, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.calendar-days,
.calendar-cells {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.calendar-days span {
  color: #8e9a9a;
  font-size: 12px;
  font-weight: 800;
}

.calendar-cells i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  justify-self: center;
  margin-top: 9px;
  border-radius: 9px;
  background: #eff4f4;
  font-size: 12px;
  font-style: normal;
}

.calendar-cells .selected {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 3px 3px 0 var(--ink);
}

.client-stack {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
  display: flex;
  align-items: center;
}

.client-stack span,
.client-stack b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-left: -10px;
  color: #fff;
  border: 5px solid #fff4f7;
  border-radius: 50%;
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.client-stack span:first-child {
  margin-left: 0;
  background: var(--pink);
}

.client-stack span:nth-child(2) {
  color: var(--ink);
  background: var(--cyan);
}

.client-stack span:nth-child(3) {
  background: var(--violet);
}

.client-stack b {
  margin-left: auto;
  color: var(--ink);
  border: 0;
  background: #fff;
  box-shadow: 0 8px 25px rgba(23, 23, 31, 0.09);
}

.feature-finance {
  min-height: 360px;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(254, 44, 85, 0.35), transparent 30%),
    radial-gradient(circle at 42% 110%, rgba(37, 244, 238, 0.18), transparent 40%),
    var(--ink);
}

.feature-finance .feature-label,
.feature-finance p {
  color: #aaaab6;
}

.finance-chart {
  align-self: end;
  padding: 23px 22px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.chart-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.chart-head span {
  color: #aaaab5;
  font-size: 12px;
}

.chart-head strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.finance-chart svg {
  width: 100%;
  height: 150px;
  overflow: visible;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  stroke-linecap: round;
}

.home-acquisition {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111117;
}

.home-acquisition-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 70% 48%, #000 0 42%, transparent 76%);
}

.home-acquisition-orb {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
}

.acquisition-orb-cyan {
  top: -140px;
  right: -120px;
  background: var(--cyan);
}

.acquisition-orb-pink {
  bottom: -210px;
  left: 23%;
  background: var(--pink);
}

.home-acquisition-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 78px;
}

.home-acquisition-copy .section-kicker {
  color: var(--cyan);
}

.home-acquisition-copy .section-kicker span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.home-acquisition-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 850;
  letter-spacing: -0.058em;
  line-height: 1.04;
}

.home-acquisition-copy h2 span {
  color: transparent;
  background: linear-gradient(95deg, var(--cyan), #6eaef1 36%, var(--violet) 64%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
}

.home-acquisition-copy > p {
  max-width: 570px;
  margin: 24px 0 0;
  color: #b9b9c5;
  font-size: 17px;
}

.home-acquisition-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 29px 0 30px;
}

.home-acquisition-sources span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #d0d0d9;
  font-size: 10px;
  font-weight: 800;
}

.home-acquisition-sources i,
.home-acquisition-sources b {
  color: var(--cyan);
  font-style: normal;
}

.home-acquisition-cta {
  box-shadow: 7px 7px 0 var(--cyan);
}

.home-acquisition-visual {
  position: relative;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  background: linear-gradient(150deg, rgba(43, 43, 56, 0.96), rgba(23, 23, 31, 0.98));
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.44), 0 0 85px rgba(37, 244, 238, 0.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.acquisition-window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2px 5px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
}

.acquisition-window-bar > span {
  display: flex;
  gap: 5px;
}

.acquisition-window-bar > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.acquisition-window-bar > span i:nth-child(2) { background: #ffd166; }
.acquisition-window-bar > span i:nth-child(3) { background: var(--cyan); }

.acquisition-window-bar > small {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #aaaab7;
  font-size: 8px;
  font-weight: 800;
}

.acquisition-window-bar > small i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(37, 244, 238, 0.11);
}

.home-traffic-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 14px 0 0;
}

.home-traffic-cards article {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.home-traffic-cards article > i,
.home-traffic-cards article > b {
  width: 31px;
  height: 31px;
  display: grid;
  flex: 0 0 31px;
  place-items: center;
  margin: 0;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  font-style: normal;
  font-size: 13px;
}

.home-traffic-cards article:nth-child(2) > b {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.home-traffic-cards article > span {
  display: grid;
  min-width: 0;
}

.home-traffic-cards small {
  color: #90909e;
  font-size: 7px;
}

.home-traffic-cards strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-traffic-cards article > b:last-child,
.home-traffic-cards article > em {
  width: auto;
  height: auto;
  display: block;
  flex: initial;
  margin-left: auto;
  color: var(--cyan);
  background: transparent;
  font-size: 9px;
  font-style: normal;
}

.home-flow-dots {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

.home-flow-dots::before {
  content: "";
  position: absolute;
  right: 15%;
  left: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0.45;
}

.home-flow-dots i {
  position: relative;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: home-acquisition-pulse 1.8s ease-in-out infinite;
}

.home-flow-dots i:nth-child(2) { animation-delay: -0.4s; }
.home-flow-dots i:nth-child(3) { background: var(--pink); box-shadow: 0 0 12px var(--pink); animation-delay: -0.8s; }
.home-flow-dots i:nth-child(4) { animation-delay: -1.2s; }

.home-acquisition-dashboard {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: #17171f;
}

.home-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.home-dashboard-head > span { display: grid; }
.home-dashboard-head small { color: #858596; font-size: 7px; letter-spacing: 0.13em; }
.home-dashboard-head strong { font-size: 11px; }
.home-dashboard-head > b { padding: 5px 8px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 999px; color: #9b9baa; font-size: 7px; }

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

.home-acquisition-kpis article {
  display: grid;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.home-acquisition-kpis i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 7px;
  color: #111;
  background: var(--cyan);
  font-size: 10px;
}

.home-acquisition-kpis article:nth-child(2) i { color: #fff; background: var(--pink); }
.home-acquisition-kpis article:nth-child(3) i { color: #fff; background: var(--violet); }
.home-acquisition-kpis small { color: #9b9bab; font-size: 7px; }
.home-acquisition-kpis strong { font-size: 20px; line-height: 1.1; }
.home-acquisition-kpis span { color: #777789; font-size: 6px; }

.home-origin-bars {
  display: grid;
  gap: 6px;
  margin-top: 9px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.home-origin-bars > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.home-origin-bars > div span { display: grid; }
.home-origin-bars > div small { color: #858596; font-size: 6px; }
.home-origin-bars > div strong { font-size: 8px; }
.home-origin-bars > div > b { color: var(--cyan); font-size: 7px; }

.home-origin-bars p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 16px;
  margin: 0;
  padding: 0 6px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 6px;
}

.home-origin-bars p::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--home-bar);
  background: linear-gradient(90deg, var(--home-tone), transparent);
  opacity: 0.42;
}

.home-origin-bars p i,
.home-origin-bars p b {
  position: relative;
  z-index: 1;
  font-style: normal;
}

.home-acquisition-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  animation: home-acquisition-float 4s ease-in-out infinite;
}

.home-acquisition-float > i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #111;
  background: var(--cyan);
}

.home-acquisition-float > span { display: grid; }
.home-acquisition-float strong { font-size: 9px; }
.home-acquisition-float small { color: #777785; font-size: 7px; }
.float-conversation { top: 215px; left: -36px; }
.float-booking { right: -35px; bottom: 66px; animation-delay: -2s; }
.float-booking > i { color: #fff; background: var(--pink); }

.home-illustrative-note {
  display: block;
  padding: 8px 4px 0;
  color: #777789;
  font-size: 7px;
  text-align: center;
}

@keyframes home-acquisition-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

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

.workflow-section {
  background: #f6f6f9;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 90px;
}

.workflow-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.workflow-copy > p {
  margin-bottom: 30px;
}

.text-link-dark {
  color: var(--ink);
}

.workflow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-step {
  min-height: 190px;
  display: grid;
  grid-template-columns: 46px 1fr 64px;
  align-items: center;
  gap: 25px;
  margin-bottom: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.workflow-step:hover {
  transform: translateX(-6px);
  box-shadow: var(--shadow-sm);
}

.step-number {
  color: #9696a1;
  font-size: 13px;
  font-weight: 900;
}

.workflow-step h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #effffd;
}

.workflow-step:nth-child(2) .step-icon {
  background: #fff0f5;
}

.workflow-step:nth-child(3) .step-icon {
  background: #f1edff;
}

.step-icon svg {
  width: 26px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.segments-section {
  background: #fff;
}

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

.segment-card {
  min-height: 355px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fafafd;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.segment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-sm);
}

.segment-index {
  color: #9a9aa5;
  font-size: 12px;
  font-weight: 900;
}

.segment-symbol {
  position: relative;
  width: 98px;
  height: 98px;
  margin: 46px auto 40px;
}

.symbol-clinic {
  border-radius: 30px;
  background: var(--cyan);
  box-shadow: 8px 8px 0 rgba(23, 23, 31, 0.9);
}

.symbol-clinic i {
  position: absolute;
  background: var(--ink);
  border-radius: 999px;
}

.symbol-clinic i:first-child {
  width: 46px;
  height: 13px;
  top: 42px;
  left: 26px;
}

.symbol-clinic i:last-child {
  width: 13px;
  height: 46px;
  top: 25px;
  left: 43px;
}

.symbol-salon {
  border: 3px solid var(--pink);
  border-radius: 50%;
}

.symbol-salon i {
  position: absolute;
  width: 4px;
  height: 58px;
  top: 18px;
  border-radius: 999px;
  background: var(--pink);
  transform-origin: bottom;
}

.symbol-salon i:first-child {
  left: 39px;
  transform: rotate(-32deg);
}

.symbol-salon i:nth-child(2) {
  left: 53px;
  transform: rotate(32deg);
}

.symbol-salon i:last-child {
  width: 13px;
  height: 13px;
  top: 16px;
  left: 18px;
  border-radius: 50%;
  box-shadow: 48px 0 0 var(--pink);
}

.symbol-studio {
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(135deg, var(--violet), var(--pink-soft));
  transform: rotate(-12deg);
}

.symbol-studio i {
  position: absolute;
  width: 40px;
  height: 22px;
  top: 38px;
  left: 30px;
  border-bottom: 5px solid #fff;
  border-radius: 50%;
  transform: rotate(12deg);
}

.symbol-pro {
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
}

.symbol-pro i:first-child {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 18px;
  left: 31px;
  border-radius: 50%;
  background: var(--cyan);
}

.symbol-pro i:last-child {
  position: absolute;
  width: 60px;
  height: 30px;
  bottom: 13px;
  left: 18px;
  border-radius: 32px 32px 10px 10px;
  background: var(--pink);
}

.segment-card h3 {
  margin: auto 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.segment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.segment-card-dark {
  color: #fff;
  background: var(--ink);
}

.segment-card-dark p,
.segment-card-dark .segment-index {
  color: #aaaab6;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 44, 85, 0.1), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(37, 244, 238, 0.16), transparent 34%),
    #f7f7fa;
}

.pricing-lead {
  max-width: 590px;
  margin-top: 22px;
}

.value-points {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.value-points > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4d4d59;
  font-size: 13px;
  font-weight: 700;
}

.value-points i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font-size: 15px;
}

.price-card {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  overflow: hidden;
  padding: 42px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 0%, rgba(254, 44, 85, 0.4), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(37, 244, 238, 0.2), transparent 35%),
    var(--ink);
  box-shadow: var(--shadow-lg);
}

.price-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 440px;
  top: -130px;
  left: -190px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(8px);
  transform: rotate(28deg);
  animation: price-shine 7s ease-in-out infinite;
  pointer-events: none;
}

.price-ribbon {
  position: absolute;
  top: 22px;
  right: -39px;
  width: 164px;
  padding: 7px 0;
  color: var(--ink);
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(42deg);
}

.price-overline {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 4px;
}

.price-value > span {
  font-size: 16px;
  font-weight: 800;
}

.price-value strong {
  font-size: clamp(58px, 7vw, 82px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 1;
}

.price-value small {
  color: #b2b2bc;
  font-size: 14px;
}

.price-note {
  max-width: 390px;
  margin: 14px 0 28px;
  color: #b2b2bd;
  font-size: 13px;
}

.price-features {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6e6eb;
  font-size: 13px;
}

.price-features i {
  color: var(--cyan);
  font-size: 16px;
}

.price-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  color: var(--ink);
  background: #fff;
  box-shadow: 6px 6px 0 var(--cyan);
}

.price-cta:hover {
  color: var(--ink);
  background: #fff;
}

.secure-note {
  display: block;
  margin-top: 18px;
  color: #9999a5;
  font-size: 12px;
  text-align: center;
}

.secure-note i {
  margin-right: 5px;
}

.faq-section {
  background: #fff;
}

.faq-section .section-kicker {
  margin-bottom: 18px;
}

.faq-heading {
  max-width: 480px;
}

.faq-section .col-lg-5 > p {
  margin: 20px 0 0;
  color: var(--muted);
}

.custom-accordion {
  --bs-accordion-border-color: rgba(23, 23, 31, 0.1);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(37, 244, 238, 0.24);
  --bs-accordion-active-color: var(--ink);
  --bs-accordion-active-bg: transparent;
}

.custom-accordion .accordion-item {
  border-color: var(--line);
  background: transparent;
}

.custom-accordion .accordion-button {
  padding: 24px 5px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.custom-accordion .accordion-button::after {
  width: 34px;
  height: 34px;
  margin-left: 20px;
  border-radius: 11px;
  background-color: #f3f3f6;
  background-position: center;
  background-size: 13px;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  background-color: var(--cyan);
}

.custom-accordion .accordion-body {
  padding: 0 48px 24px 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.cta-section {
  padding-top: 70px;
}

.cta-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 70px 40px;
  color: #fff;
  border-radius: 42px;
  background: #15151d;
  text-align: center;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
}

.cta-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.32;
}

.cta-glow-cyan {
  top: -160px;
  left: -90px;
  background: var(--cyan);
}

.cta-glow-pink {
  right: -80px;
  bottom: -170px;
  background: var(--pink);
}

.cta-bot {
  position: absolute;
  top: 74px;
  right: 90px;
  width: 135px;
  height: 100px;
  padding: 11px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 46px 46px 42px 42px;
  background: linear-gradient(135deg, var(--cyan), #fff 44%, var(--pink));
  transform: rotate(8deg);
  box-shadow: 0 20px 60px rgba(254, 44, 85, 0.22);
  animation: cta-bot-float 4.2s ease-in-out infinite;
}

.cta-face {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-radius: 37px;
  background: var(--ink);
}

.cta-face span {
  width: 22px;
  height: 13px;
  border-top: 5px solid var(--cyan);
  border-radius: 50%;
}

.cta-face span:last-child {
  border-color: var(--pink-soft);
}

.cta-antenna {
  position: absolute;
  width: 4px;
  height: 25px;
  top: -25px;
  left: 65px;
  background: linear-gradient(var(--pink), var(--cyan));
}

.cta-antenna::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  top: -7px;
  left: -4.5px;
  border-radius: 50%;
  background: var(--pink);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-content h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.cta-content p {
  margin: 20px 0 30px;
  color: #b1b1bc;
  font-size: 16px;
}

.site-footer {
  padding: 38px 0 22px;
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
}

.footer-brand .brand-art {
  width: 126px;
  height: 54px;
}

.footer-main p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-main nav {
  display: flex;
  gap: 25px;
  font-size: 14px;
  font-weight: 750;
}

.footer-main nav a:hover {
  color: var(--pink);
}

.footer-panel-access {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  color: #666875;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.mobile-conversion-bar {
  display: none;
}

@keyframes floating-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes cta-bot-float {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-10px); }
}

@keyframes price-shine {
  0%, 30% { left: -190px; }
  58%, 100% { left: 640px; }
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.feature-grid .reveal:nth-child(2),
.segment-grid .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.feature-grid .reveal:nth-child(3),
.segment-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.segment-grid .reveal:nth-child(4) {
  transition-delay: 200ms;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(46px, 5.6vw, 68px);
  }

  .product-workspace {
    grid-template-columns: 54px minmax(0, 1fr) 155px;
  }

  .schedule-panel {
    padding-inline: 9px;
  }

  .calendar-strip span {
    font-size: 12px;
  }

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

  .workflow-grid {
    gap: 55px;
  }

  .home-acquisition-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .home-acquisition-copy {
    max-width: 760px;
  }

  .home-acquisition-visual {
    width: min(100%, 760px);
    margin-inline: auto;
    transform: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-art {
    width: 130px;
    height: 56px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    height: calc(100dvh - 78px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.98);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a:not(.button) {
    padding: 20px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
  }

  .panel-access {
    margin-top: 24px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 690px;
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow,
  .hero-proof,
  .hero-price {
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .audience-inner {
    padding-block: 25px;
    flex-direction: column;
    gap: 16px;
  }

  .audience-list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-chat {
    grid-template-columns: 1fr;
  }

  .feature-content {
    max-width: 430px;
  }

  .chat-visual {
    max-width: 330px;
    justify-self: end;
    padding-top: 0;
  }

  .feature-finance {
    grid-template-columns: 1fr;
  }

  .feature-finance .finance-copy {
    max-width: 600px;
  }

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

  .home-acquisition-copy {
    text-align: center;
  }

  .home-acquisition-copy .section-kicker,
  .home-acquisition-sources {
    justify-content: center;
  }

  .home-acquisition-copy > p {
    margin-inline: auto;
  }

  .workflow-copy {
    position: static;
    max-width: 680px;
  }

  .cta-bot {
    right: 30px;
    opacity: 0.55;
    animation: none;
    transform: scale(0.8) rotate(8deg);
  }

  .price-card {
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 62px;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 22px;
  }

  .hero-price {
    min-width: 0;
    width: 100%;
    max-width: 390px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .hero-price-detail {
    padding: 8px 0 0;
    border-top: 1px solid #dedfe6;
    border-left: 0;
  }

  .button-primary {
    width: 100%;
  }

  .hero-proof {
    text-align: left;
  }

  .hero-visual {
    padding-top: 26px;
  }

  .product-window {
    border-radius: 22px;
    transform: none;
  }

  .product-workspace {
    height: 400px;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .schedule-panel {
    display: none;
  }

  .conversation-panel {
    border-right: 0;
  }

  .floating-message {
    top: 5px;
    right: -4px;
  }

  .floating-conversion {
    bottom: -5px;
    left: -3px;
  }

  .floating-card {
    padding: 9px 11px;
  }

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

  .feature-card,
  .feature-finance {
    min-height: 390px;
    grid-column: auto;
    padding: 28px;
  }

  .feature-finance {
    gap: 30px;
  }

  .feature-card h3 {
    font-size: 25px;
  }

  .solution-bridge {
    grid-template-columns: 42px 1fr;
    padding: 21px;
  }

  .solution-bridge > span {
    width: 42px;
    height: 42px;
  }

  .solution-bridge > a {
    display: none;
  }

  .feature-icon {
    margin-bottom: 30px;
  }

  .finance-chart svg {
    height: 110px;
  }

  .home-acquisition-copy h2 {
    font-size: 42px;
  }

  .home-acquisition-visual {
    padding: 10px;
    border-radius: 24px;
  }

  .home-acquisition-float {
    display: none;
  }

  .workflow-step {
    grid-template-columns: 34px 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .step-icon {
    display: none;
  }

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

  .segment-card {
    min-height: 320px;
  }

  .cta-section {
    padding-top: 30px;
  }

  .cta-panel {
    min-height: 500px;
    padding: 100px 24px 55px;
    border-radius: 30px;
  }

  .cta-bot {
    top: 18px;
    right: 50%;
    transform: translateX(50%) scale(0.58) rotate(4deg);
    opacity: 1;
  }

  .cta-content h2 {
    font-size: 39px;
  }

  .price-card {
    padding: 36px 25px;
    border-radius: 28px;
  }

  .price-value strong {
    font-size: 62px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-main nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-conversion-bar {
    position: fixed;
    z-index: 1100;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 9px 8px 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(23, 23, 31, 0.96);
    box-shadow: 0 18px 50px rgba(23, 23, 31, 0.3);
    backdrop-filter: blur(14px);
  }

  .mobile-conversion-bar > div {
    display: grid;
    line-height: 1.1;
  }

  .mobile-conversion-bar span {
    color: #aaaab5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-conversion-bar strong {
    margin-top: 3px;
    font-size: 17px;
  }

  .mobile-conversion-bar small {
    color: #aaaab5;
    font-size: 12px;
  }

  .mobile-conversion-bar .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 17px;
    color: var(--ink);
    border-radius: 13px;
    background: var(--cyan);
    font-size: 13px;
    font-weight: 900;
  }
}

@media (max-width: 430px) {
  .window-label {
    font-size: 12px;
  }

  .product-workspace {
    height: 390px;
  }

  .product-sidebar {
    display: none;
  }

  .product-workspace {
    grid-template-columns: 1fr;
  }

  .message {
    font-size: 12px;
  }

  .floating-message {
    display: none;
  }

  .floating-conversion {
    left: 10px;
  }

  .feature-chat {
    min-height: 500px;
  }

  .feature-products {
    min-height: 450px;
  }

  .home-traffic-cards {
    grid-template-columns: 1fr;
  }

  .home-traffic-cards article:nth-child(2) {
    display: none;
  }

  .home-acquisition-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .home-acquisition-kpis article:nth-child(2) {
    display: none;
  }

  .home-acquisition-cta {
    width: 100%;
    justify-content: center;
  }

  .chat-visual {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-flow-dots i,
  .home-acquisition-float {
    animation: none !important;
  }
}
