/* ================================================================
   FlowAi — prom8-inspired dark theme with dark/light/auto switcher
   ================================================================ */

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

:root {
    --r:       24px;
    --r-sm:    16px;
    --r-xs:    10px;
    --r-pill:  999px;
    --gutter:  clamp(16px, 4vw, 80px);
    --section-py: clamp(64px, 10vw, 160px);
    --wa:      #25D366;
    --tg:      #2AABEE;
    --ease:    cubic-bezier(.4,0,.2,1);
}

/* DARK (default) ---------------------------------------------- */
:root,
:root[data-theme="dark"] {
    --bg:         #0A0A0A;
    --bg-alt:     #111111;
    --bg-card:    #161616;
    --bg-card-h:  #1C1C1C;
    --bg-lift:    #1F1F1F;
    --border:     rgba(255,255,255,0.08);
    --border-h:   rgba(195,255,54,0.45);
    --text:       #F5F5F5;
    --text-mute:  #8A8A8A;
    --text-dim:   #5A5A5A;
    --accent:     #C3FF36;
    --accent-2:   #9D6CFF;
    --accent-ink: #0A0A0A;
    --donut-1:    #C3FF36;   /* WhatsApp — bright lime */
    --donut-2:    #8BA843;   /* Telegram — olive */
    --donut-3:    #9D6CFF;   /* Voice — bright purple */
    --donut-4:    #8B77B8;   /* RAG — muted purple */
    --donut-5:    #6E6E6E;   /* Web — neutral gray */
    --shadow:     0 20px 60px rgba(0,0,0,.5);
    color-scheme: dark;
}

/* LIGHT ------------------------------------------------------- */
:root[data-theme="light"] {
    --bg:         #F7F7F5;
    --bg-alt:     #EEEEEA;
    --bg-card:    #FFFFFF;
    --bg-card-h:  #F2F2EE;
    --bg-lift:    #E8E8E3;
    --border:     rgba(0,0,0,0.08);
    --border-h:   rgba(0,0,0,0.3);
    --text:       #0A0A0A;
    --text-mute:  #555555;
    --text-dim:   #888888;
    --accent:     #5BD100;
    --accent-2:   #6B3DDB;
    --accent-ink: #FFFFFF;
    --donut-1:    #86D71F;   /* WhatsApp — bright lime */
    --donut-2:    #6B8E23;   /* Telegram — darker olive */
    --donut-3:    #8C6FE3;   /* Voice — bright purple */
    --donut-4:    #B0A3D1;   /* RAG — muted purple */
    --donut-5:    #B8B8B5;   /* Web — neutral gray */
    --shadow:     0 20px 60px rgba(0,0,0,.08);
    color-scheme: light;
}

/* AUTO is resolved to dark/light by JS based on Astana time */

/* BASE -------------------------------------------------------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color .3s var(--ease), color .3s var(--ease);
}

h1, h2, h3, h4, h5 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--text);
}
h1 { font-size: clamp(40px, 5.5vw, 88px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 64px); font-weight: 700; }
h3 { font-size: clamp(20px, 1.6vw, 28px); }
h4 { font-size: 18px; font-weight: 700; }
p  { color: var(--text-mute); }
a  { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent); }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; }

/* LAYOUT ----------------------------------------------------- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
section { position: relative; padding: var(--section-py) 0; }
.s-alt  { background: var(--bg-alt); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-mute);
    margin-bottom: 16px;
}
.eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.section-title {
    font-size: clamp(32px, 4.5vw, 72px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 32px;
}
.section-title .accent { color: var(--accent); }
.section-sub {
    font-size: clamp(16px, 1.2vw, 20px);
    color: var(--text-mute);
    max-width: 720px;
    margin-bottom: 64px;
}

/* BUTTONS ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--r-pill);
    transition: transform .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
    white-space: nowrap;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 20px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-primary {
    background: var(--accent);
    color: var(--accent-ink);
}
.btn-primary:hover { background: var(--accent); filter: brightness(1.08); color: var(--accent-ink); }

.btn-ghost {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-h); color: var(--text); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa); color: #fff; filter: brightness(1.1); }
.btn-tg { background: var(--tg); color: #fff; }
.btn-tg:hover { background: var(--tg); color: #fff; filter: brightness(1.1); }

.nav-close { display: none; }

/* HEADER ----------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 85%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background-color .3s var(--ease);
}
.header.scrolled { background: color-mix(in srgb, var(--bg) 95%, transparent); }
.hd-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--text);
}
.logo-mark {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 16px;
}
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-self: center;
    flex-wrap: nowrap;
}
.nav > a,
.nav .dropdown-toggle {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    padding: 10px 14px;
    border-radius: var(--r-pill);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background-color .2s var(--ease), color .2s var(--ease);
}
.nav > a:hover,
.nav .dropdown-toggle:hover {
    color: var(--accent);
    background: var(--bg-card);
}
.nav .dropdown-toggle::after {
    content: "";
    width: 8px; height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    opacity: .7;
    transition: transform .2s var(--ease);
}
.dropdown:hover .dropdown-toggle::after { transform: rotate(-135deg) translate(-2px, -2px); }
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    box-shadow: var(--shadow);
    z-index: 60;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--r-xs);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.dropdown-menu a:hover { background: var(--bg-card-h); color: var(--accent); }

.hd-spacer { flex: 1; }

.hd-btns { display: flex; align-items: center; gap: 8px; }

.icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--border-h); color: var(--accent); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn.wa { background: var(--wa); border-color: var(--wa); color: #fff; }
.icon-btn.wa:hover { background: var(--wa); color: #fff; filter: brightness(1.1); }
.icon-btn.tg { background: var(--tg); border-color: var(--tg); color: #fff; }
.icon-btn.tg:hover { background: var(--tg); color: #fff; filter: brightness(1.1); }

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--r-pill);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
    white-space: nowrap;
}
.btn-call:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-call svg { width: 14px; height: 14px; }

.theme-toggle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    display: grid;
    place-items: center;
    position: relative;
    transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
    cursor: pointer;
}
.theme-toggle:hover { border-color: var(--accent); transform: translateY(-2px); }
.theme-toggle svg { width: 20px; height: 20px; transition: opacity .2s var(--ease); }
.theme-toggle .i-sun, .theme-toggle .i-moon, .theme-toggle .i-auto { position: absolute; opacity: 0; }
.theme-toggle[data-mode="light"] .i-sun  { opacity: 1; color: var(--accent); }
.theme-toggle[data-mode="dark"]  .i-moon { opacity: 1; color: var(--accent); }
.theme-toggle[data-mode="auto"][data-resolved="light"] .i-auto { opacity: 1; color: var(--accent); }
.theme-toggle[data-mode="auto"][data-resolved="dark"]  .i-auto { opacity: 1; color: var(--accent); }
.theme-toggle .theme-label { display: none; }

.burger {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--border);
}
.burger span {
    width: 16px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO ------------------------------------------------------- */
.hero {
    position: relative;
    padding: clamp(32px, 5vw, 72px) 0 clamp(48px, 6vw, 96px);
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, #1f1f1f 0%, #050505 100%);
}
:root[data-theme="light"] .hero {
    background: radial-gradient(ellipse at bottom, #EEEEEA 0%, #F7F7F5 100%);
}
.hero > .container { position: relative; z-index: 3; }

/* Starfield wrapper — receives mouse-parallax translate */
.stars-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.star-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2000px;
    animation: starScroll var(--dur, 50s) linear infinite;
}
.star-layer .dot { position: absolute; width: var(--sz, 1px); height: var(--sz, 1px); border-radius: 50%; }
.star-layer .dot.second { top: 2000px; }
@keyframes starScroll {
    from { transform: translateY(0); }
    to   { transform: translateY(-2000px); }
}

/* Soft top-right bloom + bottom fade that blends hero into the next section */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 62%, var(--bg) 100%),
        radial-gradient(circle 800px at 100% 200px, var(--hero-bloom), transparent 65%);
    z-index: 1;
    pointer-events: none;
}
:root {
    --hero-bloom: rgba(157, 108, 255, 0.22);
}
:root[data-theme="light"] {
    --hero-bloom: #d5c5ff;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.hero h1 { margin: 16px 0 24px; }
.hero h1 .accent { color: var(--accent); }
.hero-sub {
    font-size: clamp(16px, 1.2vw, 20px);
    color: var(--text-mute);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.55;
}
.hero-typing {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    border-right: 2px solid var(--accent);
    padding-right: 4px;
    min-width: 120px;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { border-color: transparent; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: clamp(24px, 3vw, 56px);
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.hero-meta-item .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-mute);
    margin-bottom: 6px;
}
.hero-meta-item .value {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 700;
    color: var(--text);
}
.hero-meta-item .value .accent { color: var(--accent); font-style: italic; font-weight: 800; }

.hero-chart {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-top: -72px;
    aspect-ratio: 1.1 / 1;
}
.hero-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.hero-chart .legend {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}
.hero-chart .legend-inner { text-align: center; }
.hero-chart .legend-num {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(48px, 6.5vw, 88px);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
}
.hero-chart .legend-label {
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-top: 10px;
    max-width: 220px;
}
.hero-chart .legend-label .accent { color: var(--accent); display: block; font-size: clamp(15px, 1.4vw, 20px); font-weight: 800; margin-top: 4px; letter-spacing: 0.04em; }

.hero-chart .callout-num {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    fill: var(--text);
}
.hero-chart .callout-line {
    stroke: currentColor;
    stroke-opacity: .35;
    stroke-width: 1;
    fill: none;
}
.hero-chart .callout-dot {
    fill: var(--accent);
}

.marquee-wrap {
    margin-top: 64px;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrap::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.s-alt .marquee-wrap::before { background: linear-gradient(90deg, var(--bg-alt), transparent); }
.s-alt .marquee-wrap::after  { background: linear-gradient(-90deg, var(--bg-alt), transparent); }

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marq 40s linear infinite;
    font-size: 15px;
    color: var(--text);
    will-change: transform;
}
.marquee > span { padding-right: 48px; display: inline-block; }
.marquee .hi { color: var(--accent); font-weight: 700; }
.marquee .dot { color: var(--text-dim); margin: 0 24px; }
@keyframes marq { to { transform: translateX(-50%); } }

/* WHATSAPP PHONE MOCKUP ------------------------------------- */
.wa-phone {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 9 / 19;
    padding: 14px;
    background: linear-gradient(180deg, #1c1c1c, #0a0a0a);
    border-radius: 46px;
    border: 2px solid #2a2a2a;
    box-shadow:
        0 30px 80px rgba(0,0,0,.5),
        0 0 0 1px rgba(195,255,54,.15),
        inset 0 0 0 3px #0a0a0a;
}
.wa-phone .screen {
    width: 100%; height: 100%;
    border-radius: 34px;
    background: #0d1418;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.wa-phone .notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 22px;
    background: #0a0a0a;
    border-radius: 0 0 18px 18px;
    z-index: 5;
}
.wa-phone .hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 28px 14px 12px;
    background: var(--wa);
    color: #fff;
    flex-shrink: 0;
}
.wa-phone .av {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
}
.wa-phone .nm { font-size: 13px; font-weight: 600; line-height: 1.1; }
.wa-phone .st { font-size: 10px; opacity: .85; }
.wa-phone .body {
    flex: 1;
    padding: 14px 10px 10px;
    background:
        linear-gradient(rgba(13,20,24,.82), rgba(13,20,24,.82)),
        repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(195,255,54,.025) 24px, rgba(195,255,54,.025) 25px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wa-phone .bub {
    max-width: 82%;
    padding: 7px 10px;
    font-size: 11px;
    line-height: 1.35;
    border-radius: 9px;
    opacity: 0;
    animation: waBub .35s var(--ease) forwards;
    color: #eaeaea;
    word-wrap: break-word;
}
.wa-phone .bub.u {
    align-self: flex-end;
    background: #005c4b;
    color: #fff;
    border-bottom-right-radius: 2px;
}
.wa-phone .bub.b {
    align-self: flex-start;
    background: #1f2a2f;
    border-bottom-left-radius: 2px;
}
.wa-phone .bub .t {
    display: block;
    font-size: 9px;
    opacity: .6;
    margin-top: 2px;
    text-align: right;
}
.wa-phone .bub:nth-child(1) { animation-delay: .3s; }
.wa-phone .bub:nth-child(2) { animation-delay: 1.2s; }
.wa-phone .bub:nth-child(3) { animation-delay: 2.2s; }
.wa-phone .bub:nth-child(4) { animation-delay: 3.3s; }
.wa-phone .bub:nth-child(5) { animation-delay: 4.4s; }
.wa-phone .bub:nth-child(6) { animation-delay: 5.5s; }
@keyframes waBub {
    from { opacity: 0; transform: translateY(8px) scale(.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-phone .foot {
    padding: 8px 10px;
    background: #1a2327;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
}
.wa-phone .foot .inp {
    flex: 1;
    padding: 8px 12px;
    background: #2a3337;
    border-radius: 999px;
    font-size: 11px;
    color: #8a9da5;
}
.wa-phone .foot .send {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--wa);
    display: grid; place-items: center;
    color: #fff;
    animation: waSend 2s ease-in-out infinite;
}
.wa-phone .foot .send svg { width: 14px; height: 14px; }
@keyframes waSend {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    50%      { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

/* Neon glow ring behind phone */
.phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-wrap::before {
    content: "";
    position: absolute;
    inset: 10% -20%;
    background:
        radial-gradient(circle at 30% 50%, rgba(195,255,54,.35) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(157,108,255,.3) 0%, transparent 50%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

/* TELEGRAM PHONE MOCKUP ------------------------------------- */
.tg-phone {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 9 / 19;
    padding: 14px;
    background: linear-gradient(180deg, #1c1c1c, #0a0a0a);
    border-radius: 46px;
    border: 2px solid #2a2a2a;
    box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(42,171,238,.25);
}
.tg-phone .screen {
    width: 100%; height: 100%;
    border-radius: 34px;
    background: #17212b;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.tg-phone .notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 22px;
    background: #0a0a0a;
    border-radius: 0 0 18px 18px;
    z-index: 5;
}
.tg-phone .hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 28px 14px 12px;
    background: #232e3c;
    color: #fff;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.tg-phone .av {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
}
.tg-phone .nm { font-size: 14px; font-weight: 600; line-height: 1.1; }
.tg-phone .st { font-size: 11px; opacity: .7; color: #8a9da5; }
.tg-phone .body {
    flex: 1;
    padding: 14px 10px 10px;
    background: #0e1621;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tg-phone .bub {
    max-width: 82%;
    padding: 8px 12px;
    font-size: 11px;
    line-height: 1.35;
    border-radius: 12px;
    opacity: 0;
    animation: waBub .35s var(--ease) forwards;
    color: #eaeaea;
}
.tg-phone .bub.u {
    align-self: flex-end;
    background: #2b5278;
    color: #fff;
    border-bottom-right-radius: 3px;
}
.tg-phone .bub.b {
    align-self: flex-start;
    background: #182533;
    border-bottom-left-radius: 3px;
}
.tg-phone .bub .t {
    display: block;
    font-size: 9px;
    opacity: .55;
    margin-top: 2px;
    text-align: right;
}
.tg-phone .bub:nth-child(1) { animation-delay: .3s; }
.tg-phone .bub:nth-child(2) { animation-delay: 1.2s; }
.tg-phone .bub:nth-child(3) { animation-delay: 2.2s; }
.tg-phone .bub:nth-child(4) { animation-delay: 3.3s; }
.tg-phone .bub:nth-child(5) { animation-delay: 4.4s; }
.tg-phone .bub:nth-child(6) { animation-delay: 5.5s; }

.tg-phone .inline-kb {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}
.tg-phone .inline-kb .kb {
    padding: 7px 10px;
    background: #2a5278;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    flex: 1 1 calc(50% - 4px);
}
.tg-phone .foot {
    padding: 8px 10px;
    background: #17212b;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.tg-phone .foot .inp {
    flex: 1;
    padding: 8px 12px;
    background: #242f3d;
    border-radius: 999px;
    font-size: 11px;
    color: #8a9da5;
}
.tg-phone .foot .send {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #2AABEE;
    display: grid; place-items: center;
    color: #fff;
    animation: waSend 2s ease-in-out infinite;
}
.tg-phone .foot .send svg { width: 14px; height: 14px; }

/* CONTENT-FEED HERO (blogger / rss / rag) -------------------- */
.feed-stage {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.1;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}
.feed-stage .fh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.feed-stage .fh-title { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.1em; }
.feed-stage .fh-live {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.12em;
}
.feed-stage .fh-live::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
    animation: pulse 1.5s infinite;
}
.feed-items { display: flex; flex-direction: column; gap: 10px; }
.feed-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 12px;
    background: var(--bg-lift);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    opacity: 0;
    animation: feedIn .45s var(--ease) forwards;
}
.feed-item:nth-child(1) { animation-delay: .3s; }
.feed-item:nth-child(2) { animation-delay: 1.3s; }
.feed-item:nth-child(3) { animation-delay: 2.3s; }
.feed-item:nth-child(4) { animation-delay: 3.3s; }
.feed-item:nth-child(5) { animation-delay: 4.3s; }
@keyframes feedIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.feed-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    display: grid; place-items: center;
    color: var(--accent);
}
.feed-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.feed-title { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 3px; }
.feed-meta { font-size: 11px; color: var(--text-mute); display: flex; gap: 10px; }
.feed-meta .tag { color: var(--accent); font-weight: 600; }

/* VOICE CALL MOCKUP ----------------------------------------- */
.voice-stage {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
    padding: 24px;
    background: linear-gradient(180deg, #1c1c1c, #0a0a0a);
    border-radius: 36px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 40px rgba(195,255,54,.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #f5f5f5;
    overflow: hidden;
}
.voice-stage .caller {
    text-align: center;
    padding-top: 16px;
}
.voice-stage .caller .status {
    font-size: 12px;
    color: rgba(195,255,54,.9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.voice-stage .caller .status::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s infinite;
}
.voice-stage .caller .name { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.voice-stage .caller .sub { font-size: 13px; color: #888; }

.voice-stage .avatar-ring {
    position: relative;
    width: 120px; height: 120px;
    border-radius: 50%;
    display: grid; place-items: center;
    margin: 20px 0;
}
.voice-stage .avatar-ring::before,
.voice-stage .avatar-ring::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    animation: ringOut 2.4s ease-out infinite;
}
.voice-stage .avatar-ring::after { animation-delay: 1.2s; }
@keyframes ringOut {
    0%   { transform: scale(1);    opacity: .7; }
    100% { transform: scale(1.6);  opacity: 0; }
}
.voice-stage .avatar {
    width: 92px; height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #86d71f);
    display: grid; place-items: center;
    color: var(--accent-ink);
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.voice-stage .waves {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 64px;
    margin: 12px 0;
    width: 80%;
}
.voice-stage .waves span {
    flex: 1;
    max-width: 5px;
    background: var(--accent);
    border-radius: 3px;
    animation: wBar 1.1s ease-in-out infinite;
}
.voice-stage .waves span:nth-child(1)  { animation-delay: 0s;    }
.voice-stage .waves span:nth-child(2)  { animation-delay: .08s;  }
.voice-stage .waves span:nth-child(3)  { animation-delay: .16s;  }
.voice-stage .waves span:nth-child(4)  { animation-delay: .24s;  }
.voice-stage .waves span:nth-child(5)  { animation-delay: .32s;  }
.voice-stage .waves span:nth-child(6)  { animation-delay: .40s;  }
.voice-stage .waves span:nth-child(7)  { animation-delay: .48s;  }
.voice-stage .waves span:nth-child(8)  { animation-delay: .56s;  }
.voice-stage .waves span:nth-child(9)  { animation-delay: .48s;  }
.voice-stage .waves span:nth-child(10) { animation-delay: .40s;  }
.voice-stage .waves span:nth-child(11) { animation-delay: .32s;  }
.voice-stage .waves span:nth-child(12) { animation-delay: .24s;  }
.voice-stage .waves span:nth-child(13) { animation-delay: .16s;  }
.voice-stage .waves span:nth-child(14) { animation-delay: .08s;  }
.voice-stage .waves span:nth-child(15) { animation-delay: 0s;    }
@keyframes wBar {
    0%, 100% { height: 20%; opacity: .5; }
    50%      { height: 100%; opacity: 1; }
}

.voice-stage .transcript {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    max-height: 120px;
    overflow: hidden;
    position: relative;
}
.voice-stage .transcript::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 40px;
    background: linear-gradient(180deg, transparent, #0a0a0a);
}
.voice-stage .transcript .line {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0;
    animation: trLine .4s ease forwards;
}
.voice-stage .transcript .line.u { color: #c7c7c7; }
.voice-stage .transcript .line.b { color: var(--accent); font-weight: 600; }
.voice-stage .transcript .line:nth-child(1) { animation-delay: 1s; }
.voice-stage .transcript .line:nth-child(2) { animation-delay: 2.5s; }
.voice-stage .transcript .line:nth-child(3) { animation-delay: 4s; }
@keyframes trLine {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.voice-stage .controls {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding-bottom: 8px;
}
.voice-stage .controls .ctl {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255,255,255,.08);
    color: #fff;
}
.voice-stage .controls .ctl svg { width: 24px; height: 24px; }
.voice-stage .controls .ctl.hangup { background: #e74c3c; }

/* ROI CALCULATOR ------------------------------------------- */
.roi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: clamp(24px, 3vw, 48px);
}
.roi-inputs { display: grid; gap: 24px; }
.roi-field label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    color: var(--text-mute);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.roi-field label .val {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
}
.roi-field input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--bg-lift);
    border-radius: 3px;
    outline: none;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 1px var(--accent), 0 0 16px rgba(195,255,54,.5);
    cursor: grab;
}
.roi-field input[type="range"]::-moz-range-thumb {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 1px var(--accent), 0 0 16px rgba(195,255,54,.5);
    cursor: grab;
}
.roi-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-lift), var(--bg-card-h));
    border-radius: var(--r-sm);
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.roi-result::before {
    content: "";
    position: absolute;
    top: -50%; right: -30%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(195,255,54,.15), transparent 65%);
    pointer-events: none;
}
.roi-result .label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-mute);
    margin-bottom: 12px;
    position: relative;
}
.roi-result .big {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 4px;
    position: relative;
}
.roi-result .unit { font-size: 18px; color: var(--text-mute); font-weight: 600; margin-left: 6px; }
.roi-result .note { font-size: 13px; color: var(--text-mute); margin-top: 18px; position: relative; }
.roi-result .cta { margin-top: 24px; position: relative; }

@media (max-width: 768px) {
    .roi { grid-template-columns: 1fr; }
}

/* PHOTO-SPLIT / PHOTO-FULL ---------------------------------- */
.photo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 60px);
    align-items: center;
    padding: var(--section-py) var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}
.photo-split.rev { direction: rtl; }
.photo-split.rev > * { direction: ltr; }
.photo-split .photo-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--r);
    border: 1px solid var(--border);
}
.photo-split .photo-img img { width: 100%; height: 100%; object-fit: cover; }
.photo-split .photo-txt .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
}
.photo-split .photo-txt h3 {
    font-size: clamp(24px, 3vw, 40px);
    margin-bottom: 16px;
}
.photo-split .photo-txt p { font-size: 16px; line-height: 1.55; max-width: 520px; }

@media (max-width: 768px) {
    .photo-split { grid-template-columns: 1fr; padding-top: clamp(40px, 8vw, 80px); padding-bottom: clamp(40px, 8vw, 80px); }
    .photo-split.rev { direction: ltr; }
}

/* INTEGRATIONS MARQUEE -------------------------------------- */
.integrations-marquee {
    overflow: hidden;
    padding: 24px 0;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.integrations-marquee::before,
.integrations-marquee::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.integrations-marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg-alt), transparent); }
.integrations-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg-alt), transparent); }
.integrations-track {
    display: flex;
    gap: 14px;
    animation: marq 45s linear infinite;
    width: max-content;
}
.integration-chip {
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

/* ROBOT SECTION --------------------------------------------- */
.robot-section {
    padding: clamp(48px, 7vw, 120px) 0;
    position: relative;
    overflow: hidden;
}
.robot-section > .container { position: relative; z-index: 3; }
/* Grid pattern around the robot */
.robot-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--robot-grid-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--robot-grid-line) 1px, transparent 1px);
    background-size: 6rem 4rem;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 90%);
    z-index: 0;
    pointer-events: none;
}
/* Bottom-left bloom */
.robot-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 800px at 0% 100%, var(--robot-bloom), transparent 65%);
    z-index: 1;
    pointer-events: none;
}
:root {
    --robot-grid-line: rgba(255, 255, 255, 0.08);
    --robot-bloom: rgba(195, 255, 54, 0.16);
}
:root[data-theme="light"] {
    --robot-grid-line: #e8e8e8;
    --robot-bloom: #d5c5ff;
}

/* Cosmic viewport inside the robot stage -------------------- */
.robot-stage {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: radial-gradient(ellipse at bottom, #1f1f1f 0%, #050505 100%);
}
.robot-stage > .stars-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.robot-stage > spline-viewer { position: relative; z-index: 2; }
.robot-stage > .robot-badge { z-index: 10; }
/* Hide Spline's watermark link */
spline-viewer::part(logo),
spline-viewer::part(Logo) { display: none !important; visibility: hidden !important; opacity: 0 !important; }
spline-viewer a[href*="spline.design"],
spline-viewer a[href*="spline.tools"] { display: none !important; }

/* Butterfly cursor over the robot stage -------------------- */
.robot-stage.no-butterfly { cursor: auto; }
.butterfly-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity .2s var(--ease);
    filter: drop-shadow(0 0 12px rgba(195, 255, 54, 0.7));
    line-height: 1;
    text-align: center;
    will-change: transform;
}
.butterfly-cursor.show { opacity: 1; }
.butterfly-cursor svg { width: 40px; height: 40px; animation: butterflyFlutter .08s ease-in-out infinite alternate; transform-origin: 50% 50%; }
@keyframes butterflyFlutter {
    from { transform: scale(1, 1) rotate(-8deg); }
    to   { transform: scale(0.6, 1) rotate(8deg); }
}
@media (max-width: 1100px) {
    .robot-stage { cursor: auto; }
    .butterfly-cursor { display: none; }
}

/* PAIN section — grid + top-left bloom, fades into black -------- */
#pain {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}
#pain > .container { position: relative; z-index: 3; }
#pain::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--robot-grid-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--robot-grid-line) 1px, transparent 1px);
    background-size: 6rem 4rem;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 90%);
    z-index: 0;
    pointer-events: none;
}
#pain::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 65%, #050505 100%),
        radial-gradient(circle 800px at 0% 0%, var(--robot-bloom), transparent 65%);
    z-index: 1;
    pointer-events: none;
}

/* SOLUTIONS section starts on near-black, blends hero-like dark */
#solutions {
    background: radial-gradient(ellipse at top, #1f1f1f 0%, #050505 100%);
    color: var(--text);
}
:root[data-theme="light"] #solutions {
    background: radial-gradient(ellipse at top, #F0EEE8 0%, var(--bg) 100%);
}
.robot-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.robot-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1.05 / 1;
    max-height: 640px;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    isolation: isolate;
    transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.robot-stage:hover { border-color: var(--border-h); }
/* On light theme keep the robot stage on a gray (not white) background */
:root[data-theme="light"] .robot-stage { background: #E4E4E0; }
:root[data-theme="light"] .robot-badge { background: #F7F7F5; }
.robot-stage::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent 40%, var(--accent) 70%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: .6;
    z-index: 3;
}
.robot-stage spline-viewer {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: block;
}
.robot-badge {
    position: absolute;
    right: 8px; bottom: 8px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text);
    user-select: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.robot-badge .brand {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: 14px;
    color: var(--text);
}
.robot-badge .sep { color: var(--accent); font-size: 14px; opacity: .9; }
.robot-badge .state {
    color: var(--accent);
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 11px;
}
.robot-badge::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .35; transform: scale(1.6); }
}

.robot-text .eyebrow { margin-bottom: 20px; }
.robot-text h2 { margin-bottom: 24px; font-size: clamp(36px, 4.2vw, 68px); }
.robot-text > p {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.55;
    color: var(--text-mute);
    max-width: 520px;
    margin-bottom: 32px;
}
.robot-features {
    display: grid;
    gap: 10px;
    margin-bottom: 32px;
}
.robot-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.robot-features li:hover { border-color: var(--border-h); transform: translateX(4px); }
.robot-features li::before {
    content: "";
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C3FF36' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

@media (max-width: 1024px) {
    .robot-grid { grid-template-columns: 1fr; }
    .robot-stage {
        aspect-ratio: 1;
        max-height: 520px;
        margin: 0 auto;
        max-width: 520px;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .robot-stage { max-height: 360px; }
    .robot-features li { padding: 12px 14px; font-size: 14px; }
    .robot-features li::before { width: 28px; height: 28px; background-size: 14px; }
}

/* FEATURE CARDS (pain section) ------------------------------ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
    transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    border-color: var(--border-h);
    background: var(--bg-card-h);
    transform: translateY(-4px);
}
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { font-size: 14px; line-height: 1.55; }
.feature-card .mini-chart {
    margin-top: 20px;
    height: 100px;
    width: 100%;
}
.feature-card .mini-chart svg { width: 100%; height: 100%; }

/* NUMBERED GRID (solutions) --------------------------------- */
.num-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.num-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
    position: relative;
    overflow: hidden;
    color: inherit;
}
.num-card:hover {
    border-color: var(--border-h);
    background: var(--bg-card-h);
    transform: translateY(-4px);
    color: inherit;
}
.num-card .num {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}
.num-card h3 { font-size: 16px; line-height: 1.25; }
.num-card .ic {
    width: 44px; height: 44px;
    margin-top: auto;
    opacity: .7;
    color: var(--accent);
}
.num-card .ic svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }

.num-grid-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
}

/* STEPS (how it works) -------------------------------------- */
.steps-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.steps-list { display: grid; gap: 16px; }
.step-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
}
.step-row .step-n {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-lift);
    color: var(--accent);
    display: grid; place-items: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.step-row h4 { font-size: 16px; margin-bottom: 4px; }
.step-row p { font-size: 13px; color: var(--text-mute); }
.step-row .badge {
    padding: 6px 12px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.steps-callout {
    background: var(--accent);
    color: var(--accent-ink);
    border-radius: var(--r);
    padding: clamp(32px, 4vw, 56px);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.steps-callout h3 {
    font-size: clamp(28px, 3vw, 44px);
    color: var(--accent-ink);
    line-height: 1.05;
}
.steps-callout .big {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(80px, 12vw, 180px);
    font-weight: 800;
    color: var(--accent-ink);
    line-height: 0.85;
    letter-spacing: -0.04em;
}
.steps-callout p {
    color: rgba(10,10,10,0.7);
    font-weight: 500;
    max-width: 80%;
}

/* TRUST BLOCKS (why us) ------------------------------------- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: clamp(24px, 3vw, 40px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.trust-card.accent {
    background: var(--accent-2);
    color: #fff;
    border-color: var(--accent-2);
}
.trust-card.accent h3, .trust-card.accent p { color: #fff; }
.trust-card h3 { font-size: clamp(18px, 1.4vw, 24px); }
.trust-card p { font-size: 14px; line-height: 1.55; }
.trust-card .icon-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}
.trust-card .icon-row span {
    padding: 6px 12px;
    background: var(--bg-lift);
    border-radius: var(--r-xs);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mute);
}
.trust-card.accent .icon-row span {
    background: rgba(255,255,255,.18);
    color: #fff;
}

/* STATS BAR ------------------------------------------------- */
.stats-bar {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: clamp(40px, 6vw, 80px) 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item { text-align: center; }
.stat-item .big {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}
.stat-item p {
    margin-top: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-mute);
}

/* CHAT DEMO ------------------------------------------------- */
.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.chat-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 440px;
    margin: 0 auto;
}
.chat-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-lift);
    border-bottom: 1px solid var(--border);
}
.chat-av {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 14px;
}
.chat-nm { font-weight: 700; font-size: 14px; }
.chat-st { font-size: 11px; color: var(--accent); font-weight: 600; }

.chat-msgs {
    padding: 20px;
    height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-alt);
}
.msg {
    max-width: 78%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    word-break: break-word;
}
.msg.show { opacity: 1; transform: translateY(0); }
.msg-u {
    align-self: flex-end;
    background: var(--accent);
    color: var(--accent-ink);
    border-bottom-right-radius: 4px;
}
.msg-b {
    align-self: flex-start;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}
.msg-t { font-size: 10px; opacity: .65; margin-top: 4px; }

.typing {
    display: none;
    gap: 4px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    align-self: flex-start;
}
.typing.show { display: inline-flex; }
.typing .td {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--text-mute);
    animation: td 1.2s infinite;
}
.typing .td:nth-child(2) { animation-delay: .2s; }
.typing .td:nth-child(3) { animation-delay: .4s; }
@keyframes td {
    0%, 60%, 100% { opacity: .3; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-4px); }
}

.demo-txt ul {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}
.demo-txt li {
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text);
}
.demo-txt li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    display: grid; place-items: center;
    font-size: 12px;
    font-weight: 700;
}

/* TESTIMONIALS SLIDER --------------------------------------- */
.testi-slider {
    position: relative;
    margin: 0 calc(-1 * var(--gutter));
    padding: 0 var(--gutter);
    overflow: hidden;
}
.testi-track {
    display: flex;
    gap: 16px;
    transition: transform .5s var(--ease);
    will-change: transform;
}
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
}

@media (max-width: 1024px) {
    .testi-card { flex: 0 0 calc((100% - 16px) / 2); padding: 28px; }
}
@media (max-width: 768px) {
    .testi-card { flex: 0 0 100%; padding: 24px; gap: 16px; }
    .testi-text { font-size: 14px; }
}
.testi-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.testi-controls button {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    display: grid; place-items: center;
    transition: border-color .2s var(--ease), color .2s var(--ease), background-color .2s var(--ease);
}
.testi-controls button:hover { border-color: var(--accent); color: var(--accent); }
.testi-controls button svg { width: 18px; height: 18px; }
.testi-dots {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 0 14px;
}
.testi-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--bg-lift);
    transition: background-color .2s var(--ease), width .2s var(--ease);
}
.testi-dots span.active { background: var(--accent); width: 24px; border-radius: 4px; }
.testi-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; line-height: 1.55; color: var(--text); flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-info h4 { font-size: 15px; margin-bottom: 2px; }
.testi-info p { font-size: 13px; color: var(--text-mute); }

/* TESTIMONIALS (3-column infinite scroll) ------------------- */
.testi-wall {
    position: relative;
    height: 640px;
    overflow: hidden;
    margin-top: 48px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.testi-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 320px));
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
}
.testi-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    will-change: transform;
    animation: testi-up 32s linear infinite;
}
.testi-col-2 { animation-duration: 44s; }
.testi-col-3 { animation-duration: 38s; }
.testi-wall:hover .testi-col { animation-play-state: paused; }

@keyframes testi-up {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.testi-card-v {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
    flex-shrink: 0;
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.testi-card-v:hover {
    border-color: var(--border-h);
    transform: translateY(-2px);
}
.testi-card-v .txt {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    margin: 0 0 18px;
}
.testi-card-v .who {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testi-card-v .who img {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testi-card-v .who .name { font-size: 14px; font-weight: 600; line-height: 1.3; }
.testi-card-v .who .role { font-size: 13px; color: var(--text-mute); line-height: 1.3; }

@media (max-width: 1100px) {
    .testi-cols { grid-template-columns: repeat(2, minmax(0, 320px)); }
    .testi-col-3 { display: none; }
}
@media (max-width: 700px) {
    .testi-cols { grid-template-columns: minmax(0, 340px); }
    .testi-col-2 { display: none; }
    .testi-wall { height: 560px; }
}

/* BLOG ------------------------------------------------------ */
.blog-search {
    position: relative;
    max-width: 560px;
    margin-top: 32px;
}
.blog-search svg {
    position: absolute;
    left: 18px; top: 50%;
    width: 20px; height: 20px;
    fill: var(--text-mute);
    transform: translateY(-50%);
    pointer-events: none;
}
.blog-search input {
    width: 100%;
    padding: 16px 22px 16px 52px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.blog-search input::placeholder { color: var(--text-mute); }
.blog-search input:focus {
    outline: none;
    border-color: var(--accent);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}
.chip {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s var(--ease);
    white-space: nowrap;
}
.chip:hover { border-color: var(--border-h); color: var(--accent); }
.chip.active {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: var(--accent);
}

.blog-section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 56px 0 32px;
}
.blog-section-title h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    white-space: nowrap;
}
.blog-section-title .line {
    flex: 1;
    height: 1px;
    background: var(--border);
}
.blog-section-title .count {
    font-size: 13px;
    color: var(--text-mute);
    white-space: nowrap;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}
.feat-side-stack { display: grid; gap: 24px; grid-template-rows: 1fr 1fr; }

.feat-main, .feat-side, .article-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.feat-main:hover, .feat-side:hover, .article-card:hover {
    border-color: var(--border-h);
    transform: translateY(-4px);
}
.feat-main .img-wrap,
.feat-side .img-wrap,
.article-card .img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.feat-main .img-wrap { aspect-ratio: 16/10; }
.feat-side .img-wrap { aspect-ratio: 16/7; }
.article-card .img-wrap { aspect-ratio: 16/10; }
.feat-main img, .feat-side img, .article-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.feat-main:hover img, .feat-side:hover img, .article-card:hover img { transform: scale(1.05); }

.cat-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 2;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.cat-badge.cat-hr { background: rgba(99,102,241,.92); color: #fff; border-color: transparent; }
.cat-badge.cat-sales { background: rgba(195,255,54,.95); color: var(--accent-ink); border-color: transparent; }
.cat-badge.cat-marketing { background: rgba(236,72,153,.92); color: #fff; border-color: transparent; }
.cat-badge.cat-logistics { background: rgba(14,165,233,.92); color: #fff; border-color: transparent; }
.cat-badge.cat-finance { background: rgba(34,197,94,.92); color: #fff; border-color: transparent; }
.cat-badge.cat-tech { background: rgba(168,85,247,.92); color: #fff; border-color: transparent; }
.cat-badge.cat-messengers { background: rgba(245,158,11,.95); color: #0a0a0a; border-color: transparent; }
.cat-badge.cat-management { background: rgba(239,68,68,.92); color: #fff; border-color: transparent; }
.cat-badge.cat-construction { background: rgba(251,146,60,.95); color: #0a0a0a; border-color: transparent; }
.cat-badge.cat-trends { background: rgba(6,182,212,.92); color: #fff; border-color: transparent; }

.feat-main .content,
.feat-side .content,
.article-card .content {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.feat-main h3 { font-size: clamp(20px, 1.7vw, 26px); font-weight: 700; line-height: 1.25; margin: 0 0 12px; }
.feat-side h3 { font-size: 16px; font-weight: 700; line-height: 1.3; margin: 0 0 8px; }
.article-card h3 { font-size: 17px; font-weight: 700; line-height: 1.3; margin: 0 0 10px; }
.feat-main p, .article-card p {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}
.feat-main .meta,
.feat-side .meta,
.article-card .meta {
    font-size: 12px;
    color: var(--text-mute);
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.article-card .read-more {
    margin-left: auto;
    color: var(--accent);
    font-weight: 600;
    transition: gap .2s var(--ease);
}
.article-card:hover .read-more { color: var(--accent); }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-mute);
}
.empty-state svg { width: 48px; height: 48px; fill: currentColor; opacity: .4; margin-bottom: 16px; }
.empty-state h3 { font-size: 20px; margin-bottom: 8px; color: var(--text); }

.blog-cta {
    margin: 80px 0 0;
    padding: clamp(32px, 4vw, 56px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    text-align: center;
}
.blog-cta h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 700; margin-bottom: 12px; }
.blog-cta p { color: var(--text-mute); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.blog-cta .cta-btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 1024px) {
    .featured-grid { grid-template-columns: 1fr; }
    .feat-side-stack { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .feat-side-stack { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .blog-section-title h2 { white-space: normal; font-size: 22px; }
    .blog-section-title .count { display: none; }
}

/* BLOG ARTICLE PAGES ---------------------------------------- */
.article-hero {
    padding: 40px 0 48px;
    position: relative;
}
.article-hero .container { max-width: 1200px; }
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-mute);
    margin-bottom: 24px;
    text-decoration: none;
}
.breadcrumb a { color: var(--text); text-decoration: none; transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 14px; height: 14px; fill: var(--text-mute); }
.breadcrumb span { color: var(--accent); }

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.article-hero h1 {
    font-size: clamp(28px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
}
.article-lead {
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--text-mute);
    line-height: 1.65;
    max-width: 760px;
    margin-bottom: 36px;
}

.tag, .tag-blue, .tag-indigo, .tag-green, .tag-amber, .tag-purple,
.tag-cyan, .tag-emerald, .tag-gold, .tag-orange, .tag-pink,
.tag-rose, .tag-sky, .tag-teal, .tag-violet, .tag-tg {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(195,255,54,.12);
    color: var(--accent);
    border: 1px solid rgba(195,255,54,.3);
}
.tag-indigo, .tag-purple, .tag-violet { background: rgba(157,108,255,.12); color: var(--accent-2); border-color: rgba(157,108,255,.3); }
.tag-green, .tag-emerald, .tag-teal { background: rgba(34,197,94,.12); color: #22c55e; border-color: rgba(34,197,94,.3); }
.tag-amber, .tag-gold, .tag-orange { background: rgba(245,158,11,.12); color: #f59e0b; border-color: rgba(245,158,11,.3); }
.tag-pink, .tag-rose { background: rgba(236,72,153,.12); color: #ec4899; border-color: rgba(236,72,153,.3); }
.tag-cyan, .tag-sky { background: rgba(14,165,233,.12); color: #0ea5e9; border-color: rgba(14,165,233,.3); }
.tag-tg { background: rgba(42,171,238,.12); color: #2AABEE; border-color: rgba(42,171,238,.3); }

.article-date, .read-time {
    font-size: 13px;
    color: var(--text-mute);
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    max-width: 1100px;
}
.hero-img-wrap img { width: 100%; height: auto; display: block; }
.hero-img-overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    gap: 16px;
    padding: 24px;
    flex-wrap: wrap;
    background: linear-gradient(180deg, transparent, rgba(10,10,10,.85));
}
.hero-stat {
    padding: 12px 20px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 120px;
}
.hero-stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--accent);
}
.hero-stat-num.green, .hero-stat-num.emerald { color: #22c55e; }
.hero-stat-num.indigo, .hero-stat-num.purple, .hero-stat-num.violet { color: var(--accent-2); }
.hero-stat-num.blue, .hero-stat-num.sky, .hero-stat-num.cyan { color: var(--accent); }
.hero-stat-num.amber, .hero-stat-num.gold, .hero-stat-num.orange { color: #f59e0b; }
.hero-stat-num.pink, .hero-stat-num.rose { color: #ec4899; }
.hero-stat-label {
    font-size: 11px;
    color: #fff;
    opacity: 0.8;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.sbar-num {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--accent);
}
.sbar-num.gtext {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.sbar-label { font-size: 13px; color: var(--text-mute); }

.article-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 56px 0 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.article-content { min-width: 0; max-width: 820px; }

.prose h2 {
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 56px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text);
}
.prose p {
    margin-bottom: 18px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}
.prose strong { color: var(--text); font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 24px; color: var(--text); }
.prose li { margin-bottom: 10px; font-size: 16px; line-height: 1.7; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    margin: 24px 0;
    background: var(--bg-card);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-style: italic;
    color: var(--text-mute);
}

.section-img {
    border-radius: var(--r);
    overflow: hidden;
    margin: 32px 0;
    border: 1px solid var(--border);
    position: relative;
}
.section-img img { width: 100%; display: block; }
.section-img-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px 20px;
    background: linear-gradient(180deg, transparent, rgba(10,10,10,.85));
    color: #fff;
    font-size: 13px;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}
.feat-card, .use-card, .access-card, .roi-card, .case-card, .compare-card, .kpi-card, .trend-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.feat-card:hover, .use-card:hover, .access-card:hover, .roi-card:hover,
.case-card:hover, .compare-card:hover, .kpi-card:hover, .trend-card:hover {
    border-color: var(--border-h);
    transform: translateY(-3px);
}
.feat-icon, .use-icon, .access-icon, .roi-icon, .rag-icon, .compare-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(195,255,54,0.08);
    color: var(--accent);
    display: grid; place-items: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.feat-card h3, .use-card h3, .access-card h3, .roi-card h3,
.case-card h3, .compare-card h3, .trend-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text);
}
.feat-card p, .use-card p, .access-card p, .roi-card p,
.case-card p, .compare-card p, .trend-card p {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.6;
    margin: 0;
}

.use-grid, .access-grid, .roi-grid, .trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 32px 0;
}
.trend-num {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}
.compare-icon { font-size: 24px; }
.compare-vs {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
}
.compare-vs .old {
    padding: 4px 10px;
    border-radius: var(--r-pill);
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    text-decoration: line-through;
}
.compare-vs .new {
    padding: 4px 10px;
    border-radius: var(--r-pill);
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    font-weight: 700;
}

.process-steps { margin: 32px 0; display: grid; gap: 12px; }
.process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.process-step:hover { border-color: var(--border-h); transform: translateX(4px); }
.process-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--accent-ink);
    display: grid; place-items: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 18px;
}
.process-step h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--text); }
.process-step p { font-size: 14px; color: var(--text-mute); line-height: 1.6; margin: 0; }

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}
.kpi-card { text-align: center; }
.kpi-val {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--accent);
}
.kpi-val.green, .kpi-val.emerald { color: #22c55e; }
.kpi-val.indigo, .kpi-val.violet, .kpi-val.purple { color: var(--accent-2); }
.kpi-val.blue, .kpi-val.sky, .kpi-val.cyan { color: var(--accent); }
.kpi-val.amber, .kpi-val.gold, .kpi-val.orange { color: #f59e0b; }
.kpi-val.pink, .kpi-val.rose { color: #ec4899; }
.kpi-card h3 { font-size: 14px; font-weight: 600; margin: 0 0 6px; color: var(--text); }
.kpi-card p { font-size: 12px; color: var(--text-mute); margin: 0; line-height: 1.5; }

.case-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--r);
    padding: 28px;
    margin: 32px 0;
    position: relative;
}
.case-block::before {
    content: 'Кейс';
    position: absolute;
    top: 0; right: 0;
    padding: 4px 14px;
    background: rgba(195,255,54,0.15);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0 0 0 var(--r-sm);
}
.case-block h3 { font-size: 18px; font-weight: 700; margin: 0 0 16px; color: var(--text); }
.case-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.case-stat, .case-metric {
    text-align: center;
    padding: 14px 12px;
    background: var(--bg);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
}
.case-stat-val, .case-metric-val {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--accent);
}
.case-stat-label, .case-metric-label {
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Keep old blog faq-section name but style from theme */
.faq-section { margin: 48px 0; }
.faq-section .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-section .faq-item.active { border-color: var(--border-h); }
.faq-section .faq-q {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: background-color .2s;
}
.faq-section .faq-q:hover { background: var(--bg-card-h, var(--bg-lift)); }
.faq-section .faq-q svg { width: 20px; height: 20px; fill: var(--text-mute); flex-shrink: 0; transition: transform .3s; }
.faq-section .faq-item.active .faq-q svg { transform: rotate(180deg); fill: var(--accent); }
.faq-section .faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-mute);
    transition: max-height .4s var(--ease), padding .3s;
}
.faq-section .faq-item.active .faq-a { max-height: 400px; padding: 0 22px 22px; }

/* Sidebar */
.sidebar { position: sticky; top: 100px; display: grid; gap: 16px; }
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
}
.sidebar-card h4 { font-size: 14px; font-weight: 700; margin: 0 0 14px; color: var(--text); letter-spacing: 0.02em; }
.sidebar-cta-btns { display: grid; gap: 10px; }
.sidebar-cta-btns .btn { width: 100%; justify-content: center; padding: 11px 18px; font-size: 13px; }
.toc { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.toc li { margin: 0; }
.toc a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mute);
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    text-decoration: none;
    transition: color .2s, border-color .2s, background-color .2s;
}
.toc a:hover, .toc a.active {
    color: var(--accent);
    border-left-color: var(--accent);
    background: rgba(195,255,54,0.06);
}
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tags span {
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    border-radius: var(--r-pill);
    background: var(--bg);
    color: var(--text-mute);
    border: 1px solid var(--border);
}

/* Article CTA (different name to avoid conflict with blog-cta) */
.article-cta {
    background: linear-gradient(135deg, rgba(195,255,54,0.08), rgba(157,108,255,0.08));
    border: 1px solid rgba(195,255,54,0.2);
    border-radius: var(--r);
    padding: 44px 36px;
    margin: 48px 0;
    text-align: center;
}
.article-cta h2 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; margin: 0 0 12px; }
.article-cta p { font-size: 15px; color: var(--text-mute); margin: 0 0 24px; max-width: 540px; margin-left: auto; margin-right: auto; }
.article-cta .cta-btns { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* Compare + table */
.compare-table, .cmp-table, .table-wrap { margin: 32px 0; overflow-x: auto; }
.compare-table table, .cmp-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}
.compare-table th, .cmp-table th {
    background: var(--bg-alt);
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    color: var(--text);
    letter-spacing: 0.02em;
}
.compare-table td, .cmp-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-mute);
    border-top: 1px solid var(--border);
}
.compare-table .good, .cmp-table .good { color: #22c55e; }
.compare-table .bad, .cmp-table .bad { color: #ef4444; }
.compare-table .med, .cmp-table .med { color: #f59e0b; }

/* Badges */
.badge-green { background: rgba(34,197,94,0.15); color: #22c55e; padding: 3px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-red { background: rgba(239,68,68,0.15); color: #ef4444; padding: 3px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

/* RAG diagram */
.rag-diagram { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 32px 0; }
.rag-step {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    text-align: center;
}
.rag-step h4 { font-size: 14px; font-weight: 700; margin: 8px 0 4px; color: var(--text); }
.rag-step p { font-size: 12px; color: var(--text-mute); margin: 0; }

/* Case metrics (alt variant used in some articles) */
.case-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin-top: 14px; }
.case-wrap { margin: 32px 0; }
.case-overlay { padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm); }
.case-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.case-result { font-size: 15px; color: var(--text-mute); }

/* Small utilities used across articles */
.article-content .big { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.article-content .small { font-size: 12px; color: var(--text-mute); }

/* Article page responsive */
@media (max-width: 1100px) {
    .article-body { grid-template-columns: 1fr; gap: 32px; }
    .sidebar { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .feat-grid, .compare-grid, .kpi-grid { grid-template-columns: 1fr 1fr; }
    .case-results { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .feat-grid, .compare-grid, .kpi-grid { grid-template-columns: 1fr; }
    .case-results { grid-template-columns: 1fr 1fr; gap: 8px; }
    .sidebar { grid-template-columns: 1fr; }
    .process-step { grid-template-columns: 40px 1fr; gap: 14px; padding: 18px; }
    .process-num { width: 40px; height: 40px; font-size: 16px; }
    .article-body { padding: 36px 0 60px; }
    .article-hero { padding: 24px 0 36px; }
    .hero-img-overlay { padding: 14px; gap: 8px; }
    .hero-stat { padding: 10px 14px; min-width: 0; flex: 1; }
}

/* WORLD MAP ------------------------------------------------- */
.world-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    max-width: 1100px;
    margin: 48px auto 0;
    background: transparent;
    border-radius: var(--r);
    overflow: hidden;
}
.world-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
:root[data-theme="light"] .world-bg { filter: invert(1) hue-rotate(180deg); }
.world-arcs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
}
.world-arcs .arc {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}
.world-wrap.play .world-arcs .arc {
    animation: world-draw 1.4s ease-out forwards;
    animation-delay: var(--d, 0s);
}
@keyframes world-draw {
    to { stroke-dashoffset: 0; }
}
.world-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.world-labels .lbl {
    position: absolute;
    transform: translate(-50%, -160%);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.world-labels .lbl-hub {
    color: var(--accent-ink);
    background: var(--accent);
    border-color: var(--accent);
}
.world-labels .lbl-below { transform: translate(-50%, 60%); }
.world-labels .lbl-hub { transform: translate(-50%, -200%); }
.world-wrap.play .world-labels .lbl { opacity: 1; }

@media (max-width: 900px) {
    .world-labels .lbl { font-size: 10px; padding: 3px 7px; transform: translate(-50%, -200%); }
    .world-labels .lbl-below { transform: translate(-50%, 100%); }
    .world-labels .lbl-hub { transform: translate(-50%, -240%); }
}
@media (max-width: 700px) {
    /* Drop secondary labels on phones — too cramped */
    .world-labels .lbl-sec { display: none; }
}

/* NICHE GRID ------------------------------------------------ */
.niche-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.niche-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: border-color .2s var(--ease), transform .2s var(--ease);
    color: var(--text);
}
.niche-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85) 100%);
    z-index: 1;
}
.niche-card .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(1) brightness(.5);
    transition: filter .3s var(--ease), transform .3s var(--ease);
    z-index: 0;
}
.niche-card:hover { border-color: var(--accent); transform: translateY(-4px); color: var(--text); }
.niche-card:hover .bg { filter: grayscale(0) brightness(.7); transform: scale(1.05); }
.niche-card h4 {
    position: relative;
    z-index: 2;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.niche-card .icon {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10,10,10,.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    color: var(--accent);
    z-index: 2;
    border: 1px solid rgba(195,255,54,.4);
    box-shadow: 0 0 18px rgba(195,255,54,.25);
    transition: background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.niche-card:hover .icon {
    background: rgba(10,10,10,.8);
    box-shadow: 0 0 24px rgba(195,255,54,.55);
}
.niche-card .icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* PRICING --------------------------------------------------- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.price-card.pop {
    border-color: var(--accent);
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, var(--bg-card)), var(--bg-card));
}
.price-card .badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--accent-ink);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--r-pill);
}
.price-card h3 { font-size: 20px; }
.price-val {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.price-period { font-size: 13px; color: var(--text-mute); margin-top: -12px; }
.price-list { display: grid; gap: 10px; margin: 12px 0 auto; }
.price-list li {
    font-size: 14px;
    padding-left: 24px;
    position: relative;
    color: var(--text);
}
.price-list li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    color: var(--accent);
    font-weight: 700;
}

/* CONSULT FORM ---------------------------------------------- */
.consult {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: clamp(32px, 4vw, 56px);
    display: grid;
    grid-template-columns: 1.2fr auto 1.3fr;
    gap: clamp(20px, 3vw, 48px);
    align-items: center;
    position: relative;
}
.consult-txt h2 { font-size: clamp(24px, 2.5vw, 40px); margin-bottom: 12px; }
.consult-txt p { font-size: 14px; line-height: 1.55; max-width: 420px; }
.consult-sticker {
    width: clamp(180px, 18vw, 240px);
    height: clamp(180px, 18vw, 240px);
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    display: grid;
    place-items: center;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1;
    font-size: clamp(32px, 3.6vw, 54px);
    transform: rotate(-8deg);
    flex-shrink: 0;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(195,255,54,.25);
    animation: stickerSpin 16s linear infinite;
}
.consult-sticker .inner { transform: rotate(8deg); }
.consult-sticker small {
    font-size: clamp(11px, 0.95vw, 14px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-top: 10px;
    line-height: 1.2;
}
@keyframes stickerSpin {
    0%   { transform: rotate(-8deg); }
    50%  { transform: rotate(6deg); }
    100% { transform: rotate(-8deg); }
}
.consult form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.consult input {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    color: var(--text);
    outline: none;
    transition: border-color .2s var(--ease);
}
.consult input:focus { border-color: var(--accent); }
.consult input::placeholder { color: var(--text-dim); }
.consult form .btn { grid-column: 2; width: 100%; }
.consult-legal { grid-column: 1 / -1; font-size: 11px; color: var(--text-dim); margin-top: -4px; }

/* BRAND STRIP ----------------------------------------------- */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.brand-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: clamp(24px, 2.5vw, 36px);
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.brand-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.brand-card.accent {
    background: var(--accent-2);
    color: #fff;
    border-color: var(--accent-2);
}
.brand-card.accent h4, .brand-card.accent p { color: #fff; }
.brand-card h4 { font-size: 18px; margin-bottom: 8px; }
.brand-card p { font-size: 13px; line-height: 1.5; }
.brand-card .logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.brand-card .logos span {
    padding: 6px 12px;
    background: var(--bg-lift);
    border-radius: var(--r-xs);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.brand-card.accent .logos span { background: rgba(255,255,255,.2); color: #fff; }

/* BLOG ------------------------------------------------------ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .2s var(--ease), transform .2s var(--ease);
    color: inherit;
}
.blog-card:hover { border-color: var(--border-h); transform: translateY(-4px); color: inherit; }
.blog-img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-lift);
    color: var(--accent);
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.blog-body h3 { font-size: 18px; line-height: 1.3; margin-bottom: 12px; }
.blog-meta { font-size: 12px; color: var(--text-mute); }

.center { text-align: center; margin-top: 40px; }

/* FAQ ------------------------------------------------------- */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 8px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    overflow: hidden;
}
.faq-q {
    display: flex;
    width: 100%;
    padding: 20px 24px;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}
.faq-q .ico {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-lift);
    color: var(--accent);
    display: grid; place-items: center;
    transition: transform .3s var(--ease);
    font-size: 14px;
    flex-shrink: 0;
}
.faq-item.active .faq-q .ico { transform: rotate(45deg); background: var(--accent); color: var(--accent-ink); }
.faq-a {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    color: var(--text-mute);
    font-size: 14px;
    line-height: 1.6;
    transition: max-height .3s var(--ease), padding .3s var(--ease);
}
.faq-item.active .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* FOOTER ---------------------------------------------------- */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-mute);
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text); }
.footer-col a:hover { color: var(--accent); }
.footer-col li small { font-size: 12px; color: var(--text-mute); }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-mute);
}

/* FLOATING BUTTONS ------------------------------------------ */
.wa-float {
    position: fixed;
    bottom: 20px; left: 20px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s;
    z-index: 40;
    pointer-events: none;
}
.wa-float.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.wa-float:hover { color: #fff; filter: brightness(1.1); }
.wa-float svg { width: 28px; height: 28px; }

.scroll-top {
    position: fixed;
    bottom: 88px; left: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s;
    z-index: 40;
    pointer-events: none;
    font-size: 18px;
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { border-color: var(--accent); color: var(--accent); }

/* REVEAL ---------------------------------------------------- */
.fi { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fi.v { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .fi { opacity: 1; transform: none; }
}

/* RESPONSIVE ------------------------------------------------ */
@media (max-width: 1200px) {
    .num-grid { grid-template-columns: repeat(3, 1fr); }
    .niche-grid { grid-template-columns: repeat(4, 1fr); }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hd-contacts { display: none; }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-chart { max-width: 340px; margin: 0 auto; }
    .steps-layout { grid-template-columns: 1fr; }
    .steps-callout { aspect-ratio: auto; min-height: 280px; }
    .demo-layout { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .consult {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .consult-sticker { margin: 0 auto; }
    .consult form { width: 100%; grid-template-columns: 1fr; }
    .consult form .btn { grid-column: 1; }
}

@media (max-width: 1100px) {
    /* Remove backdrop-filter on mobile — creates containing block that breaks fixed nav.
       Raise z-index above .nav-backdrop (190) so nested .nav (z:200) wins in stacking. */
    .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--bg);
        z-index: 220;
    }
    .header.scrolled { background: var(--bg); }

    /* Backdrop behind the right-drawer */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.55);
        z-index: 190;
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s var(--ease), visibility .25s;
    }
    .nav-backdrop.open { opacity: 1; visibility: visible; }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(86vw, 400px);
        min-height: 100vh;
        min-height: 100dvh;
        background: var(--bg);
        border-left: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 40px;
        gap: 0;
        margin: 0;
        z-index: 200;
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(100%);
        transition: transform .3s var(--ease);
        box-shadow: -20px 0 60px rgba(0,0,0,.4);
    }
    .nav.open { transform: translateX(0); }

    .nav-close {
        display: grid;
        place-items: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--bg-card);
        border: 1px solid var(--border);
        color: var(--text);
        z-index: 210;
    }
    .nav-close:active { transform: scale(.94); }
    .nav-close svg { width: 20px; height: 20px; }

    .nav > a,
    .nav .dropdown-toggle {
        display: flex;
        padding: 18px 4px;
        font-size: 18px;
        font-weight: 600;
        color: var(--text);
        border-radius: 0;
        border-bottom: 1px solid var(--border);
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: transparent;
    }
    .nav > a:hover,
    .nav .dropdown-toggle:hover { background: transparent; color: var(--accent); }

    .dropdown { width: 100%; position: static; }
    .dropdown .dropdown-toggle::after {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        opacity: .6;
        transition: transform .2s var(--ease);
        margin-right: 6px;
    }
    .dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        inset: auto !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: 0;
        padding: 8px 0 16px 0;
        margin: 0;
        background: transparent;
        min-width: 0;
        max-width: none;
        width: 100%;
    }
    .dropdown-menu a {
        display: block;
        padding: 14px 14px;
        font-size: 16px;
        font-weight: 500;
        color: var(--text);
        border-radius: var(--r-xs);
        border-left: 2px solid var(--border);
        margin-left: 4px;
    }
    .dropdown-menu a:active,
    .dropdown-menu a:hover { background: var(--bg-card); color: var(--accent); border-left-color: var(--accent); }
    .dropdown.mob-open .dropdown-menu { display: block; }
    .dropdown.mob-open .dropdown-toggle { color: var(--accent); }
    .dropdown.mob-open .dropdown-toggle::after {
        transform: rotate(-135deg);
        color: var(--accent);
    }

    /* Keep menu from scrolling the page behind */
    body.nav-open { overflow: hidden; }

    .burger { display: flex; }
    .hd-btns .btn-call { display: none; }
    .icon-btn { width: 36px; height: 36px; }
    .icon-btn svg { width: 16px; height: 16px; }
    .theme-toggle { width: 36px; height: 36px; }
    .hd-inner {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
    }
    .hd-btns { margin-left: auto; }
}

@media (max-width: 768px) {
    .num-grid { grid-template-columns: repeat(2, 1fr); }
    .niche-grid { grid-template-columns: repeat(3, 1fr); }
    .price-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-meta { grid-template-columns: 1fr; gap: 16px; }
    .step-row { grid-template-columns: 40px 1fr; }
    .step-row .badge { grid-column: 2; justify-self: start; }
}

@media (max-width: 480px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    .section-title { font-size: 28px; }
    .num-grid { grid-template-columns: 1fr; }
    .niche-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; }
    .brand-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 24px; }
    .price-card { padding: 32px 24px; }
    .btn { padding: 14px 22px; font-size: 14px; }
}

/* Voicyfy widget — recolour to brand lime, kill white loader halo ---- */
#wellcomeai-widget-button.wellcomeai-widget-button,
#wellcomeai-widget-button.wellcomeai-widget-button.wellcomeai-pulse-animation {
    background: var(--accent) !important;
    background-image: none !important;
    animation: none !important;
    box-shadow: 0 6px 18px rgba(195, 255, 54, 0.25) !important;
    border: 0 !important;
    outline: 0 !important;
}
#wellcomeai-widget-button .wellcomeai-pulse-ring { display: none !important; }
#wellcomeai-widget-button .wellcomeai-audio-bar-mini { background: var(--accent-ink) !important; }
/* Loader overlay sits above the button with a white halo — make it invisible */
#wellcomeai-loader-modal.wellcomeai-loader-modal {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    pointer-events: none !important;
    border-radius: 50% !important;
}
#wellcomeai-loader-modal .wellcomeai-loader { display: none !important; }
/* Open panel header: lime bg with dark text */
#wellcomeai-widget-container .wellcomeai-widget-header {
    background: var(--accent) !important;
    background-image: none !important;
    color: var(--accent-ink) !important;
}
#wellcomeai-widget-container .wellcomeai-widget-title,
#wellcomeai-widget-container .wellcomeai-widget-header * { color: var(--accent-ink) !important; fill: var(--accent-ink) !important; }
#wellcomeai-widget-container .wellcomeai-widget-header svg * { stroke: var(--accent-ink) !important; }

/* BLOG ARTICLE — main-page scale ----------------------------- */
.post-hero-img { aspect-ratio: 21/9; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); margin-top: 40px; }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.post-body { padding: 72px 0 96px; max-width: 1200px; margin: 0 auto; }
.post-body h2 {
    font-size: clamp(28px, 4vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin: 80px 0 24px;
}
.post-body h2:first-child { margin-top: 0; }
.post-body h2 .accent { color: var(--accent); }
.post-body h3 { font-size: clamp(18px, 1.4vw, 22px); font-weight: 700; margin: 24px 0 10px; letter-spacing: -0.01em; }
.post-body p { font-size: 16px; line-height: 1.7; color: var(--text); margin: 0; max-width: 820px; }
.post-body p + p { margin-top: 14px; }
.post-body strong { font-weight: 700; color: var(--text); }
.post-body ul, .post-body ol { padding-left: 22px; display: grid; gap: 10px; font-size: 16px; line-height: 1.65; margin: 14px 0; max-width: 820px; color: var(--text); }
.post-body blockquote {
    border-left: 4px solid var(--accent);
    background: var(--bg-card);
    padding: 24px 32px;
    border-radius: 0 var(--r) var(--r) 0;
    color: var(--text);
    font-style: italic;
    margin: 36px 0;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.55;
}
.post-section-img { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); margin: 44px 0; aspect-ratio: 21/7; }
.post-section-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.post-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 36px 0; }
.post-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 36px 0; }
.post-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 36px 0; }
.post-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px 28px;
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.post-mini-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.post-mini-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
.post-mini-card p { font-size: 14px; color: var(--text-mute); margin: 0; line-height: 1.55; max-width: none; }
.post-mini-card .num { font-family: 'Manrope',sans-serif; font-size: clamp(28px, 2.4vw, 36px); font-weight: 800; color: var(--accent); margin-bottom: 12px; line-height: 1; letter-spacing: -0.02em; }
.post-kpi { text-align: center; padding: 40px 24px; }
.post-kpi .val { font-family: 'Manrope',sans-serif; font-size: clamp(36px, 4vw, 56px); font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px; }
.post-kpi .val.p { color: var(--accent-2); }
.post-eyebrow { font-size: 12px; font-weight: 600; color: var(--text-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.post-eyebrow a { color: var(--accent); text-decoration: none; }
.post-eyebrow .sep { opacity: .4; }
.post-title {
    font-size: clamp(36px, 5vw, 80px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0 0 24px;
    max-width: 1200px;
    text-transform: none;
}
.post-title .accent { color: var(--accent); }
.post-lead { font-size: clamp(16px, 1.2vw, 20px); line-height: 1.55; color: var(--text-mute); max-width: 820px; margin: 0; }
@media (max-width: 900px) {
    .post-grid-3, .post-grid-2, .post-grid-4 { grid-template-columns: 1fr; }
    .post-body { padding: 48px 0 72px; max-width: 100%; }
    .post-hero-img { aspect-ratio: 16/9; }
    .post-section-img { aspect-ratio: 16/9; margin: 32px 0; }
    .post-body h2 { margin: 48px 0 18px; }
}

/* Cross-reference block ------------------------------------- */
.xref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.xref-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px 22px;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s var(--ease), transform .2s var(--ease), background-color .2s var(--ease);
    min-height: 120px;
}
.xref-card:hover { border-color: var(--accent); transform: translateY(-3px); background: var(--bg-card-h); }
.xref-card .xref-kind {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.xref-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    color: var(--text);
}
.xref-card.xref-prod .xref-kind { color: var(--accent); }
.xref-card.xref-prod:hover h3 { color: var(--accent); }
@media (max-width: 900px) {
    .xref-grid { grid-template-columns: 1fr; }
}
