:root {
  --bg: #080914;
  --bg-soft: #0f1020;
  --surface: #121326;
  --surface-2: #181a31;
  --surface-3: #22243e;
  --text: #f6f7ff;
  --text-soft: #b9bdd2;
  --muted: #858aa6;
  --primary: #7c6cff;
  --primary-2: #a18fff;
  --cyan: #4ed6d1;
  --green: #43dda1;
  --red: #ff7d8f;
  --orange: #ffb260;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.15);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 2%, rgba(124, 108, 255, 0.08), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(78, 214, 209, 0.05), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-padding { padding: 112px 0; }
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.aurora { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; opacity: .12; }
.aurora-one { width: 420px; height: 420px; background: var(--primary); top: -160px; left: -180px; }
.aurora-two { width: 360px; height: 360px; background: var(--cyan); top: 520px; right: -180px; opacity: .08; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(8, 9, 20, .78);
  border-color: var(--border);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; }
.brand-name { font-family: "Manrope", sans-serif; font-size: 1.38rem; font-weight: 800; letter-spacing: -.045em; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { color: var(--text-soft); font-size: .94rem; font-weight: 600; transition: color .2s ease; }
.main-nav a:hover { color: var(--text); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--text); transition: .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: white;
  box-shadow: 0 16px 38px rgba(124, 108, 255, .27), inset 0 1px rgba(255,255,255,.2);
}
.button-primary:hover { box-shadow: 0 20px 44px rgba(124, 108, 255, .34), inset 0 1px rgba(255,255,255,.25); }
.button-ghost { background: rgba(255,255,255,.035); border-color: var(--border-strong); color: var(--text); }
.button-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.25); }
.button-small { min-height: 42px; padding: 0 17px; border-radius: 11px; font-size: .9rem; }
.button-link { padding: 0 4px; background: transparent; color: var(--text-soft); }
.play-icon { display: grid; place-items: center; width: 34px; height: 34px; padding-left: 2px; border: 1px solid var(--border-strong); border-radius: 50%; color: var(--cyan); font-size: .72rem; }

.hero { position: relative; padding-top: 80px; padding-bottom: 94px; }
.hero-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 64px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(161,143,255,.24);
  border-radius: 999px;
  background: rgba(124,108,255,.08);
  color: #d8d1ff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(78,214,209,.1); }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; line-height: 1.12; }
h1 { max-width: 640px; font-size: clamp(3rem, 5vw, 5.6rem); letter-spacing: -.065em; font-weight: 800; }
h1 span { color: transparent; background: linear-gradient(100deg, #b6a8ff, #65e6dc); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 610px; margin: 28px 0 0; color: var(--text-soft); font-size: 1.13rem; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 32px; color: var(--muted); font-size: .84rem; flex-wrap: wrap; }
.hero-trust div { display: flex; align-items: center; gap: 7px; }
.hero-trust span { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: rgba(67,221,161,.1); color: var(--green); font-size: .72rem; }

.hero-visual { position: relative; min-width: 0; }
.visual-orbit { position: absolute; border: 1px solid rgba(124,108,255,.11); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 680px; height: 680px; top: 50%; left: 50%; transform: translate(-47%,-50%); }
.orbit-two { width: 510px; height: 510px; top: 50%; left: 50%; transform: translate(-47%,-50%); border-color: rgba(78,214,209,.09); }
.dashboard-shell {
  position: relative;
  z-index: 2;
  width: 760px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: #f7f8fc;
  color: #1a1d2b;
  box-shadow: 0 44px 110px rgba(0,0,0,.45), 0 0 0 8px rgba(255,255,255,.018);
  transform: perspective(1500px) rotateY(-3deg) rotateX(1deg);
}
.dashboard-topbar { height: 54px; display: grid; grid-template-columns: 150px 1fr 32px; align-items: center; gap: 14px; padding: 0 14px; background: #17182a; color: #fff; }
.dashboard-brand-mini { display: flex; align-items: center; gap: 7px; font-size: .78rem; }
.mini-logo { width: 19px; height: 19px; border: 3px solid #8f7fff; border-radius: 50%; position: relative; }
.mini-logo::after { content: ""; position: absolute; width: 5px; height: 5px; background: #4ed6d1; border-radius: 50%; right: -5px; top: -2px; }
.dashboard-search { height: 31px; display: flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: rgba(255,255,255,.05); color: #9296ab; font-size: .68rem; }
.dashboard-search svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.dashboard-user { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: linear-gradient(135deg,#7d6dff,#4ed6d1); font-size: .57rem; font-weight: 700; }
.dashboard-body { display: grid; grid-template-columns: 50px 258px minmax(0,1fr); height: 464px; }
.dashboard-sidebar { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 10px 6px; background: #1e2034; }
.side-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 9px; background: transparent; color: #8b90a9; font-size: .8rem; }
.side-icon.active { background: rgba(124,108,255,.18); color: #aa9fff; }
.side-spacer { flex: 1; }
.conversation-list { min-width: 0; border-right: 1px solid #e7e9f1; background: #fff; }
.list-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 17px 12px; }
.overline { display: block; color: #9a9eb1; font-size: .53rem; font-weight: 700; letter-spacing: .11em; }
.list-header h3 { margin-top: 2px; font-size: 1rem; letter-spacing: -.02em; }
.round-action { width: 28px; height: 28px; border: 0; border-radius: 8px; background: #eceafd; color: #6d5dfc; }
.status-tabs { display: flex; gap: 4px; padding: 0 10px 10px; overflow: hidden; }
.status-tab { white-space: nowrap; border: 0; border-radius: 7px; padding: 6px 7px; background: transparent; color: #8b8fa2; font-size: .56rem; cursor: pointer; }
.status-tab span { margin-left: 2px; }
.status-tab.active { background: #efedff; color: #6f60e9; font-weight: 700; }
.conversation-items { padding: 0 7px 10px; }
.conversation-card { position: relative; width: 100%; display: grid; grid-template-columns: 34px 1fr; gap: 9px; padding: 10px 9px; border: 0; border-radius: 10px; background: transparent; text-align: left; cursor: pointer; }
.conversation-card.active { background: #f2f0ff; }
.conversation-card.filtered-out { display: none; }
.avatar { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; font-size: .56rem; font-weight: 700; }
.avatar-violet { background: linear-gradient(135deg,#9c8bff,#745ee8); }
.avatar-blue { background: linear-gradient(135deg,#66b5ff,#5777e8); }
.avatar-cyan { background: linear-gradient(135deg,#58d9d3,#2bb3aa); }
.avatar-orange { background: linear-gradient(135deg,#ffbd73,#ec7c58); }
.conversation-info { min-width: 0; display: block; }
.conversation-line { display: flex; justify-content: space-between; gap: 6px; }
.conversation-line strong { overflow: hidden; font-size: .65rem; text-overflow: ellipsis; white-space: nowrap; }
.conversation-line time { color: #a5a8b6; font-size: .49rem; }
.conversation-preview { display: block; margin-top: 2px; overflow: hidden; color: #8a8e9f; font-size: .54rem; white-space: nowrap; text-overflow: ellipsis; }
.tag { display: inline-block; margin-top: 5px; padding: 2px 5px; border-radius: 4px; font-size: .45rem; font-weight: 700; }
.tag-pending { background: #fff2df; color: #c67e25; }
.tag-active { background: #e6f7f5; color: #258d85; }
.unread-count { position: absolute; right: 8px; bottom: 10px; width: 14px; height: 14px; display: grid; place-items: center; border-radius: 50%; background: #7364ed; color: #fff; font-size: .45rem; }
.chat-panel { display: grid; grid-template-rows: 56px 36px minmax(0,1fr) 32px 49px; min-width: 0; background: #f7f8fb; }
.chat-header { display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid #e7e9f1; background: #fff; }
.chat-person { display: flex; align-items: center; gap: 9px; }
.chat-person strong { display: block; font-size: .66rem; }
.chat-person > div span { display: flex; align-items: center; gap: 4px; color: #8b8fa2; font-size: .5rem; }
.chat-person i { width: 5px; height: 5px; border-radius: 50%; background: #31cd89; }
.chat-actions { display: flex; gap: 3px; }
.chat-actions button { width: 26px; height: 26px; border: 0; background: transparent; color: #83879b; }
.chat-context { display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid #eaebf1; background: #fbfbfd; color: #9a9dad; font-size: .48rem; }
.chat-context strong { color: #595e73; font-size: .5rem; }
.context-divider { height: 14px; width: 1px; margin: 0 4px; background: #dddfe7; }
.status-pill { padding: 2px 5px; border-radius: 5px; background: #fff0d8; color: #b9792e !important; }
.messages { padding: 16px; overflow: hidden; background: radial-gradient(circle at 85% 10%, rgba(124,108,255,.05), transparent 26%), #f5f6fa; }
.message-date { width: fit-content; margin: 0 auto 10px; padding: 3px 8px; border-radius: 6px; background: #e8eaf0; color: #8c90a1; font-size: .45rem; }
.message { position: relative; max-width: 76%; margin-bottom: 8px; padding: 8px 10px 14px; border-radius: 9px; font-size: .57rem; line-height: 1.45; box-shadow: 0 3px 9px rgba(27,31,47,.04); }
.message time { position: absolute; right: 7px; bottom: 3px; color: #999cad; font-size: .4rem; }
.message.incoming { background: #fff; border-top-left-radius: 3px; }
.message.outgoing { margin-left: auto; background: #e9e5ff; border-top-right-radius: 3px; }
.quick-replies { display: flex; align-items: center; gap: 5px; padding: 0 12px; background: #fff; }
.quick-replies button { padding: 4px 7px; border: 1px solid #dddbea; border-radius: 6px; background: #fff; color: #7669ca; font-size: .45rem; }
.message-composer { display: grid; grid-template-columns: 26px 1fr 28px; align-items: center; gap: 7px; padding: 7px 10px; border-top: 1px solid #e9eaf0; background: #fff; }
.message-composer > button { border: 0; background: transparent; color: #999dae; }
.message-composer span { display: flex; align-items: center; height: 32px; padding: 0 10px; border-radius: 8px; background: #f2f3f7; color: #a6a9b7; font-size: .52rem; }
.message-composer .send-button { width: 28px; height: 28px; border-radius: 8px; background: #7162e9; color: #fff; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: rgba(20,22,40,.88); backdrop-filter: blur(14px); box-shadow: 0 20px 45px rgba(0,0,0,.28); }
.floating-card-one { left: -34px; bottom: 37px; }
.floating-card-two { right: -28px; top: 62px; }
.floating-card strong, .floating-card span { display: block; }
.floating-card strong { font-size: .7rem; }
.floating-card div span { color: var(--muted); font-size: .56rem; }
.floating-icon { width: 30px; height: 30px; display: grid !important; place-items: center; border-radius: 9px; font-weight: 700; }
.floating-icon-green { background: rgba(67,221,161,.12); color: var(--green); }
.floating-icon-purple { background: rgba(124,108,255,.14); color: var(--primary-2); }

.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.015); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 100px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.trust-symbol { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(124,108,255,.17); border-radius: 11px; background: rgba(124,108,255,.06); color: var(--primary-2); }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: .88rem; }
.trust-item div span { color: var(--muted); font-size: .74rem; }

.section-heading { margin-bottom: 58px; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.split { display: grid; grid-template-columns: 1.1fr .7fr; gap: 90px; align-items: end; }
.section-kicker { display: inline-block; margin-bottom: 14px; color: var(--cyan); font-size: .74rem; font-weight: 800; letter-spacing: .14em; }
.section-kicker.light { color: #bcb1ff; }
.section-heading h2, .faq-intro h2, .audience-copy h2, .cta-copy h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); letter-spacing: -.05em; }
.section-heading p, .faq-intro p, .audience-copy p { max-width: 690px; margin: 18px auto 0; color: var(--text-soft); font-size: 1.02rem; }
.section-heading.split p { margin: 0 0 4px; }

.problem-section { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(124,108,255,.025)); }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.state-card { position: relative; min-height: 520px; padding: 34px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.state-before { background: linear-gradient(145deg, rgba(255,125,143,.045), transparent 60%), var(--surface); }
.state-after { background: linear-gradient(145deg, rgba(67,221,161,.06), transparent 60%), var(--surface); border-color: rgba(67,221,161,.15); }
.state-card-header { display: flex; align-items: center; gap: 14px; }
.state-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; font-size: 1.2rem; font-weight: 700; }
.state-before .state-icon { background: rgba(255,125,143,.12); color: var(--red); }
.state-after .state-icon { background: rgba(67,221,161,.11); color: var(--green); }
.state-card-header div > span { color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .11em; }
.state-card-header h3 { margin-top: 3px; font-size: 1.45rem; letter-spacing: -.03em; }
.state-card ul { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.state-card li { display: flex; align-items: center; gap: 10px; color: var(--text-soft); font-size: .91rem; }
.state-card li span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; flex: 0 0 auto; font-size: .7rem; font-weight: 700; }
.state-before li span { background: rgba(255,125,143,.08); color: var(--red); }
.state-after li span { background: rgba(67,221,161,.08); color: var(--green); }
.chaos-visual, .order-visual { position: absolute; left: 34px; right: 34px; bottom: 30px; height: 170px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.025); }
.chaos-phone { position: absolute; left: 50%; top: 50%; width: 83px; height: 140px; padding: 25px 12px; border: 3px solid rgba(255,255,255,.13); border-radius: 20px; transform: translate(-50%,-50%) rotate(-4deg); }
.chaos-dot { position: absolute; top: 8px; left: 50%; width: 22px; height: 3px; border-radius: 4px; background: rgba(255,255,255,.1); transform: translateX(-50%); }
.chaos-line { display: block; width: 65%; height: 7px; margin: 8px 0; border-radius: 4px; background: rgba(255,255,255,.08); }
.chaos-line.long { width: 100%; }
.chaos-bubble { position: absolute; padding: 7px 10px; border-radius: 9px; background: rgba(255,125,143,.12); color: #ffabb7; font-size: .58rem; box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.bubble-a { top: 22px; left: 27px; transform: rotate(-3deg); }
.bubble-b { right: 24px; top: 57px; transform: rotate(4deg); }
.bubble-c { bottom: 22px; left: 38px; transform: rotate(2deg); }
.order-visual { display: grid; align-content: center; gap: 9px; padding: 20px; }
.order-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; padding: 9px 10px; border: 1px solid rgba(255,255,255,.07); border-radius: 11px; background: rgba(255,255,255,.025); }
.order-avatar { width: 28px; height: 28px; border-radius: 9px; background: linear-gradient(135deg,#9c8bff,#745ee8); }
.order-avatar.second { background: linear-gradient(135deg,#58d9d3,#2bb3aa); }
.order-avatar.third { background: linear-gradient(135deg,#ffbd73,#ec7c58); }
.order-line { width: 82%; height: 6px; border-radius: 6px; background: rgba(255,255,255,.1); }
.order-line.short { width: 57%; }
.order-row em { padding: 4px 7px; border-radius: 6px; background: rgba(67,221,161,.08); color: #76e9bb; font-size: .5rem; font-style: normal; }
.order-row:nth-child(2) em { background: rgba(255,178,96,.08); color: #ffc177; }
.order-row:nth-child(3) em { background: rgba(124,108,255,.1); color: #b7adff; }

.features-section { background: #0b0c18; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature-card { position: relative; min-height: 270px; padding: 28px; overflow: hidden; border: 1px solid var(--border); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(124,108,255,.25); background: linear-gradient(145deg, rgba(124,108,255,.06), rgba(255,255,255,.014)); }
.feature-large { grid-column: span 2; }
.feature-wide { grid-column: span 2; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; min-height: 320px; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid rgba(124,108,255,.2); border-radius: 13px; background: rgba(124,108,255,.08); color: var(--primary-2); }
.feature-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 1.25rem; letter-spacing: -.03em; }
.feature-card p { margin: 11px 0 0; color: var(--text-soft); font-size: .9rem; }
.feature-mini-ui { position: absolute; left: 28px; right: 28px; bottom: -35px; height: 128px; display: grid; grid-template-columns: 28px 110px 1fr; overflow: hidden; border: 1px solid var(--border); border-radius: 15px 15px 0 0; background: rgba(255,255,255,.04); }
.mini-sidebar { background: rgba(124,108,255,.09); }
.mini-list { display: grid; align-content: center; gap: 12px; padding: 14px; border-right: 1px solid var(--border); }
.mini-list span { height: 11px; border-radius: 7px; background: rgba(255,255,255,.09); }
.mini-chat { display: grid; align-content: center; gap: 10px; padding: 15px; }
.mini-chat i { display: block; width: 60%; height: 17px; border-radius: 7px; background: rgba(255,255,255,.07); }
.mini-chat i:nth-child(2) { width: 52%; margin-left: auto; background: rgba(124,108,255,.16); }
.pill-row { position: absolute; left: 27px; right: 27px; bottom: 28px; display: flex; flex-wrap: wrap; gap: 6px; }
.pill-row span { padding: 6px 8px; border-radius: 7px; background: rgba(255,178,96,.08); color: #ffc177; font-size: .56rem; }
.pill-row span:nth-child(2) { background: rgba(78,214,209,.08); color: #76e8e3; }
.pill-row span:nth-child(3) { background: rgba(124,108,255,.1); color: #b7adff; }
.people-stack { position: absolute; left: 27px; bottom: 28px; display: flex; }
.people-stack span { width: 38px; height: 38px; display: grid; place-items: center; margin-left: -8px; border: 3px solid #10111f; border-radius: 50%; background: linear-gradient(135deg,#9d8cff,#6f60df); font-size: .57rem; font-weight: 700; }
.people-stack span:first-child { margin-left: 0; }
.people-stack span:nth-child(2) { background: linear-gradient(135deg,#66dcd5,#2db6ae); }
.people-stack span:nth-child(3) { background: linear-gradient(135deg,#ffb873,#e97e59); }
.people-stack span:nth-child(4) { background: #282a42; color: var(--text-soft); }
.bars { position: absolute; left: 28px; right: 28px; bottom: 28px; height: 78px; display: flex; align-items: end; gap: 8px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.025); }
.bars span { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg,#8f7fff,#594dbc); opacity: .85; }
.automation-flow { display: grid; gap: 8px; justify-items: center; }
.flow-node { min-width: 190px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.03); }
.flow-node span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; background: rgba(124,108,255,.12); color: var(--primary-2); font-size: .65rem; }
.flow-node strong { font-size: .72rem; }
.flow-node.start { transform: translateX(-14px); }
.flow-node.end { transform: translateX(16px); }
.flow-line { height: 21px; width: 1px; background: rgba(124,108,255,.25); position: relative; }
.flow-line i { position: absolute; width: 5px; height: 5px; left: -2px; top: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px rgba(78,214,209,.7); }
.feature-future { background: radial-gradient(circle at 80% 50%, rgba(124,108,255,.11), transparent 38%), linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); }
.future-orbit { position: relative; width: 210px; height: 210px; margin: auto; border: 1px solid rgba(124,108,255,.18); border-radius: 50%; }
.future-orbit::before { content: ""; position: absolute; inset: 32px; border: 1px solid rgba(78,214,209,.13); border-radius: 50%; }
.future-core { position: absolute; left: 50%; top: 50%; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg,#8c7bff,#58d8d2); color: white; font-family: "Manrope"; font-size: 1.5rem; font-weight: 800; transform: translate(-50%,-50%); box-shadow: 0 12px 28px rgba(124,108,255,.3); }
.future-chip { position: absolute; padding: 6px 9px; border: 1px solid var(--border); border-radius: 8px; background: #191a2c; color: var(--text-soft); font-size: .58rem; }
.chip-one { top: 11px; left: 50%; transform: translateX(-50%); }
.chip-two { right: -4px; top: 50%; transform: translateY(-50%); }
.chip-three { left: 50%; bottom: 10px; transform: translateX(-50%); }
.chip-four { left: -9px; top: 50%; transform: translateY(-50%); }

.steps-section { position: relative; }
.steps-grid { display: grid; grid-template-columns: 1fr 60px 1fr 60px 1fr; align-items: center; }
.step-card { position: relative; min-height: 390px; padding: 26px; border: 1px solid var(--border); border-radius: 25px; background: rgba(255,255,255,.02); }
.step-number { position: absolute; top: 22px; right: 24px; color: rgba(255,255,255,.13); font-family: "Manrope"; font-size: 2.6rem; font-weight: 800; letter-spacing: -.05em; }
.step-visual { height: 185px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 18px; background: rgba(255,255,255,.02); }
.step-card h3 { font-size: 1.22rem; letter-spacing: -.03em; }
.step-card p { margin: 11px 0 0; color: var(--text-soft); font-size: .88rem; }
.step-connector { display: flex; align-items: center; }
.step-connector span { width: 100%; height: 1px; background: linear-gradient(90deg, rgba(124,108,255,.1), rgba(124,108,255,.6), rgba(124,108,255,.1)); position: relative; }
.step-connector span::after { content: "›"; position: absolute; right: -2px; top: 50%; color: var(--primary-2); transform: translateY(-54%); }
.phone-outline { position: relative; width: 75px; height: 126px; border: 2px solid rgba(255,255,255,.16); border-radius: 17px; }
.phone-outline::before { content: ""; position: absolute; width: 24px; height: 3px; left: 50%; top: 7px; border-radius: 3px; background: rgba(255,255,255,.12); transform: translateX(-50%); }
.phone-outline span { position: absolute; inset: 25px 9px 14px; border-radius: 9px; background: linear-gradient(145deg,rgba(124,108,255,.18),rgba(78,214,209,.1)); }
.phone-outline i { position: absolute; right: -13px; bottom: 13px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #0b2319; font-style: normal; font-weight: 800; box-shadow: 0 0 0 8px rgba(67,221,161,.08); }
.connect-pulse { position: absolute; width: 130px; height: 130px; border: 1px solid rgba(67,221,161,.11); border-radius: 50%; }
.organize-visual { position: relative; }
.organize-card { position: absolute; width: 142px; height: 57px; border: 1px solid var(--border); border-radius: 12px; background: #181a2b; box-shadow: 0 12px 25px rgba(0,0,0,.18); }
.organize-card::before { content: ""; position: absolute; left: 12px; top: 12px; width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg,#9584ff,#6758d3); }
.organize-card::after { content: ""; position: absolute; left: 52px; top: 17px; width: 62px; height: 7px; border-radius: 4px; background: rgba(255,255,255,.1); box-shadow: 0 13px 0 rgba(255,255,255,.06); }
.organize-card.card-one { top: 28px; transform: translateX(-20px) rotate(-4deg); opacity: .65; }
.organize-card.card-two { top: 61px; z-index: 2; }
.organize-card.card-three { top: 94px; transform: translateX(20px) rotate(4deg); opacity: .75; }
.grow-visual svg { width: 145px; overflow: visible; }
.grow-visual path { fill: none; stroke: url(#none); stroke: #8c7bff; stroke-width: 4; stroke-linecap: round; }
.grow-visual circle { fill: var(--cyan); filter: drop-shadow(0 0 7px rgba(78,214,209,.7)); }

.audience-section { background: linear-gradient(180deg,#0b0c18,#0e0f1d); }
.audience-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.audience-copy p { margin-left: 0; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 25px; color: #c0b7ff; font-weight: 700; }
.text-link span { color: var(--cyan); }
.audience-cards { display: grid; gap: 10px; }
.audience-card { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 15px; min-height: 90px; padding: 16px 18px; border: 1px solid var(--border); border-radius: 17px; background: rgba(255,255,255,.02); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.audience-card:hover, .audience-card.active { transform: translateX(-7px); border-color: rgba(124,108,255,.26); background: rgba(124,108,255,.055); }
.audience-card > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(124,108,255,.1); color: var(--primary-2); font-size: 1.15rem; }
.audience-card strong, .audience-card small { display: block; }
.audience-card strong { font-size: .98rem; }
.audience-card small { margin-top: 4px; color: var(--muted); font-size: .77rem; }

.plans-section { background: #090a15; }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 500px; padding: 30px; border: 1px solid var(--border); border-radius: 26px; background: linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.014)); }
.plan-featured { border-color: rgba(124,108,255,.42); background: radial-gradient(circle at 80% 0,rgba(124,108,255,.14),transparent 35%),linear-gradient(145deg,rgba(124,108,255,.08),rgba(255,255,255,.02)); box-shadow: 0 25px 65px rgba(55,45,135,.2); transform: translateY(-10px); }
.most-popular { position: absolute; top: 0; left: 50%; padding: 6px 13px; border-radius: 0 0 9px 9px; background: linear-gradient(135deg,var(--primary-2),var(--primary)); color: white; font-size: .58rem; font-weight: 800; letter-spacing: .08em; transform: translateX(-50%); }
.plan-badge { color: var(--cyan); font-size: .63rem; font-weight: 800; letter-spacing: .11em; }
.plan-top h3 { margin-top: 10px; font-size: 2rem; letter-spacing: -.04em; }
.plan-top p { margin: 10px 0 0; color: var(--text-soft); font-size: .88rem; }
.plan-card ul { display: grid; gap: 13px; margin: 29px 0 30px; padding: 25px 0 0; border-top: 1px solid var(--border); list-style: none; }
.plan-card li { position: relative; padding-left: 27px; color: var(--text-soft); font-size: .88rem; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(67,221,161,.09); color: var(--green); font-size: .6rem; font-weight: 700; }
.button-plan { width: 100%; margin-top: auto; border-color: var(--border-strong); background: rgba(255,255,255,.025); }
.plan-featured .button-plan { border-color: transparent; }
.plan-note { margin: 25px 0 0; color: var(--muted); text-align: center; font-size: .78rem; }

.faq-section { background: linear-gradient(180deg,#0c0d1a,#0a0b16); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { margin-left: 0; }
.faq-intro .button { margin-top: 24px; }
.accordion { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--border); border-radius: 17px; background: rgba(255,255,255,.02); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 22px; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 700; }
.faq-question i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: rgba(124,108,255,.08); color: var(--primary-2); font-style: normal; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; padding: 0 22px; color: var(--text-soft); font-size: .9rem; transition: padding .3s ease; }
.faq-item.open { border-color: rgba(124,108,255,.22); background: rgba(124,108,255,.035); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 22px; }

.cta-section { padding-top: 90px; }
.cta-card { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 68px; align-items: center; overflow: hidden; padding: 58px; border: 1px solid rgba(124,108,255,.3); border-radius: 32px; background: radial-gradient(circle at 0 100%,rgba(78,214,209,.11),transparent 38%),radial-gradient(circle at 100% 0,rgba(124,108,255,.22),transparent 42%),#131426; box-shadow: 0 34px 90px rgba(0,0,0,.3); }
.cta-glow { position: absolute; width: 300px; height: 300px; left: -150px; bottom: -160px; border-radius: 50%; background: var(--cyan); filter: blur(100px); opacity: .08; }
.cta-copy { position: relative; z-index: 2; }
.cta-copy p { margin: 18px 0 0; color: var(--text-soft); }
.cta-benefits { display: flex; flex-wrap: wrap; gap: 13px 18px; margin-top: 25px; color: #d7daec; font-size: .78rem; }
.cta-benefits span::first-letter { color: var(--green); }
.contact-form { position: relative; z-index: 2; display: grid; gap: 14px; padding: 25px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: rgba(9,10,21,.5); backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 7px; color: #d8daea; font-size: .76rem; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; outline: none; background: rgba(255,255,255,.045); color: var(--text); transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { height: 43px; padding: 0 12px; }
.contact-form textarea { padding: 11px 12px; resize: vertical; }
.contact-form select option { background: #151629; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #777c97; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(124,108,255,.65); box-shadow: 0 0 0 3px rgba(124,108,255,.1); }
.contact-form .invalid { border-color: rgba(255,125,143,.8); }
.button-full { width: 100%; margin-top: 3px; }
.form-note { margin: -2px 0 0; color: var(--muted); text-align: center; font-size: .62rem; }
.form-success { display: none; padding: 10px 12px; border-radius: 9px; background: rgba(67,221,161,.09); color: #8cebc2; font-size: .75rem; text-align: center; }
.form-success.show { display: block; }

.site-footer { padding: 74px 0 24px; border-top: 1px solid var(--border); background: #070811; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3,1fr); gap: 55px; padding-bottom: 50px; }
.footer-brand p { max-width: 340px; margin: 18px 0 0; color: var(--muted); font-size: .86rem; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column strong { margin-bottom: 8px; font-size: .84rem; }
.footer-column a, .footer-column span { color: var(--muted); font-size: .8rem; transition: color .2s ease; }
.footer-column a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--border); color: #6f748d; font-size: .72rem; }
.footer-bottom div { display: flex; gap: 20px; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 53px; height: 53px; display: grid; place-items: center; border-radius: 17px; background: linear-gradient(135deg,#4de1a1,#1fbf7a); color: #062417; box-shadow: 0 17px 35px rgba(31,191,122,.24); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }
  .hero-copy h1, .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(840px,100%); margin-inline: auto; }
  .dashboard-shell { margin-inline: auto; }
  .floating-card-one { left: -5px; }
  .floating-card-two { right: -5px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .feature-large, .feature-wide { grid-column: span 1; }
  .feature-wide { grid-template-columns: 1fr; min-height: 390px; }
  .feature-wide .automation-flow, .feature-wide .future-orbit { margin-top: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .step-card { min-height: 330px; }
  .audience-grid { grid-template-columns: 1fr; gap: 44px; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-intro { position: static; }
  .cta-card { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .section-padding { padding: 82px 0; }
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav.open { position: fixed; inset: 78px 0 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 20px; background: rgba(8,9,20,.97); backdrop-filter: blur(18px); }
  .main-nav.open a { width: 100%; padding: 18px 8px; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 54px; }
  .dashboard-body { grid-template-columns: 42px 230px minmax(0,1fr); height: 420px; }
  .floating-card-two { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .section-heading.split { grid-template-columns: 1fr; gap: 18px; }
  .before-after-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: auto; }
  .plan-featured { transform: none; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-padding { padding: 70px 0; }
  .nav-wrap { min-height: 70px; }
  .main-nav.open { top: 70px; }
  .hero { padding-top: 36px; padding-bottom: 64px; }
  .eyebrow { font-size: .68rem; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button-link { min-height: 44px; }
  .hero-trust { gap: 12px; font-size: .76rem; }
  .dashboard-shell { transform: none; }
  .dashboard-topbar { grid-template-columns: 110px 1fr 28px; }
  .dashboard-search { overflow: hidden; white-space: nowrap; }
  .dashboard-body { grid-template-columns: 38px 1fr; height: 410px; }
  .chat-panel { display: none; }
  .conversation-list { border-right: 0; }
  .floating-card-one { left: 12px; right: 12px; bottom: -55px; }
  .hero-visual { margin-bottom: 38px; }
  .trust-item { padding: 15px 8px; min-height: 88px; justify-content: flex-start; }
  .trust-symbol { width: 34px; height: 34px; }
  .trust-item strong { font-size: .78rem; }
  .trust-item div span { font-size: .63rem; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2, .faq-intro h2, .audience-copy h2, .cta-copy h2 { font-size: 2.15rem; }
  .state-card { min-height: 545px; padding: 25px; }
  .chaos-visual, .order-visual { left: 24px; right: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-large, .feature-wide { grid-column: auto; }
  .feature-wide { min-height: 420px; }
  .flow-node { min-width: 176px; }
  .audience-card { grid-template-columns: 46px 1fr; }
  .cta-card { padding: 28px 20px; border-radius: 24px; }
  .contact-form { padding: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}

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