:root {
  color-scheme: light;
  --violet-950: #14051f;
  --violet-900: #220a35;
  --violet-800: #35145a;
  --violet-700: #662494;
  --magenta: #a51a99;
  --aqua: #67cdb9;
  --aqua-soft: #b9eee1;
  --blue: #6bb8df;
  --ink: #241d2c;
  --muted: #625b6d;
  --line: #e8e2ef;
  --paper: #fbfafc;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(20, 5, 31, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 5, 31, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.proof-strip,
.panel-header,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-links {
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--white);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta {
  padding: 0 16px;
  background: var(--aqua);
  color: var(--violet-950);
}

.whatsapp-hero,
.whatsapp-inline {
  gap: 9px;
}

.whatsapp-hero span,
.whatsapp-inline span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.16);
}

.primary-button {
  border: 0;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  color: var(--violet-950);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(103, 205, 185, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 20px 42px rgba(103, 205, 185, 0.28);
}

.secondary-button {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(103, 205, 185, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 69px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px) clamp(20px, 4vw, 56px) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(103, 205, 185, 0.22), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(165, 26, 153, 0.42), transparent 30%),
    linear-gradient(145deg, var(--violet-950), var(--violet-900) 55%, #12031d);
  color: var(--white);
  animation: hero-shift 14s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -128px;
  width: 65vw;
  height: 220px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  content: "";
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(103, 205, 185, 0.38);
  border-radius: 50%;
  animation: orbit-drift 16s ease-in-out infinite alternate;
}

.hero-orbit-one {
  right: -12vw;
  top: 90px;
  width: 48vw;
  height: 48vw;
}

.hero-orbit-two {
  left: -18vw;
  bottom: 46px;
  width: 46vw;
  height: 28vw;
  border-color: rgba(165, 26, 153, 0.42);
  animation-duration: 19s;
  animation-direction: alternate-reverse;
}

.hero-copy,
.product-demo {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy > * {
  animation: hero-enter 620ms ease both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 160ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 240ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 340ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 440ms;
}

.product-lockup {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: var(--white);
}

.product-lockup strong {
  display: block;
  font-size: clamp(52px, 6.6vw, 92px);
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 20px 42px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.proof-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.proof-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  animation: chip-pop 520ms ease both;
}

.proof-strip span:nth-child(1) {
  animation-delay: 660ms;
}

.proof-strip span:nth-child(2) {
  animation-delay: 780ms;
}

.proof-strip span:nth-child(3) {
  animation-delay: 900ms;
}

.product-demo {
  display: grid;
  min-height: 480px;
  align-items: center;
  animation: demo-rise 760ms ease 420ms both;
}

.phone-shell {
  width: min(310px, 82vw);
  min-height: 470px;
  padding: 18px;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(185, 238, 225, 0.92));
  box-shadow: var(--shadow);
}

.phone-top {
  width: 94px;
  height: 8px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: var(--violet-950);
}

.chat-window {
  display: flex;
  min-height: 392px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}

.message {
  max-width: 88%;
  padding: 12px 13px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.35;
}

.message.bot {
  align-self: flex-start;
  border: 1px solid rgba(36, 29, 44, 0.1);
  background: var(--white);
  color: var(--ink);
}

.message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--violet-700), var(--magenta));
  color: var(--white);
}

.hero .message {
  animation: message-in 420ms ease both;
}

.hero .message:nth-child(1) {
  animation-delay: 900ms;
}

.hero .message:nth-child(2) {
  animation-delay: 1320ms;
}

.hero .message:nth-child(3) {
  animation-delay: 1740ms;
}

.crm-panel {
  position: absolute;
  right: 0;
  bottom: 14px;
  width: min(370px, 72vw);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero .crm-panel {
  animation: panel-rise 620ms ease 2180ms both;
}

.panel-header {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-header span {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.section {
  scroll-margin-top: 84px;
  padding: clamp(68px, 8vw, 112px) clamp(20px, 4vw, 56px);
}

.hero,
.problem-section,
.visual-story {
  scroll-margin-top: 84px;
}

.problem-section {
  background: var(--paper);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.problem-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  animation: problem-text-in 700ms ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 34%;
}

.problem-list {
  counter-reset: problem;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  counter-increment: problem;
  padding: 16px 18px 16px 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(36, 29, 44, 0.05);
  animation: problem-item-in 520ms ease both;
  animation-timeline: view();
  animation-range: entry 12% cover 28%;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.problem-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 205, 185, 0.46);
  box-shadow: 0 22px 52px rgba(36, 29, 44, 0.1);
}

.problem-list li:nth-child(1) {
  animation-delay: 60ms;
}

.problem-list li:nth-child(2) {
  animation-delay: 120ms;
}

.problem-list li:nth-child(3) {
  animation-delay: 180ms;
}

.problem-list li:nth-child(4) {
  animation-delay: 240ms;
}

.problem-list li:nth-child(5) {
  animation-delay: 300ms;
}

.problem-list li:nth-child(6) {
  animation-delay: 360ms;
}

.problem-list li::before {
  position: absolute;
  left: 16px;
  top: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--aqua), var(--magenta));
  color: var(--white);
  content: counter(problem, decimal-leading-zero);
  font-size: 11px;
  font-weight: 900;
  transform: translateY(-50%);
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 56px);
  background: var(--paper);
}

.story-image {
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--violet-900);
  box-shadow: var(--shadow);
}

.story-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

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

.story-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.band-light {
  background: var(--paper);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

.use-case-grid,
.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-case,
.step {
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(36, 29, 44, 0.06);
}

.use-case {
  overflow: hidden;
  padding: 0;
}

.use-case img {
  display: block;
  width: 100%;
  height: 154px;
  object-fit: cover;
  background: var(--violet-900);
}

.use-case:nth-child(1) img {
  width: 190%;
  max-width: none;
  object-position: left center;
}

.use-case:nth-child(2) img {
  object-position: center center;
}

.use-case:nth-child(3) img {
  object-position: center 16%;
}

.use-case .case-number,
.use-case h3,
.use-case p {
  margin-left: 25px;
  margin-right: 25px;
}

.use-case .case-number {
  margin-top: 24px;
}

.use-case p {
  margin-bottom: 25px;
}

.compact-case {
  min-height: 190px;
  padding: 25px;
}

.compact-case h3,
.compact-case p {
  margin-left: 0;
  margin-right: 0;
}

.compact-case h3 {
  margin-bottom: 12px;
}

.compact-case p {
  margin-bottom: 0;
}

.use-case-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-case-map {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at center, rgba(103, 205, 185, 0.18), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(165, 26, 153, 0.1), transparent 28%),
    var(--white);
  box-shadow: var(--shadow);
}

.use-case-map::before,
.use-case-map::after {
  position: absolute;
  inset: 90px 9%;
  border: 1px solid rgba(103, 205, 185, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.use-case-map::after {
  inset: 150px 20%;
  border-color: rgba(165, 26, 153, 0.22);
}

.case-hub,
.case-node {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.case-hub {
  display: grid;
  grid-column: 2;
  grid-row: 2;
  width: min(230px, 100%);
  min-height: 82px;
  place-items: center;
  align-content: center;
  justify-self: center;
  align-self: center;
  gap: 5px;
  padding: 14px 18px;
  border: 1px solid rgba(103, 205, 185, 0.3);
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 34%, rgba(103, 205, 185, 0.34), transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(165, 26, 153, 0.3), transparent 32%),
    linear-gradient(145deg, rgba(20, 5, 31, 0.96), rgba(53, 20, 90, 0.92));
  color: var(--white);
  text-align: center;
  box-shadow: 0 26px 60px rgba(20, 5, 31, 0.24);
}

.case-hub strong {
  display: block;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 0.92;
}

.case-hub span {
  display: block;
  max-width: 180px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-node {
  display: grid;
  min-height: 170px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 252, 0.9)),
    var(--white);
  box-shadow: 0 18px 42px rgba(36, 29, 44, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.flow-node:hover,
.case-node:hover,
.use-case:hover,
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 205, 185, 0.46);
  box-shadow: 0 24px 58px rgba(36, 29, 44, 0.12);
}

.case-node::before {
  position: absolute;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), rgba(165, 26, 153, 0.5));
  content: "";
}

.node-sales {
  grid-column: 1;
  grid-row: 1;
}

.node-sales::before {
  right: -34px;
  bottom: -12px;
  transform: rotate(34deg);
}

.node-support {
  grid-column: 2;
  grid-row: 1;
}

.node-support::before {
  left: calc(50% - 1px);
  bottom: -32px;
  transform: rotate(90deg);
}

.node-postsale {
  grid-column: 3;
  grid-row: 1;
}

.node-postsale::before {
  left: -34px;
  bottom: -12px;
  transform: rotate(-34deg);
}

.node-admin {
  grid-column: 1;
  grid-row: 3;
}

.node-admin::before {
  right: -34px;
  top: -12px;
  transform: rotate(-34deg);
}

.node-service {
  grid-column: 2;
  grid-row: 3;
}

.node-service::before {
  left: calc(50% - 1px);
  top: -32px;
  transform: rotate(90deg);
}

.node-ops {
  grid-column: 3;
  grid-row: 3;
}

.node-ops::before {
  left: -34px;
  top: -12px;
  transform: rotate(34deg);
}

.case-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--aqua), var(--magenta));
  box-shadow: 0 12px 26px rgba(103, 205, 185, 0.2);
}

.case-icon::before,
.case-icon::after {
  position: absolute;
  content: "";
}

.icon-sales::before {
  left: 9px;
  bottom: 9px;
  width: 4px;
  height: 10px;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 8px -5px 0 var(--white), 16px -12px 0 var(--white);
}

.icon-sales::after {
  left: 10px;
  top: 11px;
  width: 21px;
  height: 15px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
  transform: skewY(-28deg);
  transform-origin: right top;
}

.icon-support::before {
  left: 12px;
  top: 8px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.icon-support::after {
  left: 9px;
  bottom: 7px;
  width: 24px;
  height: 14px;
  border: 3px solid var(--white);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.icon-postsale::before {
  left: 10px;
  top: 8px;
  width: 21px;
  height: 26px;
  border: 3px solid var(--white);
  border-radius: 5px;
}

.icon-postsale::after {
  left: 16px;
  top: 18px;
  width: 11px;
  height: 6px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg);
}

.icon-admin::before {
  left: 10px;
  top: 13px;
  width: 22px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 4px;
}

.icon-admin::after {
  left: 13px;
  top: 9px;
  width: 14px;
  height: 7px;
  border-radius: 4px 4px 0 0;
  background: var(--white);
}

.icon-service::before {
  left: 9px;
  top: 12px;
  width: 22px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 4px;
}

.icon-service::after {
  right: 6px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-top: 3px solid var(--white);
  border-left: 3px solid var(--white);
  border-radius: 50% 0 0 0;
  transform: rotate(-35deg);
}

.icon-ops::before {
  left: 8px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 20px 0 0 var(--white), 10px 20px 0 var(--white);
}

.icon-ops::after {
  left: 14px;
  top: 15px;
  width: 17px;
  height: 17px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.case-node h3 {
  margin-bottom: 10px;
}

.case-node p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.use-case p,
.step p,
.meeting-copy p,
.script-preview p {
  color: var(--muted);
  line-height: 1.6;
}

.case-number,
.step span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--aqua), var(--magenta));
  color: var(--white);
  font-weight: 900;
}

.process-section {
  position: relative;
  background: var(--white);
}

.process-section::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 34vw;
  height: 100%;
  border-radius: 999px 0 0 999px;
  background: rgba(103, 205, 185, 0.1);
  content: "";
}

.process-section > * {
  position: relative;
  z-index: 1;
}

.flow-infographic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 20%, rgba(103, 205, 185, 0.14), transparent 26%),
    radial-gradient(circle at 86% 74%, rgba(165, 26, 153, 0.12), transparent 28%),
    var(--white);
  box-shadow: var(--shadow);
}

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

.flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 292px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(232, 226, 239, 0.8);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.flow-node:nth-child(2) {
  margin-top: 32px;
}

.flow-node:nth-child(3) {
  margin-top: 64px;
}

.flow-node:nth-child(4) {
  margin-top: 96px;
}

.flow-node:not(:last-child)::after {
  position: absolute;
  right: -22px;
  top: 46px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(103, 205, 185, 0.36);
  border-radius: 50%;
  background: var(--white);
  color: var(--violet-800);
  content: "→";
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(36, 29, 44, 0.08);
}

.flow-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet-950), var(--violet-700));
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(20, 5, 31, 0.18);
}

.flow-visual {
  position: relative;
  display: grid;
  width: 112px;
  height: 92px;
  margin: 20px 0 22px;
  place-items: center;
}

.flow-visual::before {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(103, 205, 185, 0.2), rgba(165, 26, 153, 0.18)),
    rgba(20, 5, 31, 0.04);
  content: "";
}

.chat-visual span,
.ai-visual span,
.fields-visual span,
.system-visual span {
  position: relative;
  display: block;
  border-radius: 999px;
}

.chat-visual span:first-child {
  width: 68px;
  height: 24px;
  justify-self: start;
  margin-left: 18px;
  background: var(--aqua);
}

.chat-visual span:last-child {
  width: 78px;
  height: 24px;
  justify-self: end;
  margin-right: 14px;
  background: var(--violet-700);
}

.ai-visual span {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--aqua);
  box-shadow: 0 0 22px rgba(103, 205, 185, 0.7);
}

.ai-visual span:nth-child(1) {
  left: 26px;
  top: 30px;
}

.ai-visual span:nth-child(2) {
  right: 26px;
  top: 30px;
}

.ai-visual span:nth-child(3) {
  left: 48px;
  bottom: 24px;
  background: var(--magenta);
}

.ai-visual::after {
  position: absolute;
  inset: 24px 30px;
  border: 2px solid rgba(103, 205, 185, 0.75);
  border-radius: 50%;
  content: "";
}

.fields-visual {
  gap: 9px;
}

.fields-visual span {
  width: 78px;
  height: 12px;
  background: rgba(36, 29, 44, 0.16);
}

.fields-visual span::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: -1px 8px 0 -22px;
  border-radius: 50%;
  background: var(--aqua);
  content: "";
  vertical-align: top;
}

.system-visual span:first-child {
  width: 78px;
  height: 56px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(103, 205, 185, 0.65);
}

.system-visual span:last-child {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 28px;
  border-radius: 8px;
  background: var(--magenta);
}

.flow-node h3 {
  margin-bottom: 10px;
}

.flow-node p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.integrations-section {
  background: var(--white);
}

.integration-list,
.benefit-grid,
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.integration-list span,
.benefit-grid span,
.audience-grid span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.integration-list span {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--violet-950);
}

.benefits-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(103, 205, 185, 0.86), rgba(165, 26, 153, 0.9)),
    var(--violet-800);
  color: var(--white);
}

.benefits-section::after {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(185, 238, 225, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 238, 225, 0.18), transparent 62%);
  content: "";
  animation: benefit-glow 7s ease-in-out infinite alternate;
}

.benefits-section > * {
  position: relative;
  z-index: 1;
}

.benefits-section .eyebrow {
  color: var(--aqua-soft);
}

.benefits-section .section-heading {
  animation: benefit-heading-in 700ms ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 32%;
}

.benefit-grid span {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(20, 5, 31, 0.24);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: benefit-pill-in 520ms ease both;
  animation-timeline: view();
  animation-range: entry 8% cover 26%;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.benefit-grid span:hover {
  transform: translateY(-3px);
  background: rgba(20, 5, 31, 0.36);
  box-shadow: 0 18px 40px rgba(20, 5, 31, 0.18), inset 0 0 0 1px rgba(185, 238, 225, 0.18);
}

.benefit-grid span:nth-child(1) {
  animation-delay: 60ms;
}

.benefit-grid span:nth-child(2) {
  animation-delay: 120ms;
}

.benefit-grid span:nth-child(3) {
  animation-delay: 180ms;
}

.benefit-grid span:nth-child(4) {
  animation-delay: 240ms;
}

.benefit-grid span:nth-child(5) {
  animation-delay: 300ms;
}

.benefit-grid span:nth-child(6) {
  animation-delay: 360ms;
}

.benefit-grid span:nth-child(7) {
  animation-delay: 420ms;
}

.benefit-grid span:nth-child(8) {
  animation-delay: 480ms;
}

.demo-section {
  background: var(--violet-950);
  color: var(--white);
}

.demo-section .eyebrow {
  color: var(--aqua);
}

.demo-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.demo-phone {
  width: min(330px, 100%);
  min-height: 430px;
}

.demo-phone .chat-window {
  min-height: 350px;
}

.demo-crm {
  position: static;
  width: 100%;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease, box-shadow 320ms ease;
}

.demo-crm.is-waiting {
  opacity: 0.58;
}

.demo-crm.is-created {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 0 1px rgba(103, 205, 185, 0.45), var(--shadow);
}

.animated-chat .message {
  animation: message-in 320ms ease both;
}

.typing-indicator {
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  width: auto;
  max-width: 88%;
  padding: 14px 15px;
  border: 1px solid rgba(36, 29, 44, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.typing-indicator[hidden] {
  display: none;
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.45;
  animation: typing-dot 900ms ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 120ms;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes message-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

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

@keyframes typing-dot {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  50% {
    opacity: 0.9;
    transform: translateY(-3px);
  }
}

.audience-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.audience-section::before {
  position: absolute;
  left: -90px;
  top: 90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(103, 205, 185, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 205, 185, 0.12), transparent 62%);
  content: "";
  animation: audience-orbit 8s ease-in-out infinite alternate;
}

.audience-section > * {
  position: relative;
  z-index: 1;
}

.audience-section .section-heading {
  animation: audience-heading-in 700ms ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 32%;
}

.audience-grid span {
  position: relative;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 14px 34px rgba(36, 29, 44, 0.05);
  animation: audience-pill-in 520ms ease both;
  animation-timeline: view();
  animation-range: entry 8% cover 24%;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.audience-grid span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--magenta));
  content: "";
}

.audience-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 205, 185, 0.5);
  color: var(--violet-950);
  box-shadow: 0 20px 46px rgba(36, 29, 44, 0.1);
}

.audience-grid span:nth-child(1) {
  animation-delay: 50ms;
}

.audience-grid span:nth-child(2) {
  animation-delay: 100ms;
}

.audience-grid span:nth-child(3) {
  animation-delay: 150ms;
}

.audience-grid span:nth-child(4) {
  animation-delay: 200ms;
}

.audience-grid span:nth-child(5) {
  animation-delay: 250ms;
}

.audience-grid span:nth-child(6) {
  animation-delay: 300ms;
}

.audience-grid span:nth-child(7) {
  animation-delay: 350ms;
}

.audience-grid span:nth-child(8) {
  animation-delay: 400ms;
}

.audience-grid span:nth-child(9) {
  animation-delay: 450ms;
}

.band-accent {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(103, 205, 185, 0.84), rgba(165, 26, 153, 0.88)),
    var(--violet-800);
  color: var(--white);
}

.accent-curve {
  position: absolute;
  left: -12vw;
  top: -18vw;
  width: 72vw;
  height: 38vw;
  border-radius: 50%;
  background: rgba(20, 5, 31, 0.46);
}

.band-accent .eyebrow {
  color: var(--aqua-soft);
}

.video-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 0.75fr 1fr;
  gap: 28px;
  align-items: start;
}

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

.video-item {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(20, 5, 31, 0.22);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.video-item span {
  color: var(--aqua-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-item.is-active {
  border-color: var(--aqua-soft);
  background: rgba(20, 5, 31, 0.46);
}

.script-preview {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.script-kicker {
  margin-top: 0;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.meeting-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  overflow: hidden;
  background: var(--paper);
}

.meeting-mark {
  position: absolute;
  left: clamp(16px, 4vw, 56px);
  bottom: -82px;
  color: rgba(103, 205, 185, 0.18);
  font-size: 280px;
  font-weight: 900;
  line-height: 1;
}

.meeting-copy,
.meeting-form {
  position: relative;
  z-index: 1;
}

.meeting-copy {
  max-width: 720px;
}

.meeting-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(103, 205, 185, 0.18);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-inline {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--violet-950);
  color: var(--white);
  font-weight: 900;
}

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
}

.floating-whatsapp {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.94), rgba(103, 205, 185, 0.96)),
    #25d366;
  color: #07170d;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(20, 5, 31, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: whatsapp-float 4.5s ease-in-out infinite;
  cursor: pointer;
}

.floating-whatsapp::before {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.38);
  border-radius: inherit;
  content: "";
  animation: whatsapp-pulse 2.8s ease-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(20, 5, 31, 0.34);
}

.floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #128c4a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.floating-label {
  position: relative;
  z-index: 1;
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(340px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #f4fff8;
  color: #092014;
  box-shadow: 0 26px 70px rgba(20, 5, 31, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transform-origin: right bottom;
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-widget.is-open .whatsapp-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: whatsapp-panel-pop 260ms ease both;
}

.whatsapp-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1f7a48, #25d366);
  color: var(--white);
}

.whatsapp-panel-header strong,
.whatsapp-panel-header span {
  display: block;
}

.whatsapp-panel-header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.whatsapp-message-label {
  display: block;
  margin: 14px 8px 6px;
  color: rgba(9, 32, 20, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-message {
  display: block;
  width: calc(100% - 16px);
  min-height: 104px;
  margin: 0 8px 14px;
  padding: 12px 13px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 8px 8px 8px 2px;
  background: var(--white);
  color: #243329;
  font-size: 14px;
  line-height: 1.42;
  box-shadow: 0 10px 24px rgba(9, 32, 20, 0.08);
  outline: none;
  resize: vertical;
}

.whatsapp-message:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14), 0 10px 24px rgba(9, 32, 20, 0.08);
}

.whatsapp-send {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #25d366;
  color: #07170d;
  font-weight: 900;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.96);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

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

  50% {
    transform: translateY(-4px);
  }
}

@keyframes whatsapp-panel-pop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }

  70% {
    opacity: 1;
    transform: translateY(-3px) scale(1.02);
  }

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

@keyframes hero-shift {
  0% {
    background-position: 0% 0%, 0% 0%, center;
  }

  100% {
    background-position: 8% 4%, -6% 4%, center;
  }
}

@keyframes problem-text-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes problem-item-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes benefit-heading-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes benefit-pill-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

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

@keyframes benefit-glow {
  from {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  to {
    opacity: 0.9;
    transform: translate3d(-26px, -18px, 0) scale(1.06);
  }
}

@keyframes audience-heading-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes audience-pill-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

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

@keyframes audience-orbit {
  from {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0.85;
    transform: translate3d(28px, 18px, 0) scale(1.08);
  }
}


@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chip-pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }

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

@keyframes demo-rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

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

@keyframes orbit-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(18px, -14px, 0) rotate(8deg);
  }
}

@keyframes panel-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

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

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

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  background: var(--violet-950);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .problem-layout,
  .visual-story,
  .meeting-section,
  .demo-layout,
  .video-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .product-demo {
    min-height: 620px;
    justify-items: start;
  }

  .crm-panel {
    right: auto;
    left: 20%;
  }

  .use-case-grid,
  .use-case-grid-six,
  .process-four,
  .process,
  .flow-infographic,
  .use-case-map {
    grid-template-columns: 1fr;
  }

  .use-case-map {
    min-height: auto;
    grid-template-rows: none;
    padding: 20px;
  }

  .use-case-map::before,
  .use-case-map::after,
  .case-node::before {
    display: none;
  }

  .case-hub,
  .node-sales,
  .node-support,
  .node-postsale,
  .node-admin,
  .node-service,
  .node-ops {
    grid-column: auto;
    grid-row: auto;
  }

  .case-hub {
    width: 100%;
    min-height: 76px;
    border-radius: 12px;
    order: -1;
  }

  .flow-node {
    min-height: auto;
    margin-top: 0;
    padding-left: 76px;
  }

  .flow-node:nth-child(2),
  .flow-node:nth-child(3),
  .flow-node:nth-child(4) {
    margin-top: 0;
  }

  .flow-node:not(:last-child)::after {
    left: 30px;
    right: auto;
    top: auto;
    bottom: -22px;
    transform: rotate(90deg);
  }

  .flow-number {
    position: absolute;
    left: 18px;
    top: 20px;
  }

  .flow-visual {
    width: 104px;
    height: 80px;
    margin-top: 0;
  }

  .story-copy {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero,
  .problem-section,
  .visual-story,
  .section {
    padding-inline: 16px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .visual-story {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .story-image,
  .story-image img {
    min-height: 210px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .product-lockup {
    margin-bottom: 14px;
  }

  .product-lockup strong {
    font-size: 50px;
  }

  h1 {
    font-size: 31px;
    line-height: 1.02;
  }

  h2 {
    font-size: 29px;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .secondary-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .proof-strip {
    margin-top: 16px;
  }

  .proof-strip span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero .product-demo {
    display: none;
  }

  .problem-copy {
    font-size: 17px;
  }

  .flow-infographic {
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(20, 5, 31, 0.12);
  }

  .flow-node {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    padding: 16px;
    padding-left: 16px;
    border-radius: 10px;
  }

  .flow-node:not(:last-child)::after {
    left: 33px;
    bottom: -20px;
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .flow-number {
    position: static;
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .flow-visual {
    grid-column: 2;
    width: 84px;
    height: 54px;
    margin: 0 0 12px;
  }

  .flow-visual::before {
    border-radius: 18px;
  }

  .flow-node h3,
  .flow-node p {
    grid-column: 2;
  }

  .flow-node h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .flow-node p {
    font-size: 14px;
    line-height: 1.45;
  }

  .chat-visual span:first-child {
    width: 48px;
    height: 16px;
    margin-left: 12px;
  }

  .chat-visual span:last-child {
    width: 54px;
    height: 16px;
    margin-right: 10px;
  }

  .ai-visual span {
    width: 12px;
    height: 12px;
  }

  .ai-visual span:nth-child(1) {
    left: 22px;
    top: 18px;
  }

  .ai-visual span:nth-child(2) {
    right: 22px;
    top: 18px;
  }

  .ai-visual span:nth-child(3) {
    left: 36px;
    bottom: 14px;
  }

  .ai-visual::after {
    inset: 14px 22px;
  }

  .fields-visual span {
    width: 56px;
    height: 8px;
  }

  .fields-visual span::before {
    width: 10px;
    height: 10px;
    margin: -1px 6px 0 -16px;
  }

  .system-visual span:first-child {
    width: 58px;
    height: 38px;
  }

  .system-visual span:last-child {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 20px;
  }

  .problem-list li {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .integration-list,
  .benefit-grid,
  .audience-grid {
    gap: 10px;
  }

  .integration-list span,
  .benefit-grid span,
  .audience-grid span {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .phone-shell {
    min-height: 520px;
  }

  .chat-window {
    min-height: 442px;
  }

  .crm-panel {
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .product-demo {
    min-height: 655px;
  }

  .demo-phone {
    min-height: 430px;
  }

  .meeting-form {
    padding: 18px;
  }

  .meeting-mark {
    font-size: 190px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 88px;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp {
    width: 58px;
    min-height: 58px;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.42);
  }

  .floating-icon {
    width: 42px;
    height: 42px;
  }

  .floating-label {
    display: none;
  }

  .whatsapp-panel {
    bottom: 72px;
  }
}
