:root {
    --ink-950: #071426;
    --ink-900: #0b1f3a;
    --ink-800: #142a47;
    --blue-700: #1555d8;
    --blue-600: #246bfd;
    --blue-500: #3b7cff;
    --violet-500: #725cf6;
    --cyan-400: #29c7d8;
    --success-500: #22a06b;
    --warning-500: #f0a33a;
    --danger-500: #d95151;
    --surface: #ffffff;
    --mist-50: #f5f8fc;
    --mist-100: #edf3f9;
    --slate-500: #65758b;
    --slate-600: #52627a;
    --line: #dce5f0;
    --gradient: linear-gradient(135deg, var(--blue-600), var(--violet-500) 55%, var(--cyan-400));
    --shadow-sm: 0 10px 32px rgba(18, 42, 71, .08);
    --shadow-md: 0 24px 72px rgba(8, 28, 56, .14);
    --shadow-blue: 0 18px 44px rgba(36, 107, 253, .25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1200px;
    --header-height: 78px;
    --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
    --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    color: var(--ink-950);
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.chat-open {
    overflow: hidden;
}

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

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

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

a {
    color: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(41, 199, 216, .9);
    outline-offset: 3px;
}

::selection {
    color: #fff;
    background: var(--blue-600);
}

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

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

.section-soft {
    background: var(--mist-50);
}

.section-dark {
    color: #fff;
    background: var(--ink-950);
}

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

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

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

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--header-height);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}

.site-header.scrolled {
    height: 70px;
    background: rgba(7, 20, 38, .92);
    box-shadow: 0 12px 40px rgba(3, 13, 27, .2);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 26px;
    height: 100%;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -.04em;
    text-decoration: none;
}

.brand img {
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.brand small {
    margin-left: -9px;
    color: #8ea4c0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
}

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

.main-nav a {
    position: relative;
    padding: 8px 0;
    color: #becae0;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transition: color .2s ease;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    background: var(--cyan-400);
    border-radius: 2px;
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 750;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
    color: #fff;
    background: var(--gradient);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    box-shadow: 0 22px 50px rgba(36, 107, 253, .34);
}

.btn-light {
    color: var(--ink-950);
    background: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
}

.btn-ghost {
    color: var(--ink-900);
    background: transparent;
    border-color: var(--line);
}

.section-dark .btn-ghost,
.site-header .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
}

.btn-small {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 12px;
}

.btn-large {
    min-height: 56px;
    padding: 15px 24px;
}

.btn-block {
    width: 100%;
}

.eyebrow,
.kicker {
    margin: 0 0 16px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.kicker-light {
    color: #7fe0ea;
}

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

.section-heading.centered {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.memory-copy h2,
.dashboard-copy h2,
.demo-copy h2,
.process-copy h2,
.faq-intro h2,
.contact-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -.052em;
}

.section-heading > p:last-child,
.split-heading > p,
.memory-copy > p,
.dashboard-copy > p,
.demo-copy > p,
.process-copy > p,
.faq-intro > p,
.contact-copy > p {
    margin: 22px 0 0;
    color: var(--slate-600);
    font-size: 18px;
    line-height: 1.72;
}

.section-dark .section-heading > p:last-child,
.section-dark .memory-copy > p,
.section-dark .demo-copy > p,
.process-copy > p,
.contact-copy > p {
    color: #a9b9cf;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .65fr);
    align-items: end;
    gap: 80px;
}

.split-heading > p {
    margin: 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 860px;
    padding: 162px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 32%, rgba(66, 100, 255, .19), transparent 31%),
        radial-gradient(circle at 10% 68%, rgba(41, 199, 216, .08), transparent 30%),
        linear-gradient(145deg, #071426 0%, #08172d 48%, #0a1e3b 100%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

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

.hero-orb-one {
    top: 120px;
    right: -160px;
    background: var(--violet-500);
}

.hero-orb-two {
    bottom: 10px;
    left: -260px;
    background: var(--cyan-400);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, .78fr);
    align-items: center;
    gap: 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #c6d5e8;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    letter-spacing: .08em;
}

.pulse-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #55dfaa;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(85, 223, 170, .12);
}

.hero h1 {
    max-width: 750px;
    margin: 20px 0 24px;
    font-family: var(--font-display);
    font-size: clamp(50px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -.062em;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(100deg, #8fb4ff, #c0a9ff 55%, #74e2eb);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-lead {
    max-width: 650px;
    margin: 0;
    color: #b5c3d8;
    font-size: 19px;
    line-height: 1.72;
}

.hero-price-note {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 26px;
    padding: 11px 15px;
    color: #d8e4f3;
    background: linear-gradient(110deg, rgba(36,107,253,.17), rgba(114,92,246,.13));
    border: 1px solid rgba(126,161,255,.28);
    border-radius: 13px;
    box-shadow: inset 0 1px rgba(255,255,255,.05);
}

.hero-price-note > span {
    color: #9fb3cd;
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero-price-note strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.04em;
}

.hero-price-note b {
    color: #7fe0ea;
    font-size: 10px;
}

.hero-price-note small {
    width: 100%;
    color: #748da9;
    font-size: 8px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.channel-note {
    margin: 20px 0 0;
    color: #8499b6;
    font-size: 13px;
}

.hero-proof {
    display: flex;
    gap: 0;
    margin-top: 42px;
}

.hero-proof div {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    padding: 0 22px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.hero-proof div:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-proof strong {
    font-family: var(--font-display);
    font-size: 21px;
}

.hero-proof span {
    color: #8296b1;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
}

.phone-shell {
    position: relative;
    z-index: 2;
    width: 358px;
    padding: 10px;
    background: linear-gradient(145deg, #344054, #0c1525 42%, #29354a);
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 48px;
    box-shadow: 0 45px 100px rgba(0,0,0,.48), inset 0 0 0 2px rgba(255,255,255,.04);
    transform: rotate(2deg);
}

.phone-shell::before {
    position: absolute;
    z-index: -1;
    inset: -70px;
    background: radial-gradient(circle, rgba(76, 107, 255, .25), transparent 66%);
    content: "";
}

.phone-top {
    position: absolute;
    z-index: 5;
    top: 18px;
    left: 50%;
    width: 92px;
    height: 23px;
    background: #080f1c;
    border-radius: 999px;
    transform: translateX(-50%);
}

.phone-top span {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 6px;
    height: 6px;
    background: #15294a;
    border-radius: 50%;
}

.phone-screen {
    height: 650px;
    overflow: hidden;
    color: var(--ink-950);
    background: #eff4f8;
    border-radius: 39px;
}

.chat-head,
.widget-head {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 76px;
    padding: 23px 16px 13px;
    color: #fff;
    background: #0d213e;
}

.bot-avatar {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--gradient);
    border-radius: 12px;
    place-items: center;
    font-weight: 850;
    letter-spacing: -.05em;
}

.chat-head > div:nth-child(2),
.widget-head > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.chat-head strong,
.widget-head strong {
    font-size: 13px;
}

.chat-head span,
.widget-head span {
    color: #91a6c2;
    font-size: 10px;
}

.chat-head span i,
.widget-head span i,
.online-label i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 3px;
    background: #4fd29a;
    border-radius: 50%;
}

.icon-button {
    display: grid;
    width: 36px;
    height: 36px;
    margin-left: auto;
    padding: 0;
    color: inherit;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    place-items: center;
}

.phone-chat {
    display: flex;
    flex-direction: column;
    min-height: 506px;
    padding: 26px 16px;
    background:
        radial-gradient(circle at 20% 30%, rgba(36,107,253,.05), transparent 30%),
        #edf3f7;
}

.message {
    max-width: 84%;
    margin-bottom: 12px;
    padding: 11px 13px;
    border-radius: 15px;
    font-size: 12px;
    line-height: 1.52;
    box-shadow: 0 5px 15px rgba(14,35,60,.07);
}

.message-user {
    align-self: flex-end;
    background: #dbe9ff;
    border-bottom-right-radius: 4px;
}

.message-bot {
    align-self: flex-start;
    background: #fff;
    border-bottom-left-radius: 4px;
}

.typing {
    display: flex;
    align-self: flex-start;
    gap: 4px;
    width: 48px;
    margin-bottom: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 14px 14px 14px 4px;
}

.typing span {
    width: 5px;
    height: 5px;
    background: #8696aa;
    border-radius: 50%;
    animation: typing 1.1s infinite ease-in-out;
}

.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }

.memory-panel {
    margin-top: 10px;
    padding: 13px;
    background: rgba(255,255,255,.84);
    border: 1px solid #d9e4f0;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(24,61,96,.07);
}

.memory-head {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: var(--blue-700);
    font-size: 10px;
}

.memory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.memory-tags span {
    padding: 4px 7px;
    color: var(--slate-600);
    background: #edf3ff;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 700;
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 9px 12px;
    background: #fff;
    border-top: 1px solid #dfe7ef;
}

.phone-input span {
    flex: 1;
    padding: 10px;
    color: #99a6b5;
    background: #f4f7fa;
    border-radius: 10px;
    font-size: 10px;
}

.phone-input b {
    display: grid;
    width: 34px;
    height: 34px;
    color: #fff;
    background: var(--blue-600);
    border-radius: 10px;
    place-items: center;
}

.sequence-item {
    opacity: 0;
    transform: translateY(12px) scale(.98);
}

.sequence-item.show {
    opacity: 1;
    transform: none;
    transition: opacity .4s ease, transform .4s ease;
}

.signal-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    padding: 13px;
    color: var(--ink-950);
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 15px;
    box-shadow: 0 22px 55px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
}

.signal-card-top {
    top: 90px;
    right: -8px;
}

.signal-card-bottom {
    bottom: 76px;
    left: -18px;
}

.signal-icon {
    display: grid;
    width: 36px;
    height: 36px;
    color: #fff;
    background: var(--success-500);
    border-radius: 11px;
    place-items: center;
}

.signal-icon.signal-cyan {
    background: var(--blue-600);
}

.signal-card > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.signal-card strong {
    font-size: 11px;
}

.signal-card small {
    color: var(--slate-500);
    font-size: 9px;
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    color: #7288a5;
    background: rgba(4, 13, 27, .5);
    border-top: 1px solid rgba(255,255,255,.07);
}

.trust-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 82px;
    font-size: 12px;
}

.trust-strip b {
    color: #acbdd2;
    font-size: 13px;
}

.trust-strip i {
    width: 3px;
    height: 3px;
    background: #3e5776;
    border-radius: 50%;
}

/* Problem */
.problem-section {
    background:
        radial-gradient(circle at 92% 8%, rgba(114,92,246,.09), transparent 27%),
        linear-gradient(180deg, #f7faff 0%, #eef4fc 100%);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.problem-card {
    position: relative;
    min-height: 250px;
    padding: 30px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(238,244,255,.9));
    border: 1px solid #cfdced;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.problem-card::after {
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(36,107,253,.12), transparent 70%);
    content: "";
}

.card-index {
    color: #9aacbf;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
}

.problem-symbol {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 27px 0 20px;
    color: var(--blue-600);
    background: #ecf3ff;
    border-radius: 14px;
    place-items: center;
    font-weight: 900;
}

.problem-card h3,
.capability-card h3,
.step-card h3,
.plan-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.problem-card p,
.capability-card p,
.step-card p,
.plan-card > p {
    margin: 11px 0 0;
    color: var(--slate-600);
    font-size: 14px;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-side {
    padding: 46px;
}

.comparison-side.before {
    background: #eaf1fb;
}

.comparison-side.after {
    background: linear-gradient(145deg, #0b203b, #102d50);
    color: #fff;
}

.comparison-label,
.plan-label {
    margin: 0 0 13px;
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.comparison-side.after .comparison-label {
    color: #6fe0e9;
}

.comparison-side h3 {
    max-width: 440px;
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: 27px;
    line-height: 1.25;
    letter-spacing: -.035em;
}

.comparison-center {
    position: relative;
    z-index: 2;
    display: grid;
    background: linear-gradient(to right, #eaf1fb 50%, #0d2543 50%);
    place-items: center;
}

.comparison-center span {
    display: grid;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--gradient);
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(36,107,253,.25);
    place-items: center;
}

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

.check-list li {
    position: relative;
    padding-left: 27px;
    color: inherit;
    font-size: 14px;
}

.check-list li::before {
    position: absolute;
    top: 2px;
    left: 0;
    display: grid;
    width: 18px;
    height: 18px;
    color: var(--success-500);
    background: rgba(34,160,107,.1);
    border-radius: 50%;
    content: "✓";
    font-size: 10px;
    font-weight: 900;
    place-items: center;
}

.negative li {
    color: var(--slate-600);
}

.negative li::before {
    color: var(--danger-500);
    background: rgba(217,81,81,.1);
    content: "×";
}

/* Process steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
    counter-reset: steps;
    list-style: none;
}

.step-card {
    position: relative;
    min-height: 420px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 38px rgba(20,42,71,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 25px;
    color: var(--blue-600);
    background: #ebf2ff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 850;
}

.step-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin: 20px 0 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #f2f6fd, #eaf1fa);
    border: 1px solid #e0e9f3;
    border-radius: 16px;
}

.step-visual::before {
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image: radial-gradient(#b6c8dd 1px, transparent 1px);
    background-size: 12px 12px;
    content: "";
}

.knowledge-visual i {
    position: relative;
    width: 42px;
    height: 54px;
    margin: 0 -10px;
    background: #fff;
    border: 1px solid #cbd9e8;
    border-radius: 7px;
    box-shadow: 0 7px 15px rgba(33,70,108,.1);
}

.knowledge-visual i:first-child { transform: rotate(-13deg); }
.knowledge-visual i:nth-child(2) { z-index: 2; height: 62px; border-top: 4px solid var(--blue-600); }
.knowledge-visual i:last-child { transform: rotate(13deg); }

.voice-visual i {
    position: relative;
    width: 5px;
    margin: 0 4px;
    background: var(--gradient);
    border-radius: 6px;
}

.voice-visual i:nth-child(1),
.voice-visual i:nth-child(5) { height: 22px; }
.voice-visual i:nth-child(2),
.voice-visual i:nth-child(4) { height: 48px; }
.voice-visual i:nth-child(3) { height: 72px; }

.connect-visual i {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 4px solid #b8d0ff;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(33,70,108,.12);
}

.connect-visual i:nth-child(1) { top: 20px; left: 30px; }
.connect-visual i:nth-child(2) { top: 20px; right: 30px; border-color: #c7b9ff; }
.connect-visual i:nth-child(3) { right: 30px; bottom: 20px; border-color: #9ee2ea; }
.connect-visual i:nth-child(4) { bottom: 20px; left: 30px; border-color: #b7e2d0; }
.connect-visual::after {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    background: var(--gradient);
    border: 6px solid #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(36,107,253,.25);
    content: "";
}

.chart-visual {
    align-items: flex-end;
    gap: 7px;
    padding: 34px 38px;
}

.chart-visual i {
    position: relative;
    width: 18px;
    background: linear-gradient(to top, var(--blue-600), #83a9ff);
    border-radius: 5px 5px 2px 2px;
}

.chart-visual i:nth-child(1) { height: 28%; }
.chart-visual i:nth-child(2) { height: 55%; }
.chart-visual i:nth-child(3) { height: 42%; }
.chart-visual i:nth-child(4) { height: 82%; background: linear-gradient(to top, var(--violet-500), #b3a5ff); }

.step-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.step-card li {
    padding: 5px 8px;
    color: var(--slate-600);
    background: var(--mist-50);
    border: 1px solid #e3ebf4;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 750;
    text-transform: uppercase;
}

/* Memory */
.memory-section {
    overflow: hidden;
    background: linear-gradient(145deg, #061324, #0a213f);
}

.memory-glow,
.demo-glow {
    position: absolute;
    top: 5%;
    right: -15%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(78,91,245,.25), transparent 68%);
    pointer-events: none;
}

.memory-layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
    align-items: center;
    gap: 100px;
}

.memory-copy {
    position: relative;
    z-index: 1;
}

.feature-points {
    display: grid;
    gap: 15px;
    margin-top: 34px;
}

.feature-points > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-points > div > span {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    color: #9dbdff;
    background: rgba(76,111,255,.13);
    border: 1px solid rgba(130,159,255,.2);
    border-radius: 10px;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
}

.feature-points p {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: #8fa3be;
    font-size: 12px;
}

.feature-points strong {
    color: #fff;
    font-size: 14px;
}

.fine-print {
    color: var(--slate-500) !important;
    font-size: 12px !important;
}

.timeline-chat {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 36px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 90px rgba(0,0,0,.28);
}

.timeline-chat .message {
    color: var(--ink-950);
    font-size: 14px;
}

.day-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 20px;
    color: #8594a7;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.day-divider::before,
.day-divider::after {
    flex: 1;
    height: 1px;
    background: #dfe6ed;
    content: "";
}

.timeline-chat .day-divider:not(:first-child) {
    margin-top: 25px;
}

.remembered {
    position: relative;
    padding-top: 34px;
    border: 1px solid #b7cbff;
}

.remembered small {
    position: absolute;
    top: 9px;
    left: 12px;
    color: var(--blue-600);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Capabilities */
.capabilities-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 16%, rgba(41,199,216,.12), transparent 24%),
        radial-gradient(circle at 92% 74%, rgba(114,92,246,.16), transparent 27%),
        linear-gradient(145deg, #061224 0%, #0a213f 58%, #0b2949 100%);
}

.capabilities-section::before {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 68px 68px;
    content: "";
    pointer-events: none;
}

.capabilities-section .container {
    position: relative;
    z-index: 1;
}

.capabilities-section .kicker {
    color: #6edbe6;
}

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

.capability-card {
    position: relative;
    min-height: 235px;
    padding: 26px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.capability-card:hover {
    border-color: rgba(111,224,233,.4);
    box-shadow: 0 22px 50px rgba(0,0,0,.18);
    transform: translateY(-4px);
}

.capability-card.featured {
    color: #fff;
    background: linear-gradient(145deg, rgba(36,107,253,.85), rgba(114,92,246,.72));
    border-color: rgba(255,255,255,.18);
}

.capability-card.featured p {
    color: #d7e2f3;
}

.capabilities-section .capability-card p {
    color: #9eb1c9;
}

.cap-icon {
    display: grid;
    width: 47px;
    height: 47px;
    margin-bottom: 30px;
    color: #8fb5ff;
    background: rgba(76,119,255,.14);
    border: 1px solid rgba(119,155,255,.16);
    border-radius: 14px;
    place-items: center;
    font-size: 12px;
    font-weight: 850;
}

.featured .cap-icon {
    color: #fff;
    background: var(--gradient);
}

/* Flow */
.flow-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(36,107,253,.12), transparent 25%),
        radial-gradient(circle at 88% 85%, rgba(41,199,216,.13), transparent 28%),
        linear-gradient(150deg, #e8edff 0%, #edf7f9 56%, #e6effb 100%);
}

.flow-map {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 35px;
    background: rgba(248,251,255,.76);
    border: 1px solid rgba(153,178,213,.48);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 70px rgba(27,57,91,.13);
    backdrop-filter: blur(12px);
}

.flow-line {
    position: absolute;
    top: 50%;
    right: 6%;
    left: 6%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-600), var(--violet-500), var(--cyan-400));
    opacity: .2;
}

.flow-node {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 126px;
    padding: 14px 8px;
    text-align: center;
    background: linear-gradient(145deg, #fff, #edf3ff);
    border: 1px solid #c8d8ed;
    border-radius: 16px;
}

.flow-node > span {
    display: grid;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    color: var(--blue-600);
    background: #eaf2ff;
    border-radius: 10px;
    place-items: center;
    font-size: 9px;
    font-weight: 850;
}

.flow-node b {
    font-size: 12px;
}

.flow-node small {
    color: var(--slate-500);
    font-size: 9px;
}

.flow-node.primary {
    color: #fff;
    background: linear-gradient(145deg, #1555d8, #725cf6);
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(36,107,253,.25);
}

.flow-node.primary > span {
    color: #fff;
    background: rgba(255,255,255,.16);
}

.flow-node.primary small {
    color: #cddcff;
}

.flow-node.success > span {
    color: #fff;
    background: var(--success-500);
}

.flow-arrow {
    position: relative;
    z-index: 2;
    color: #91a4b9;
    font-size: 15px;
}

.flow-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 700px;
    margin: 22px auto 0;
    padding: 12px 18px;
    color: #405269;
    background: #eaf7f1;
    border: 1px solid #c5eadb;
    border-radius: 999px;
    font-size: 12px;
}

.flow-result span {
    display: grid;
    width: 24px;
    height: 24px;
    color: #fff;
    background: var(--success-500);
    border-radius: 50%;
    place-items: center;
}

.flow-result p {
    margin: 0;
}

/* Use cases */
.use-cases-section {
    background:
        radial-gradient(circle at 100% 0, rgba(114,92,246,.1), transparent 29%),
        linear-gradient(180deg, #f4f7ff, #eaf1fb);
}

.use-case-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr);
    gap: 34px;
}

.use-case-selector {
    display: grid;
    gap: 9px;
}

.use-case-tab {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    color: var(--ink-950);
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: border .2s ease, background .2s ease, transform .2s ease;
}

.use-case-tab:hover {
    transform: translateX(4px);
}

.use-case-tab.active {
    background: #f0f5ff;
    border-color: #90b2ff;
    box-shadow: inset 3px 0 var(--blue-600);
}

.use-case-tab > span {
    grid-row: 1 / 3;
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 850;
}

.use-case-tab b {
    font-size: 14px;
}

.use-case-tab small {
    color: var(--slate-500);
    font-size: 10px;
}

.case-preview {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 28px;
    background: var(--mist-50);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.case-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.case-sector {
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.online-label {
    color: var(--slate-500);
    font-size: 10px;
}

.case-chat {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
}

.case-chat .message {
    padding: 15px 17px;
    font-size: 14px;
}

.case-detected {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
    color: var(--blue-600);
    background: #e9f1ff;
    border: 1px solid #cbdcff;
    border-radius: 12px;
}

.case-detected > span {
    display: grid;
    width: 30px;
    height: 30px;
    color: #fff;
    background: var(--blue-600);
    border-radius: 9px;
    place-items: center;
}

.case-detected div {
    display: flex;
    flex-direction: column;
}

.case-detected small {
    color: #6d82a0;
    font-size: 9px;
}

.case-detected strong {
    color: var(--ink-900);
    font-size: 12px;
}

.more-cases {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--slate-500);
    font-size: 11px;
}

.more-cases b {
    padding: 7px 11px;
    color: var(--slate-600);
    background: var(--mist-50);
    border: 1px solid var(--line);
    border-radius: 999px;
}

/* Demo */
.demo-section {
    overflow: hidden;
    background: linear-gradient(145deg, #061224, #0b2444);
}

.demo-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(460px, 1.1fr);
    align-items: center;
    gap: 80px;
}

.demo-benefits {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 34px;
    color: #b4c3d7;
    list-style: none;
}

.demo-benefits li {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.demo-benefits span {
    color: #62dfab;
}

.demo-disclaimer {
    max-width: 480px;
    margin-top: 16px !important;
    color: #6f86a4 !important;
    font-size: 11px !important;
}

.demo-stage {
    position: relative;
    min-height: 500px;
}

.demo-stage::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(69,100,255,.28), transparent 67%);
    border: 1px solid rgba(128,157,255,.11);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.demo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 250px;
    text-align: center;
    transform: translate(-50%, -50%);
}

.demo-logo-ring {
    position: relative;
    display: grid;
    width: 116px;
    height: 116px;
    margin-bottom: 22px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 35px;
    box-shadow: 0 30px 65px rgba(0,0,0,.3);
    place-items: center;
}

.demo-logo-ring::before,
.demo-logo-ring::after {
    position: absolute;
    border: 1px solid rgba(99,135,255,.15);
    border-radius: 50%;
    content: "";
}

.demo-logo-ring::before { inset: -35px; }
.demo-logo-ring::after { inset: -72px; }

.demo-center strong {
    font-family: var(--font-display);
    font-size: 19px;
}

.demo-center small {
    color: #899db8;
}

.demo-bubble {
    position: absolute;
    z-index: 2;
    width: 245px;
    padding: 17px;
    color: #d6e0ed;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 17px;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    font-size: 12px;
}

.demo-bubble span {
    display: block;
    margin-bottom: 7px;
    color: #6fe0e9;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bubble-one {
    top: 55px;
    left: 0;
}

.bubble-two {
    right: 0;
    bottom: 55px;
}

/* Dashboard */
.dashboard-section {
    background:
        radial-gradient(circle at 0 60%, rgba(41,199,216,.1), transparent 26%),
        linear-gradient(145deg, #061224, #0b2647);
}

.dashboard-section .dashboard-copy h2 {
    color: #fff;
}

.dashboard-section .dashboard-copy > p,
.dashboard-section .dashboard-copy .check-list li {
    color: #a8bad0;
}

.dashboard-section .dashboard-copy .check-list li::before {
    background: rgba(34,160,107,.2);
}

.dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, .65fr) minmax(580px, 1.35fr);
    align-items: center;
    gap: 70px;
}

.dashboard-copy .check-list {
    margin-top: 28px;
}

.dashboard-copy .check-list li {
    color: var(--slate-600);
}

.dashboard-window {
    overflow: hidden;
    background: #f5f7fb;
    border: 1px solid #dbe4ef;
    border-radius: 22px;
    box-shadow: 0 35px 80px rgba(14,40,69,.18);
}

.dash-top {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    padding: 0 15px;
    background: #fff;
    border-bottom: 1px solid #e0e7ef;
}

.dash-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
}

.dash-top > span {
    margin-left: auto;
    color: #8693a4;
    font-size: 8px;
}

.dash-top > i {
    display: grid;
    width: 26px;
    height: 26px;
    color: #fff;
    background: var(--blue-600);
    border-radius: 8px;
    place-items: center;
    font-size: 8px;
    font-style: normal;
}

.dash-body {
    display: grid;
    grid-template-columns: 54px 1fr;
    min-height: 440px;
}

.dash-side {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding-top: 24px;
    background: #0b1f3a;
}

.dash-side b,
.dash-side span {
    display: block;
    width: 17px;
    height: 17px;
    border: 2px solid #70849e;
    border-radius: 5px;
}

.dash-side b {
    background: var(--blue-500);
    border-color: var(--blue-500);
}

.dash-content {
    padding: 24px;
}

.dash-greeting,
.dash-card-head,
.lead-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-greeting > div {
    display: flex;
    flex-direction: column;
}

.dash-greeting small {
    color: #8493a6;
    font-size: 8px;
}

.dash-greeting strong {
    font-size: 15px;
}

.status-live {
    padding: 5px 8px;
    color: var(--success-500);
    background: #e9f7f1;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-top: 20px;
}

.dash-metrics > div {
    display: flex;
    flex-direction: column;
    padding: 13px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 10px;
}

.dash-metrics small {
    color: #8090a4;
    font-size: 7px;
}

.dash-metrics strong {
    font-size: 19px;
}

.dash-metrics span {
    color: var(--success-500);
    font-size: 7px;
}

.dash-lower {
    display: grid;
    grid-template-columns: 1.3fr .8fr;
    gap: 10px;
    margin-top: 10px;
}

.dash-chart,
.hot-lead {
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 11px;
}

.dash-card-head b {
    font-size: 9px;
}

.dash-card-head span {
    color: #8997a9;
    font-size: 7px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 145px;
    padding-top: 25px;
    border-bottom: 1px solid #dce5ee;
}

.bars i {
    flex: 1;
    min-height: 10px;
    background: linear-gradient(to top, var(--blue-600), #8fb0ff);
    border-radius: 4px 4px 0 0;
}

.lead-person {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 18px;
}

.lead-person > i {
    display: grid;
    width: 32px;
    height: 32px;
    color: #fff;
    background: var(--violet-500);
    border-radius: 10px;
    place-items: center;
    font-size: 8px;
    font-style: normal;
}

.lead-person > div {
    display: flex;
    flex-direction: column;
}

.lead-person strong {
    font-size: 8px;
}

.lead-person small {
    color: #8997a9;
    font-size: 7px;
}

.lead-person > span {
    margin-left: auto;
    padding: 3px 5px;
    color: #b65d22;
    background: #fff1e5;
    border-radius: 6px;
    font-size: 6px;
}

.hot-lead > p {
    margin: 15px 0;
    color: #67788e;
    font-size: 8px;
}

.hot-lead > small,
.hot-lead > strong {
    display: block;
    font-size: 7px;
}

.hot-lead > small {
    color: #8795a7;
}

/* Integrations */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.integration-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 155px;
    padding: 20px 12px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
}

.integration-card > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    color: var(--blue-600);
    background: #edf3ff;
    border-radius: 14px;
    place-items: center;
    font-size: 9px;
    font-weight: 900;
}

.integration-card b {
    font-size: 12px;
}

.integration-card small {
    margin-top: 4px;
    color: var(--slate-500);
    font-size: 8px;
}

.integration-card.active {
    border-color: #89adff;
    box-shadow: 0 10px 25px rgba(36,107,253,.1);
}

.integration-card.active small {
    color: var(--success-500);
    font-weight: 750;
}

.availability-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--slate-600);
    font-size: 11px;
    text-align: center;
}

.availability-note span {
    display: grid;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--blue-600);
    background: #e6efff;
    border-radius: 50%;
    place-items: center;
    font-weight: 900;
}

/* Plans */
.plans-section {
    background:
        radial-gradient(circle at 8% 25%, rgba(36,107,253,.1), transparent 25%),
        linear-gradient(180deg, #f0f4ff 0%, #e8effb 100%);
}

.plans-section .section-heading strong {
    color: var(--blue-700);
    white-space: nowrap;
}

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

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 470px;
    padding: 36px;
    background: linear-gradient(150deg, rgba(255,255,255,.96), rgba(239,244,255,.92));
    border: 1px solid #cbd9eb;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.plan-card.recommended {
    color: #fff;
    background: linear-gradient(145deg, #091c35, #103258);
    border-color: transparent;
    box-shadow: 0 30px 70px rgba(9,31,58,.24);
    transform: translateY(-10px);
}

.recommended-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 9px;
    color: #fff;
    background: var(--gradient);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.recommended .plan-label {
    color: #7fe0ea;
}

.recommended > p {
    color: #a8b9ce;
}

.plan-card h3 {
    margin-bottom: 10px;
    font-size: 27px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    margin: 23px 0 2px;
    padding: 14px;
    background: #e8f0ff;
    border: 1px solid #c8d9ff;
    border-radius: 13px;
}

.plan-price span {
    width: 100%;
    color: var(--slate-500);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plan-price strong {
    color: var(--blue-700);
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 1;
    letter-spacing: -.05em;
}

.plan-price small {
    color: var(--slate-600);
    font-size: 10px;
    font-weight: 750;
}

.plan-card .check-list {
    margin: 30px 0;
}

.plan-card .btn {
    margin-top: auto;
}

.price-disclaimer {
    max-width: 820px;
    margin: 26px auto 0;
    color: var(--slate-600);
    font-size: 11px;
    text-align: center;
}

/* Contract process */
.process-section {
    padding-top: 0;
    background: #e8effb;
}

.process-panel {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    padding: 70px;
    color: #fff;
    background:
        radial-gradient(circle at 10% 100%, rgba(41,199,216,.15), transparent 30%),
        linear-gradient(135deg, #071426, #0d2b50);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.process-copy h2 {
    font-size: clamp(34px, 3.5vw, 48px);
}

.contract-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.contract-steps li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 130px;
    padding: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
}

.contract-steps li > span {
    display: grid;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    color: #fff;
    background: var(--blue-600);
    border-radius: 9px;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
}

.contract-steps div {
    display: flex;
    flex-direction: column;
}

.contract-steps b {
    font-size: 13px;
}

.contract-steps small {
    margin-top: 5px;
    color: #93a8c1;
    font-size: 10px;
}

/* FAQ */
.faq-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(41,199,216,.08), transparent 24%),
        #eff4fa;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, .55fr) minmax(520px, 1fr);
    align-items: start;
    gap: 90px;
}

.faq-intro {
    position: sticky;
    top: 110px;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    margin-top: 24px;
    color: var(--blue-600);
    font-weight: 750;
    text-decoration: none;
}

.faq-list {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    color: var(--ink-950);
    text-align: left;
    background: transparent;
    border: 0;
    font-weight: 750;
}

.faq-item button i {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    margin-left: 18px;
    color: var(--blue-600);
    background: #edf3ff;
    border-radius: 8px;
    place-items: center;
    font-size: 14px;
    font-style: normal;
}

.faq-answer {
    padding: 0 60px 22px 24px;
}

.faq-answer p {
    margin: 0;
    color: var(--slate-600);
    font-size: 14px;
}

/* Contact */
.contact-section {
    padding-bottom: 80px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(480px, 1fr);
    gap: 70px;
    padding: 70px;
    color: #fff;
    background:
        radial-gradient(circle at 0 0, rgba(96,92,246,.25), transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(41,199,216,.12), transparent 32%),
        #071426;
    border-radius: var(--radius-lg);
}

.contact-copy {
    align-self: center;
}

.contact-details {
    display: grid;
    gap: 14px;
    margin-top: 36px;
}

.contact-details > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-details > div > span {
    display: grid;
    width: 42px;
    height: 42px;
    color: #8de5ec;
    background: rgba(41,199,216,.09);
    border: 1px solid rgba(41,199,216,.16);
    border-radius: 12px;
    place-items: center;
    font-size: 10px;
    font-weight: 850;
}

.contact-details p {
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 1.4;
}

.contact-details small {
    color: #7187a4;
    font-size: 9px;
}

.contact-details b {
    font-size: 12px;
}

.contact-form {
    position: relative;
    padding: 32px;
    color: var(--ink-950);
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 35px 70px rgba(0,0,0,.25);
}

.form-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 6px 9px;
    color: var(--blue-600);
    background: #eaf2ff;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    margin-bottom: 15px;
}

.field label {
    display: block;
    margin-bottom: 6px;
    color: #3f5066;
    font-size: 10px;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--ink-950);
    background: #f8fafc;
    border: 1px solid #d9e3ed;
    border-radius: 10px;
    outline: 0;
    transition: border .2s ease, box-shadow .2s ease;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: #fff;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(36,107,253,.12);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--danger-500);
}

.field-error {
    display: block;
    min-height: 13px;
    margin-top: 3px;
    color: var(--danger-500);
    font-size: 9px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 2px 0 18px;
    color: var(--slate-600);
    font-size: 10px;
}

.consent input {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    accent-color: var(--blue-600);
}

.consent a {
    color: var(--blue-600);
}

.form-note {
    margin: 10px 0 0;
    color: #8a98aa;
    font-size: 9px;
    text-align: center;
}

.form-status {
    min-height: 20px;
    margin-top: 8px;
    color: var(--success-500);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.form-status.error {
    color: #d05a65;
}

.form-status.success {
    color: var(--success-500);
}

/* Footer */
.site-footer {
    padding-top: 70px;
    color: #9bacc1;
    background: #050e1b;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 55px;
}

.brand-light {
    color: #fff;
}

.footer-brand p {
    max-width: 350px;
    margin: 20px 0;
    font-size: 13px;
}

.demo-contact-label {
    display: inline-block;
    padding: 6px 9px;
    color: #8297b1;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.footer-column a,
.footer-column span {
    color: #8295ae;
    font-size: 12px;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

/* Chat widget */
.chat-launcher {
    position: fixed;
    z-index: 1100;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 8px 15px 8px 8px;
    color: #fff;
    background: #0b203c;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(5,17,34,.34);
}

.chat-launcher img {
    border-radius: 10px;
}

.launcher-pulse {
    position: absolute;
    top: 6px;
    left: 40px;
    width: 9px;
    height: 9px;
    background: #4fda9f;
    border: 2px solid #0b203c;
    border-radius: 50%;
}

.launcher-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.25;
}

.launcher-text b {
    font-size: 11px;
}

.launcher-text small {
    color: #8fa3bb;
    font-size: 8px;
}

.chat-widget {
    position: fixed;
    z-index: 1300;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    width: min(390px, calc(100vw - 30px));
    height: min(680px, calc(100vh - 40px));
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce5ef;
    border-radius: 24px;
    box-shadow: 0 30px 100px rgba(0,0,0,.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(.96);
    transform-origin: bottom right;
    transition: opacity .25s ease, transform .25s ease;
}

.chat-widget.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.widget-head {
    min-height: 70px;
    padding: 15px;
}

.widget-head .icon-button {
    font-size: 22px;
}

.widget-head .widget-reset {
    display: grid;
    width: 32px;
    height: 32px;
    margin-left: auto;
    padding: 0;
    color: #b8cae0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 9px;
    cursor: pointer;
    font-size: 17px;
    place-items: center;
}

.widget-head .widget-reset + .icon-button {
    margin-left: 4px;
}

.widget-notice {
    padding: 8px 14px;
    color: #6a7b90;
    text-align: center;
    background: #eff5ff;
    border-bottom: 1px solid #dbe7f7;
    font-size: 8px;
    font-weight: 700;
}

.widget-notice.connected {
    color: #087c59;
    background: #e9f8f2;
    border-color: #c9ebdd;
}

.widget-notice.error {
    color: #9c3440;
    background: #fff0f2;
    border-color: #f3cbd0;
}

.widget-messages {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 18px;
    overflow-y: auto;
    background: #f4f7fa;
}

.widget-message {
    max-width: 84%;
    padding: 11px 13px;
    color: var(--ink-950);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 14px rgba(20,42,71,.07);
    font-size: 12px;
    line-height: 1.5;
}

.widget-message.bot {
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.widget-message.user {
    align-self: flex-end;
    background: #dbe9ff;
    border-bottom-right-radius: 4px;
}

.widget-message.typing-message {
    display: flex;
    gap: 4px;
    width: 48px;
}

.typing-message i {
    width: 5px;
    height: 5px;
    background: #8c9aac;
    border-radius: 50%;
    animation: typing 1s infinite;
}

.typing-message i:nth-child(2) { animation-delay: .15s; }
.typing-message i:nth-child(3) { animation-delay: .3s; }

.quick-replies {
    display: flex;
    gap: 7px;
    padding: 10px 12px;
    overflow-x: auto;
    background: #fff;
    border-top: 1px solid #e3e9f0;
    scrollbar-width: thin;
}

.quick-replies[hidden] {
    display: none;
}

.widget-consent {
    padding: 11px 16px;
    background: #f8faff;
    border-top: 1px solid var(--line);
}

.widget-consent[hidden] {
    display: none;
}

.widget-consent label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--slate-600);
    font-size: 10px;
    line-height: 1.45;
}

.widget-consent input {
    width: 15px;
    height: 15px;
    margin: 1px 0 0;
    accent-color: var(--blue-600);
}

.widget-consent a {
    color: var(--blue-600);
    font-weight: 750;
}

.quick-replies button {
    flex: 0 0 auto;
    padding: 7px 10px;
    color: var(--blue-600);
    background: #fff;
    border: 1px solid #b7cdff;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
}

.widget-form {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid #e2e9f0;
}

.widget-form textarea {
    flex: 1;
    max-height: 90px;
    padding: 11px;
    resize: none;
    background: #f4f7fa;
    border: 1px solid #dce5ee;
    border-radius: 12px;
    outline: 0;
    font-size: 12px;
}

.widget-form textarea:focus {
    border-color: var(--blue-600);
}

.widget-form button {
    display: grid;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--gradient);
    border: 0;
    border-radius: 12px;
    place-items: center;
}

.widget-form button:disabled,
.widget-form textarea:disabled,
.quick-replies button:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.widget-privacy {
    margin: 0;
    padding: 7px 12px 10px;
    color: #8896a7;
    background: #fff;
    font-size: 8px;
    text-align: center;
}

.widget-privacy a {
    color: var(--blue-600);
}

.widget-message.system {
    max-width: 95%;
    margin-inline: auto;
    color: #8f3943;
    text-align: center;
    background: #fff0f2;
    border: 1px solid #f3cbd0;
}

.form-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.chat-backdrop {
    position: fixed;
    z-index: 1200;
    inset: 0;
    background: rgba(3,10,20,.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.chat-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

.problem-cards [data-reveal]:nth-child(2),
.capability-grid [data-reveal]:nth-child(2n),
.steps-grid [data-reveal]:nth-child(2) { transition-delay: .08s; }

.problem-cards [data-reveal]:nth-child(3),
.capability-grid [data-reveal]:nth-child(3n),
.steps-grid [data-reveal]:nth-child(3) { transition-delay: .16s; }

.steps-grid [data-reveal]:nth-child(4) { transition-delay: .24s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: .5; }
    30% { transform: translateY(-4px); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(85,223,170,.12); }
    50% { box-shadow: 0 0 0 8px rgba(85,223,170,.03); }
}

.pulse-dot,
.launcher-pulse {
    animation: pulse 2.1s infinite;
}

/* Legal pages */
.legal-page {
    min-height: 100vh;
    background: var(--mist-50);
}

.legal-header {
    color: #fff;
    background: var(--ink-950);
}

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

.legal-header .btn {
    margin-left: auto;
}

.legal-content {
    width: min(calc(100% - 40px), 820px);
    margin: 0 auto;
    padding: 80px 0 120px;
}

.legal-content h1 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.legal-content .legal-meta {
    margin-bottom: 42px;
    color: var(--slate-500);
    font-size: 12px;
}

.legal-content h2 {
    margin: 36px 0 10px;
    font-family: var(--font-display);
    font-size: 23px;
}

.legal-content p,
.legal-content li {
    color: var(--slate-600);
}

.legal-demo-alert {
    padding: 16px 18px;
    color: #6e4b16;
    background: #fff5df;
    border: 1px solid #f1d69f;
    border-radius: 12px;
}

/* Phase 6.1 visual interactions */
body.modal-open {
    overflow: hidden;
}

.brand img,
.demo-logo-ring img,
.dash-brand img,
.chat-launcher img {
    transform-origin: 50% 58%;
    animation: chatboot-float 4.8s ease-in-out infinite;
}

.brand:hover img,
.chat-launcher:hover img {
    animation: chatboot-greet .72s ease both;
}

@keyframes chatboot-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    48% { transform: translateY(-3px) rotate(-2deg); }
    58% { transform: translateY(-3px) rotate(2deg); }
}

@keyframes chatboot-greet {
    0%, 100% { transform: rotate(0) scale(1); }
    30% { transform: rotate(-8deg) scale(1.05); }
    62% { transform: rotate(7deg) scale(1.05); }
}

.hero-channel-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
    max-width: 650px;
    margin-top: 12px;
}

.hero-channel-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    min-height: 62px;
    padding: 9px 5px;
    color: #aebed3;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 13px;
    animation: channel-wave 4s ease-in-out var(--channel-delay) infinite;
}

.hero-channel-logo img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,.2));
}

.hero-channel-logo:last-child img {
    padding: 3px;
    background: #fff;
    border-radius: 6px;
}

.hero-channel-logo b {
    font-size: 8px;
    font-weight: 700;
}

@keyframes channel-wave {
    0%, 76%, 100% { transform: translateY(0); border-color: rgba(255,255,255,.09); }
    84% { transform: translateY(-5px); border-color: rgba(111,224,233,.35); }
    92% { transform: translateY(0); }
}

.hero-proof {
    margin-top: 28px;
}

.problem-card {
    display: flex;
    flex-direction: column;
    min-height: 410px;
}

.problem-phone-trigger {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 190px;
    padding: 17px 16px;
    margin: 18px 0 22px;
    color: var(--ink-950);
    background:
        radial-gradient(circle at 20% 20%, rgba(36,107,253,.12), transparent 34%),
        linear-gradient(145deg, #edf4ff, #e6eefb);
    border: 1px solid #cfdeef;
    border-radius: 18px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.problem-phone-trigger:hover,
.problem-phone-trigger:focus-visible {
    border-color: #89adff;
    box-shadow: 0 15px 32px rgba(36,107,253,.13);
    transform: translateY(-3px);
}

.problem-phone-trigger > b {
    max-width: 72px;
    color: var(--blue-600);
    font-size: 10px;
    line-height: 1.35;
    text-align: left;
}

.problem-phone-trigger > b span {
    display: inline-block;
    transition: transform .2s ease;
}

.problem-phone-trigger:hover > b span {
    transform: translate(2px, -2px);
}

.mini-phone {
    position: relative;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    width: 118px;
    height: 158px;
    padding: 20px 10px 11px;
    color: #263952;
    background: #fff;
    border: 4px solid #102640;
    border-radius: 22px;
    box-shadow: 0 15px 25px rgba(14,40,69,.17);
}

.mini-phone-speaker {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 28px;
    height: 4px;
    background: #1c324d;
    border-radius: 999px;
    transform: translateX(-50%);
}

.mini-chat {
    padding: 7px 8px;
    background: #e7efff;
    border-radius: 9px 9px 9px 3px;
    font-size: 7px;
    line-height: 1.25;
    text-align: left;
}

.mini-chat.short {
    width: 60%;
}

.mini-chat.status {
    align-self: flex-end;
    color: #9a6324;
    background: #fff2df;
    border-radius: 9px 9px 3px 9px;
}

.mini-phone > em {
    margin-top: auto;
    color: #d95151;
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
    text-align: center;
}

.mini-calendar {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 7px;
    padding: 8px;
    background: #eef4ff;
    border: 1px solid #d7e3f2;
    border-radius: 9px;
}

.mini-calendar i {
    display: grid;
    width: 30px;
    height: 30px;
    color: #fff;
    background: var(--blue-600);
    border-radius: 8px;
    place-items: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
}

.mini-calendar b {
    font-size: 7px;
}

.step-card {
    display: flex;
    flex-direction: column;
    min-height: 470px;
}

.card-visual-button,
.capability-example {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 40px;
    padding: 9px 11px;
    margin-top: auto;
    color: var(--blue-600);
    background: #f2f6ff;
    border: 1px solid #d9e5f5;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 800;
    text-align: left;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.card-visual-button:hover,
.card-visual-button:focus-visible {
    background: #eaf1ff;
    border-color: #9ebcff;
    transform: translateY(-2px);
}

.capability-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
}

.capability-card .cap-icon {
    margin-bottom: 24px;
}

.capability-example {
    color: #b9ceff;
    background: rgba(88,126,255,.1);
    border-color: rgba(134,161,255,.18);
}

.capability-example:hover,
.capability-example:focus-visible {
    color: #fff;
    background: rgba(88,126,255,.2);
    border-color: rgba(111,224,233,.4);
}

.featured .capability-example {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
}

.use-case-tab {
    grid-template-columns: 48px 1fr;
}

.use-case-tab > .case-tab-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: 1 / 3;
    flex-direction: column;
    gap: 2px;
    width: 42px;
    height: 42px;
    color: var(--blue-600);
    background: #eef4ff;
    border: 1px solid #dbe6f5;
    border-radius: 12px;
}

.use-case-tab .case-tab-mark i {
    font-size: 15px;
    font-style: normal;
    line-height: 1;
}

.use-case-tab .case-tab-mark em {
    color: #8396ae;
    font-size: 7px;
    font-style: normal;
    font-weight: 850;
}

.use-case-tab.active .case-tab-mark {
    color: #fff;
    background: var(--gradient);
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(36,107,253,.22);
}

.use-case-tab.active .case-tab-mark em {
    color: rgba(255,255,255,.78);
}

.dashboard-carousel {
    min-width: 0;
}

.dashboard-slides {
    min-width: 0;
}

.dashboard-slide {
    min-height: 364px;
}

.dashboard-slide[hidden] {
    display: none;
}

.dashboard-slide.active {
    animation: dashboard-in .35s ease both;
}

@keyframes dashboard-in {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: none; }
}

.dashboard-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.dashboard-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--ink-950);
    background: #fff;
    border: 1px solid #d8e3ef;
    border-radius: 11px;
    box-shadow: 0 8px 20px rgba(14,40,69,.08);
    place-items: center;
    font-size: 15px;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.dashboard-arrow:hover,
.dashboard-arrow:focus-visible {
    color: var(--blue-600);
    border-color: #9ab9ff;
    transform: translateY(-2px);
}

.dashboard-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-inline: 4px;
}

.dashboard-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    background: #bdcbe0;
    border: 0;
    border-radius: 999px;
    transition: width .2s ease, background .2s ease;
}

.dashboard-dots button.active {
    width: 26px;
    background: var(--gradient);
}

.dashboard-counter {
    min-width: 45px;
    color: #7c8da2;
    font-size: 9px;
}

.dashboard-counter b {
    color: var(--blue-600);
    font-size: 12px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 10px;
    margin-top: 20px;
}

.dash-line-card {
    min-width: 0;
}

.line-plot {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    height: 118px;
    padding: 14px 7px 0;
    background-image: linear-gradient(#edf1f6 1px, transparent 1px);
    background-size: 100% 25%;
    border-bottom: 1px solid #dce5ee;
}

.line-plot span {
    position: relative;
    flex: 1;
    height: calc(100% - var(--point));
    min-height: 7px;
    background: linear-gradient(to top, rgba(36,107,253,.12), rgba(36,107,253,.52));
    border-radius: 5px 5px 0 0;
}

.line-plot span::before {
    position: absolute;
    top: -3px;
    left: 50%;
    width: 7px;
    height: 7px;
    background: var(--blue-600);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 7px rgba(36,107,253,.35);
    content: "";
    transform: translateX(-50%);
}

.line-labels {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 6px 7px 0;
    color: #8796a9;
    text-align: center;
}

.line-labels small {
    font-size: 6px;
}

.donut-wrap {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 19px;
}

.donut-chart {
    display: grid;
    flex: 0 0 auto;
    width: 92px;
    height: 92px;
    background: conic-gradient(#25d366 0 46%, #246bfd 46% 80%, #e4405f 80%);
    border-radius: 50%;
    place-content: center;
}

.donut-chart::before {
    grid-area: 1 / 1;
    width: 59px;
    height: 59px;
    background: #fff;
    border-radius: 50%;
    content: "";
}

.donut-chart strong,
.donut-chart small {
    position: relative;
    z-index: 1;
    grid-area: 1 / 1;
    align-self: center;
    justify-self: center;
}

.donut-chart strong {
    margin-top: -8px;
    font-size: 14px;
}

.donut-chart small {
    margin-top: 13px;
    color: #8796a9;
    font-size: 6px;
}

.donut-wrap ul {
    display: grid;
    flex: 1;
    gap: 7px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.donut-wrap li {
    display: grid;
    grid-template-columns: 7px 1fr auto;
    align-items: center;
    gap: 4px;
    color: #6b7b90;
    font-size: 6px;
}

.donut-wrap li i {
    width: 6px;
    height: 6px;
    background: var(--blue-600);
    border-radius: 2px;
}

.donut-wrap li i.wa { background: #25d366; }
.donut-wrap li i.ig { background: #e4405f; }
.donut-wrap li b { color: var(--ink-950); font-size: 7px; }

.dash-question-list {
    padding: 13px 15px;
    margin-top: 10px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 11px;
}

.dash-question-list p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0 5px;
    margin: 0;
    color: #6d7d91;
    border-bottom: 1px solid #edf1f5;
    font-size: 7px;
}

.dash-question-list p:last-child {
    border-bottom: 0;
}

.dash-question-list p b {
    color: var(--blue-600);
}

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

.pipeline-metrics > div {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 10px;
}

.pipeline-metrics small {
    color: #8090a4;
    font-size: 7px;
}

.pipeline-metrics strong {
    font-size: 18px;
}

.pipeline-metrics span {
    color: var(--success-500);
    font-size: 7px;
}

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

.pipeline-board > div {
    min-width: 0;
    padding: 10px;
    background: #edf2f8;
    border-radius: 10px;
}

.pipeline-board > div > b {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #50647e;
    font-size: 7px;
}

.pipeline-board > div > b span {
    display: grid;
    width: 16px;
    height: 16px;
    color: #fff;
    background: #8092aa;
    border-radius: 50%;
    place-items: center;
    font-size: 6px;
}

.pipeline-board article {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px;
    margin-top: 6px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 8px;
}

.pipeline-board article > i {
    display: grid;
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    color: #fff;
    background: var(--blue-500);
    border-radius: 7px;
    place-items: center;
    font-size: 6px;
    font-style: normal;
}

.pipeline-board article.warm > i { background: #ee9a3c; }
.pipeline-board article.ready > i { background: var(--success-500); }

.pipeline-board article p {
    display: flex;
    min-width: 0;
    flex-direction: column;
    margin: 0;
}

.pipeline-board article strong {
    font-size: 7px;
}

.pipeline-board article small {
    overflow: hidden;
    color: #8493a6;
    font-size: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.integration-card {
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.integration-card:hover {
    border-color: #a9c1f4;
    box-shadow: 0 14px 30px rgba(36,107,253,.1);
    transform: translateY(-4px);
}

.integration-card > .vendor-logo {
    background: #fff;
    border: 1px solid #e1e8f2;
    box-shadow: 0 6px 14px rgba(14,40,69,.07);
}

.integration-card > .vendor-logo img {
    display: block;
    max-width: 34px;
    max-height: 34px;
    object-fit: contain;
}

.integration-card > .vendor-logo.logo-dark {
    background: #0c0c0c;
}

.integration-card > .vendor-logo.logo-dark img {
    filter: brightness(0) invert(1);
}

.integration-card > .vendor-wordmark {
    color: #fff;
    background: linear-gradient(145deg, #00b4d8, #006ce5);
    border-color: transparent;
}

.vendor-wordmark strong {
    font-family: var(--font-display);
    font-size: 25px;
}

.integration-glyph {
    font-size: 13px !important;
}

.trademark-note {
    max-width: 820px;
    margin: 12px auto 0;
    color: #8a99ac;
    font-size: 9px;
    text-align: center;
}

.visual-modal {
    position: fixed;
    z-index: 1300;
    inset: 0;
    display: grid;
    padding: 28px;
    place-items: center;
}

.visual-modal[hidden] {
    display: none;
}

.visual-modal-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(3,13,27,.76);
    border: 0;
    backdrop-filter: blur(10px);
}

.visual-modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: calc(100dvh - 56px);
    padding: 30px;
    overflow: auto;
    background:
        radial-gradient(circle at 90% 5%, rgba(114,92,246,.11), transparent 30%),
        #f7faff;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 26px;
    box-shadow: 0 40px 100px rgba(0,0,0,.35);
    animation: modal-enter .28s ease both;
}

@keyframes modal-enter {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to { opacity: 1; transform: none; }
}

.visual-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.visual-modal-head .kicker {
    margin-bottom: 8px;
}

.visual-modal-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 43px);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.visual-modal-head p:last-child {
    max-width: 690px;
    margin: 12px 0 0;
    color: var(--slate-600);
    font-size: 14px;
}

.visual-modal-close {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    color: var(--ink-950);
    background: #fff;
    border: 1px solid #d9e4f0;
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(14,40,69,.08);
    place-items: center;
    font-size: 24px;
}

.visual-modal-content {
    margin-top: 25px;
}

.visual-modal-note {
    margin: 15px 0 0;
    color: #8292a6;
    font-size: 9px;
    text-align: center;
}

.example-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 34px;
    min-height: 420px;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(36,107,253,.17), transparent 30%),
        linear-gradient(145deg, #eaf1ff, #eef5fb);
    border: 1px solid #cfdeef;
    border-radius: 21px;
}

.example-stage::before {
    position: absolute;
    inset: 0;
    opacity: .42;
    background-image: radial-gradient(#b7c9e1 1px, transparent 1px);
    background-size: 18px 18px;
    content: "";
    mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.example-phone {
    position: relative;
    z-index: 1;
    width: 230px;
    min-height: 365px;
    padding: 14px;
    margin: auto;
    background: #fff;
    border: 8px solid #0c2038;
    border-radius: 35px;
    box-shadow: 0 28px 55px rgba(14,40,69,.25);
}

.example-phone::before {
    display: block;
    width: 58px;
    height: 8px;
    margin: -5px auto 11px;
    background: #0c2038;
    border-radius: 999px;
    content: "";
}

.example-phone-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e9f2;
}

.example-phone-head i {
    display: grid;
    width: 28px;
    height: 28px;
    color: #fff;
    background: var(--gradient);
    border-radius: 9px;
    place-items: center;
    font-size: 8px;
    font-style: normal;
    font-weight: 850;
}

.example-phone-head p {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.example-phone-head strong {
    font-size: 9px;
}

.example-phone-head small {
    color: var(--success-500);
    font-size: 6px;
}

.example-phone-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 17px 0;
}

.example-message {
    max-width: 86%;
    padding: 10px 11px;
    color: #34475f;
    background: #eef2f7;
    border-radius: 11px 11px 11px 3px;
    font-size: 8px;
    line-height: 1.45;
}

.example-message.user {
    align-self: flex-end;
    color: #17325a;
    background: #dce9ff;
    border-radius: 11px 11px 3px 11px;
}

.example-message.system {
    align-self: stretch;
    max-width: none;
    color: #95601f;
    background: #fff3df;
    border: 1px solid #f3dbb0;
    border-radius: 9px;
    font-weight: 750;
    text-align: center;
}

.example-insight {
    position: relative;
    z-index: 1;
    padding: 24px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(205,219,236,.92);
    border-radius: 18px;
    box-shadow: 0 20px 42px rgba(14,40,69,.1);
}

.example-insight > span {
    display: inline-flex;
    padding: 5px 8px;
    color: var(--blue-600);
    background: #eaf1ff;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.example-insight h3 {
    margin: 14px 0 8px;
    font-family: var(--font-display);
    font-size: 23px;
    letter-spacing: -.03em;
}

.example-insight p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.example-insight ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.example-insight li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #50657e;
    font-size: 11px;
}

.example-insight li::before {
    display: grid;
    width: 17px;
    height: 17px;
    color: #fff;
    background: var(--success-500);
    border-radius: 50%;
    content: "✓";
    place-items: center;
    font-size: 8px;
}

.example-dashboard {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    min-height: 360px;
    padding: 20px;
    background: #f7f9fc;
    border: 1px solid #d7e1ed;
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(14,40,69,.15);
}

.example-dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid #dfe7f0;
}

.example-dashboard-head div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.example-dashboard-head img {
    width: 28px;
    height: 28px;
}

.example-dashboard-head b {
    font-size: 11px;
}

.example-dashboard-head span {
    padding: 5px 8px;
    color: var(--success-500);
    background: #e7f7f0;
    border-radius: 999px;
    font-size: 7px;
    font-weight: 800;
}

.example-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.example-kpis div {
    display: flex;
    flex-direction: column;
    padding: 13px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 11px;
}

.example-kpis small {
    color: #8190a3;
    font-size: 7px;
}

.example-kpis strong {
    font-size: 20px;
}

.example-kpis span {
    color: var(--success-500);
    font-size: 7px;
}

.example-dashboard-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 10px;
    margin-top: 10px;
}

.example-chart-card,
.example-list-card {
    padding: 14px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 11px;
}

.example-chart-card header,
.example-list-card header {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
}

.example-chart-card header span,
.example-list-card header span {
    color: #8796a9;
    font-size: 7px;
}

.example-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 130px;
    padding-top: 20px;
    border-bottom: 1px solid #dce5ee;
}

.example-bars i {
    flex: 1;
    min-height: 10px;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
}

.example-list-card p {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    margin: 0;
    color: #65778d;
    border-bottom: 1px solid #edf1f5;
    font-size: 8px;
}

.example-list-card p b {
    color: var(--blue-600);
}

.example-workflow {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.example-workflow article {
    position: relative;
    min-height: 205px;
    padding: 20px;
    background: rgba(255,255,255,.9);
    border: 1px solid #d6e2f0;
    border-radius: 16px;
}

.example-workflow article::after {
    position: absolute;
    top: 48px;
    right: -18px;
    z-index: 2;
    color: #7895c5;
    content: "→";
    font-size: 17px;
}

.example-workflow article:last-child::after {
    display: none;
}

.example-workflow article > span {
    display: grid;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--gradient);
    border-radius: 12px;
    place-items: center;
    font-size: 10px;
    font-weight: 850;
}

.example-workflow h3 {
    margin: 36px 0 7px;
    font-family: var(--font-display);
    font-size: 16px;
}

.example-workflow p {
    margin: 0;
    color: #677a91;
    font-size: 10px;
}

/* Responsive */
@media (max-width: 1120px) {
    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .header-actions .btn-ghost {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1.05fr .8fr;
        gap: 30px;
    }

    .phone-shell {
        width: 330px;
    }

    .signal-card-top {
        right: -22px;
    }

    .signal-card-bottom {
        left: -25px;
    }

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

    .flow-map {
        grid-template-columns: repeat(6, 1fr);
    }

    .flow-arrow {
        display: none;
    }

    .dashboard-layout {
        grid-template-columns: .55fr 1.45fr;
        gap: 35px;
    }

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

@media (max-width: 960px) {
    :root {
        --header-height: 70px;
    }

    .section {
        padding: 90px 0;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 2px;
        padding: 13px;
        background: rgba(7,20,38,.98);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 17px;
        box-shadow: 0 24px 60px rgba(0,0,0,.3);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 11px 12px;
        border-radius: 8px;
    }

    .main-nav a:hover {
        background: rgba(255,255,255,.06);
    }

    .main-nav a::after {
        display: none;
    }

    .hero {
        padding-top: 135px;
    }

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

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

    .hero-visual {
        min-height: 700px;
    }

    .signal-card-top {
        right: calc(50% - 260px);
    }

    .signal-card-bottom {
        left: calc(50% - 270px);
    }

    .trust-strip {
        margin-top: 30px;
    }

    .trust-strip .container {
        flex-wrap: wrap;
        gap: 12px 20px;
        padding: 20px 0;
    }

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

    .step-card {
        min-height: 385px;
    }

    .memory-layout,
    .demo-layout,
    .dashboard-layout,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .memory-copy,
    .demo-copy,
    .dashboard-copy {
        max-width: 700px;
    }

    .use-case-layout {
        grid-template-columns: .8fr 1.2fr;
    }

    .dashboard-window {
        max-width: 780px;
    }

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

    .plan-card.recommended {
        transform: none;
    }

    .plans-grid .plan-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .process-panel {
        grid-template-columns: 1fr;
        padding: 50px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-intro {
        position: static;
        max-width: 680px;
    }

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

    .footer-column:last-child {
        grid-column: 2;
    }
}

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

    .hero-channel-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-channel-logo {
        min-height: 58px;
    }

    .section {
        padding: 72px 0;
    }

    .site-header,
    .site-header.scrolled {
        height: 66px;
    }

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

    .header-actions {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 112px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 60px);
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-proof {
        justify-content: space-between;
    }

    .hero-proof div {
        min-width: 0;
        padding: 0 12px;
    }

    .hero-proof strong {
        font-size: 17px;
    }

    .hero-proof span {
        font-size: 8px;
    }

    .hero-visual {
        min-height: 630px;
    }

    .phone-shell {
        width: min(330px, calc(100vw - 48px));
        transform: none;
    }

    .phone-screen {
        height: 600px;
    }

    .phone-chat {
        min-height: 456px;
    }

    .signal-card {
        min-width: 185px;
        padding: 10px;
    }

    .signal-card-top {
        top: 30px;
        right: -5px;
    }

    .signal-card-bottom {
        bottom: 15px;
        left: -5px;
    }

    .trust-strip span {
        width: 100%;
        text-align: center;
    }

    .trust-strip i {
        display: none;
    }

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

    .section-heading h2,
    .memory-copy h2,
    .dashboard-copy h2,
    .demo-copy h2,
    .process-copy h2,
    .faq-intro h2,
    .contact-copy h2 {
        font-size: 38px;
    }

    .section-heading > p:last-child,
    .split-heading > p,
    .memory-copy > p,
    .dashboard-copy > p,
    .demo-copy > p,
    .process-copy > p,
    .faq-intro > p,
    .contact-copy > p {
        font-size: 16px;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .problem-cards,
    .capability-grid,
    .steps-grid,
    .plans-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        min-height: 390px;
    }

    .problem-phone-trigger {
        min-height: 180px;
    }

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

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

    .comparison-side {
        padding: 32px 25px;
    }

    .comparison-center {
        height: 0;
        background: linear-gradient(to bottom, #eaf1fb 50%, #0d2543 50%);
    }

    .comparison-center span {
        transform: rotate(90deg);
    }

    .step-card {
        min-height: 430px;
    }

    .memory-layout {
        gap: 45px;
    }

    .timeline-chat {
        padding: 22px 15px;
    }

    .capability-card {
        min-height: 245px;
    }

    .flow-map {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }

    .flow-line {
        display: none;
    }

    .flow-node {
        min-height: 115px;
    }

    .flow-result {
        align-items: flex-start;
        border-radius: 14px;
        text-align: left;
    }

    .use-case-layout {
        grid-template-columns: 1fr;
    }

    .use-case-selector {
        display: flex;
        padding-bottom: 6px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .use-case-tab {
        flex: 0 0 210px;
        scroll-snap-align: start;
    }

    .case-preview {
        min-height: 450px;
        padding: 20px;
    }

    .demo-layout {
        gap: 40px;
    }

    .demo-stage {
        min-height: 440px;
    }

    .demo-bubble {
        width: 200px;
    }

    .bubble-one {
        top: 15px;
    }

    .bubble-two {
        bottom: 15px;
    }

    .dashboard-window {
        margin-inline: -7px;
        border-radius: 14px;
    }

    .dashboard-carousel-controls {
        justify-content: center;
    }

    .dashboard-slide {
        min-height: 520px;
    }

    .analytics-grid,
    .example-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .pipeline-board {
        grid-template-columns: 1fr;
    }

    .pipeline-board article:nth-of-type(2) {
        display: none;
    }

    .dash-side {
        display: none;
    }

    .dash-body {
        display: block;
        min-height: 420px;
    }

    .dash-content {
        padding: 14px;
    }

    .dash-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .dash-lower {
        grid-template-columns: 1fr;
    }

    .hot-lead {
        display: none;
    }

    .visual-modal {
        padding: 8px;
    }

    .visual-modal-panel {
        max-height: calc(100dvh - 16px);
        padding: 20px 16px;
        border-radius: 20px;
    }

    .visual-modal-head {
        gap: 12px;
    }

    .visual-modal-head h2 {
        font-size: 30px;
    }

    .visual-modal-close {
        width: 38px;
        height: 38px;
    }

    .example-stage {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 0;
        padding: 18px;
    }

    .example-phone {
        width: 220px;
    }

    .example-insight {
        padding: 19px;
    }

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

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

    .example-workflow article {
        min-height: 170px;
    }

    .example-workflow article::after {
        display: none;
    }

    .plans-grid .plan-card:last-child {
        grid-column: auto;
    }

    .plan-card {
        min-height: 420px;
        padding: 28px;
    }

    .hero-price-note {
        width: 100%;
    }

    .process-panel {
        padding: 35px 22px;
    }

    .contract-steps {
        grid-template-columns: 1fr;
    }

    .contract-steps li {
        min-height: auto;
    }

    .faq-item button {
        padding: 19px 16px;
        font-size: 13px;
    }

    .faq-answer {
        padding: 0 45px 18px 16px;
    }

    .contact-panel {
        gap: 40px;
        padding: 40px 20px 20px;
        border-radius: 22px;
    }

    .contact-form {
        padding: 22px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .chat-launcher {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
        min-height: 0;
        padding: 8px;
        border-radius: 17px;
    }

    .launcher-text {
        display: none;
    }

    .launcher-pulse {
        top: 4px;
        left: 39px;
    }

    .chat-widget {
        right: 8px;
        bottom: 8px;
        width: calc(100vw - 16px);
        height: min(720px, calc(100dvh - 16px));
        border-radius: 20px;
    }
}

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

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

    [data-reveal],
    .sequence-item {
        opacity: 1 !important;
        transform: none !important;
    }
}
