
:root {
    --g: #25a244;
    --g-dk: #1a7d34;
    --g-lt: #e8f7ed;
    --text: #0f1117;
    --muted: #5a6475;
    --border: #e4e8ef;
    --bg: #f6f8fc;
    --white: #ffffff;
    --orange: #f97316;
    --blue: #2563eb;
    --purple: #7c3aed;
    --teal: #0891b2;
    --red: #dc2626;
    --ai: #6d28d9;
    --shadow-s: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-m: 0 6px 24px rgba(0, 0, 0, .09);
    --shadow-l: 0 16px 48px rgba(0, 0, 0, .12);
    --r: 14px;
    --r-sm: 8px;
    --r-pill: 50px;
    --tr: all .28s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ?????????????????????????????????????????????
           UTILITY
        ????????????????????????????????????????????? */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--g-lt);
    color: var(--g-dk);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
}

    .section-label i {
        font-size: 11px;
    }

.grad-text {
    background: linear-gradient(135deg, var(--g) 0%, #1a7d34 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ?????????????????????????????????????????????
           ANNOUNCEMENT BAR
        ????????????????????????????????????????????? */
.announce-bar {
    background: var(--g-dk);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    letter-spacing: .3px;
}

    .announce-bar a {
        color: #86efac;
        font-weight: 700;
        text-decoration: none;
        margin-left: 8px;
    }

        .announce-bar a:hover {
            text-decoration: underline;
        }

/* ?????????????????????????????????????????????
           NAVBAR
        ????????????????????????????????????????????? */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

    .site-nav .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        height: 64px;
    }

    .site-nav .logo img {
        width: 86px;
    }

.nav-links-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .nav-links-row a {
        font-size: 14px;
        font-weight: 500;
        color: #1D1F20;
        border-radius: 8px;
        padding: 7px 14px;
        text-decoration: none;
        transition: var(--tr);
    }

        .nav-links-row a:hover {
            color: var(--g);
            background: var(--g-lt);
        }

.nav-btn-outline {
    border: 1.5px solid var(--g) !important;
    color: var(--g) !important;
    border-radius: var(--r-pill) !important;
    padding: 8px 22px !important;
    font-weight: 600 !important;
    transition: var(--tr);
}

    .nav-btn-outline:hover {
        background: var(--g) !important;
        color: #fff !important;
    }

.nav-btn-fill {
    background: var(--g) !important;
    color: #fff !important;
    border-radius: var(--r-pill) !important;
    padding: 8px 22px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(37, 162, 68, .25);
    transition: var(--tr);
}

    .nav-btn-fill:hover {
        background: var(--g-dk) !important;
        transform: translateY(-1px);
    }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text);
    cursor: pointer;
}

/* ?????????????????????????????????????????????
           HERO
        ????????????????????????????????????????????? */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--g) 0%, var(--g-dk) 100%);
    padding: 100px 24px 80px;
    text-align: center;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, .08);
        border-radius: 50%;
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 240px;
        height: 240px;
        background: rgba(255, 255, 255, .06);
        border-radius: 50%;
        pointer-events: none;
    }

@keyframes blobMove {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(60px, 40px) scale(1.15);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--r-pill);
    margin-bottom: 28px;
}

    .hero-badge .dot {
        width: 7px;
        height: 7px;
        background: #4ade80;
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.5);
    }
}

.hero h1 {
    font-size: clamp(36px, 6vw, 76px);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin: 0 auto 24px;
    max-width: 860px;
}

    .hero h1 .accent {
        background: linear-gradient(90deg, #bbf7d0, #4ade80);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255, 255, 255, .85);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--g), #1e8c3a);
    color: #fff;
    padding: 16px 38px;
    border-radius: var(--r-pill);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 28px rgba(37, 162, 68, .35);
    transition: var(--tr);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(37, 162, 68, .50);
        color: #fff;
    }

.btn-hero-secondary {
    background: var(--white);
    color: var(--text);
    padding: 16px 38px;
    border-radius: var(--r-pill);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: var(--tr);
    box-shadow: var(--shadow-s);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

    .btn-hero-secondary:hover {
        background: #f9fafb;
        color: var(--g);
        border-color: var(--g);
        transform: translateY(-2px);
    }

.hero .btn-hero-primary {
    background: #fff;
    color: var(--g-dk);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

    .hero .btn-hero-primary:hover {
        box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
        color: var(--g-dk);
    }

.hero .btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .45);
    box-shadow: none;
}

    .hero .btn-hero-secondary:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, .12);
        color: #fff;
    }

/* Stats row inside hero */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 40px;
    max-width: 840px;
    margin: 0 auto;
}

.hero-stat {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

    .hero-stat:last-child {
        border-right: none;
    }

.hero-stat-num {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    display: block;
}

.hero-stat-lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
}

/* ?????????????????????????????????????????????
           CATEGORY STICKY NAV
        ????????????????????????????????????????????? */
.cat-nav-wrap {
    position: sticky;
    top: 64px;
    z-index: 900;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.cat-nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 24px;
    max-width: 1280px;
    margin: 0 auto;
    scrollbar-width: none;
}

    .cat-nav::-webkit-scrollbar {
        display: none;
    }

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 11px 24px;
    border-radius: var(--r-pill);
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: var(--tr);
    text-decoration: none;
}

    .cat-pill .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
    }

    .cat-pill:hover,
    .cat-pill.active {
        color: var(--white);
        border-color: transparent;
        box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
    }

    .cat-pill[data-cat="crm"]:hover,
    .cat-pill[data-cat="crm"].active {
        background: var(--g);
    }

    .cat-pill[data-cat="marketing"]:hover,
    .cat-pill[data-cat="marketing"].active {
        background: var(--orange);
    }

    .cat-pill[data-cat="comms"]:hover,
    .cat-pill[data-cat="comms"].active {
        background: var(--blue);
    }

    .cat-pill[data-cat="ai"]:hover,
    .cat-pill[data-cat="ai"].active {
        background: var(--ai);
    }

    .cat-pill[data-cat="team"]:hover,
    .cat-pill[data-cat="team"].active {
        background: var(--purple);
    }

    .cat-pill[data-cat="commerce"]:hover,
    .cat-pill[data-cat="commerce"].active {
        background: var(--teal);
    }

    .cat-pill[data-cat="service"]:hover,
    .cat-pill[data-cat="service"].active {
        background: #ec4899;
    }

    /* dot colors */
    .cat-pill[data-cat="crm"] .dot {
        background: var(--g);
    }

    .cat-pill[data-cat="marketing"] .dot {
        background: var(--orange);
    }

    .cat-pill[data-cat="comms"] .dot {
        background: var(--blue);
    }

    .cat-pill[data-cat="ai"] .dot {
        background: var(--ai);
    }

    .cat-pill[data-cat="team"] .dot {
        background: var(--purple);
    }

    .cat-pill[data-cat="commerce"] .dot {
        background: var(--teal);
    }

    .cat-pill[data-cat="service"] .dot {
        background: #ec4899;
    }

/* ?????????????????????????????????????????????
           MODULES SECTION
        ????????????????????????????????????????????? */
.modules-area {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

.cat-section {
    margin-bottom: 80px;
    scroll-margin-top: 140px;
}

/* Category header */
.cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

    .cat-icon.crm {
        background: linear-gradient(135deg, #818cf8, #4f46e5);
    }

    .cat-icon.marketing {
        background: linear-gradient(135deg, #fb923c, #f97316);
    }

    .cat-icon.comms {
        background: linear-gradient(135deg, #60a5fa, #2563eb);
    }

    .cat-icon.ai {
        background: linear-gradient(135deg, #a78bfa, #7c3aed);
    }

    .cat-icon.team {
        background: linear-gradient(135deg, #4ade80, #22c55e);
    }

    .cat-icon.commerce {
        background: linear-gradient(135deg, #22d3ee, #0891b2);
    }

    .cat-icon.service {
        background: linear-gradient(135deg, #f472b6, #db2777);
    }

.cat-header-text h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.6px;
    margin: 0 0 4px;
}

.cat-header-text p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.cat-count {
    margin-left: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-pill);
    padding: 5px 16px;
    white-space: nowrap;
}

/* Module Cards Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.mod-card {
    background: var(--white);
    border: 1.5px solid #cbd5e1;
    border-radius: var(--r);
    padding: 24px 22px;
    transition: var(--tr);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

    .mod-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--r);
        opacity: 0;
        transition: var(--tr);
    }

    .mod-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
    }

    /* color accent on top edge */
    .mod-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: var(--r) var(--r) 0 0;
        transform: scaleX(0);
        transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    }

    .mod-card:hover::before {
        transform: scaleX(1);
    }

    /* card color variants */
    .mod-card.crm::before {
        background: var(--g);
    }

    .mod-card.marketing::before {
        background: var(--orange);
    }

    .mod-card.comms::before {
        background: var(--blue);
    }

    .mod-card.ai::before {
        background: var(--ai);
    }

    .mod-card.team::before {
        background: var(--purple);
    }

    .mod-card.commerce::before {
        background: var(--teal);
    }

    .mod-card.service::before {
        background: #ec4899;
    }

    .mod-card.crm:hover {
        border-color: #6366f1;
        background: #f5f3ff;
    }

    .mod-card.marketing:hover {
        border-color: #fb923c;
        background: #fff7ed;
    }

    .mod-card.comms:hover {
        border-color: #60a5fa;
        background: #eff6ff;
    }

    .mod-card.ai:hover {
        border-color: #a78bfa;
        background: #faf5ff;
    }

    .mod-card.team:hover {
        border-color: #4ade80;
        background: #f0fdf4;
    }

    .mod-card.commerce:hover {
        border-color: #22d3ee;
        background: #ecfeff;
    }

    .mod-card.service:hover {
        border-color: #f472b6;
        background: #fdf2f8;
    }

/* Icon chip */
.mod-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    flex-shrink: 0;
}

    .mod-icon.crm {
        background: linear-gradient(135deg, #818cf8, #4f46e5);
    }

    .mod-icon.marketing {
        background: linear-gradient(135deg, #fb923c, #f97316);
    }

    .mod-icon.comms {
        background: linear-gradient(135deg, #60a5fa, #2563eb);
    }

    .mod-icon.ai {
        background: linear-gradient(135deg, #a78bfa, #7c3aed);
    }

    .mod-icon.team {
        background: linear-gradient(135deg, #4ade80, #22c55e);
    }

    .mod-icon.commerce {
        background: linear-gradient(135deg, #22d3ee, #0891b2);
    }

    .mod-icon.service {
        background: linear-gradient(135deg, #f472b6, #db2777);
    }

.mod-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.mod-card.crm:hover .mod-body h3 {
    color: #4f46e5;
}

.mod-card.marketing:hover .mod-body h3 {
    color: #f97316;
}

.mod-card.comms:hover .mod-body h3 {
    color: #2563eb;
}

.mod-card.ai:hover .mod-body h3 {
    color: #7c3aed;
}

.mod-card.team:hover .mod-body h3 {
    color: #22c55e;
}

.mod-card.commerce:hover .mod-body h3 {
    color: #0891b2;
}

.mod-card.service:hover .mod-body h3 {
    color: #db2777;
}

.mod-body p {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

.mod-capabilities {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mod-cap-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mod-cap-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.mod-cap-item.prob .mod-cap-icon {
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #ffe4e6;
}

.mod-cap-item.sol .mod-cap-icon {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #dcfce7;
}

.mod-cap-item p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.mod-cap-item.sol p {
    color: #0f172a !important;
    font-weight: 700 !important;
}

.mod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.mod-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    letter-spacing: .6px;
    text-transform: uppercase;
}

    .mod-tag.crm {
        background: #dcfce7;
        color: #166534;
    }

    .mod-tag.marketing {
        background: #ffedd5;
        color: #9a3412;
    }

    .mod-tag.comms {
        background: #dbeafe;
        color: #1e3a8a;
    }

    .mod-tag.ai {
        background: #ede9fe;
        color: #4c1d95;
    }

    .mod-tag.team {
        background: #f3e8ff;
        color: #6b21a8;
    }

    .mod-tag.commerce {
        background: #cffafe;
        color: #155e75;
    }

    .mod-tag.service {
        background: #fee2e2;
        color: #991b1b;
    }

.mod-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--muted);
    transition: var(--tr);
}

.mod-card:hover .mod-arrow {
    color: #fff;
    border-color: transparent;
}

.mod-card.crm:hover .mod-arrow {
    background: var(--g);
}

.mod-card.marketing:hover .mod-arrow {
    background: var(--orange);
}

.mod-card.comms:hover .mod-arrow {
    background: var(--blue);
}

.mod-card.ai:hover .mod-arrow {
    background: var(--ai);
}

.mod-card.team:hover .mod-arrow {
    background: var(--purple);
}

.mod-card.commerce:hover .mod-arrow {
    background: var(--teal);
}

.mod-card.service:hover .mod-arrow {
    background: #ec4899;
}

/* NEW badge */
.badge-new {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(90deg, #6d28d9, #9333ea);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
}

.badge-hot {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(90deg, #f97316, #ef4444);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
}

/* ?????????????????????????????????????????????
           HOW IT CONNECTS (WORKFLOW DIAGRAM)
        ????????????????????????????????????????????? */
.connect-section {
    background: linear-gradient(160deg, #fff 0%, var(--g-lt) 50%, #fff 100%);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .connect-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(37, 162, 68, .1) 0%, transparent 65%);
        pointer-events: none;
    }

    .connect-section h2 {
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 900;
        color: var(--text);
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }

    .connect-section p {
        font-size: 17px;
        color: var(--muted);
        max-width: 560px;
        margin: 0 auto 60px;
        line-height: 1.7;
    }

.eco-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 50px auto 60px;
    position: relative;
}

.eco-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
    flex: 1;
}

    .eco-col.center-col {
        flex: 1.2;
        align-items: center;
    }

.eco-col-hdr {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--g);
    margin: 0 0 8px;
    font-weight: 800;
    text-align: center;
}

.eco-card {
    background: #fff;
    border: 1.5px solid var(--border);
    padding: 16px;
    border-radius: 12px;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

    .eco-card:hover {
        transform: translateX(4px);
        border-color: var(--g);
    }

    .eco-card.action:hover {
        transform: translateX(4px);
        border-color: #3b82f6;
    }

    .eco-card i {
        font-size: 18px;
        color: var(--g);
        width: 24px;
        text-align: center;
    }

    .eco-card.action i {
        color: #3b82f6;
    }

.eco-brain {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 2px solid var(--g);
    padding: 40px 24px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(37, 162, 68, 0.2);
    width: 100%;
}

    .eco-brain i.fa-brain {
        font-size: 48px;
        color: var(--g);
        margin-bottom: 16px;
        display: block;
    }

    .eco-brain h3 {
        color: #fff;
        font-size: 20px;
        margin: 0 0 8px;
        font-weight: 800;
    }

    .eco-brain p {
        color: #94a3b8;
        font-size: 14px;
        margin: 0;
        line-height: 1.5;
    }

.eco-arrows {
    width: 60px;
    height: 2px;
    background: var(--border);
    position: relative;
}

    .eco-arrows::after {
        content: '';
        position: absolute;
        top: -3px;
        left: 0;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--g);
        box-shadow: 0 0 10px var(--g);
        animation: flowDot 2s infinite linear;
    }

@keyframes flowDot {
    0% {
        left: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@media(max-width: 860px) {
    .eco-pipeline {
        flex-direction: column;
    }

    .eco-arrows {
        width: 2px;
        height: 40px;
    }

        .eco-arrows::after {
            top: 0;
            left: -3px;
            animation: flowDotV 2s infinite linear;
        }
}

@keyframes flowDotV {
    0% {
        top: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ?????????????????????????????????????????????
           COMPARISON TABLE (vs competitors)
        ????????????????????????????????????????????? */
.compare-section {
    background: var(--bg);
    padding: 100px 24px;
}

    .compare-section h2 {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 900;
        text-align: center;
        letter-spacing: -1.2px;
        margin-bottom: 12px;
    }

    .compare-section > p {
        text-align: center;
        color: var(--muted);
        font-size: 16px;
        margin-bottom: 48px;
    }

.compare-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--r);
    border: 1.5px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-m);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

    .compare-table th {
        background: var(--g-dk);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        padding: 16px 20px;
        text-align: center;
    }

        .compare-table th:first-child {
            text-align: left;
        }

        .compare-table th.kit19-col {
            color: #4ade80;
        }

    .compare-table td {
        padding: 14px 20px;
        font-size: 14px;
        color: var(--text);
        border-bottom: 1px solid var(--border);
    }

        .compare-table td:not(:first-child) {
            text-align: center;
        }

    .compare-table tr:last-child td {
        border-bottom: none;
    }

    .compare-table tr:nth-child(even) td {
        background: #f9fafb;
    }

    .compare-table .kit19-col {
        font-weight: 600;
    }

.chk {
    color: var(--g);
    font-size: 17px;
}

.xmark {
    color: #9ca3af;
    font-size: 17px;
}

.partial {
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
}

/* ?????????????????????????????????????????????
           PRICING CTA STRIP
        ????????????????????????????????????????????? */
.pricing-cta {
    background: linear-gradient(135deg, var(--g) 0%, var(--g-dk) 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .pricing-cta::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, .08);
        border-radius: 50%;
    }

    .pricing-cta::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 240px;
        height: 240px;
        background: rgba(255, 255, 255, .06);
        border-radius: 50%;
    }

    .pricing-cta h2 {
        font-size: clamp(28px, 4vw, 46px);
        font-weight: 900;
        color: #fff;
        letter-spacing: -1.5px;
        margin-bottom: 14px;
    }

    .pricing-cta p {
        font-size: 17px;
        color: rgba(255, 255, 255, .78);
        margin-bottom: 36px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

.btn-cta-white {
    background: #fff;
    color: var(--g-dk);
    font-size: 16px;
    font-weight: 800;
    padding: 15px 44px;
    border-radius: var(--r-pill);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .btn-cta-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
        color: var(--g-dk);
    }

.btn-cta-ghost {
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: var(--r-pill);
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, .45);
    margin-left: 14px;
    transition: var(--tr);
}

    .btn-cta-ghost:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, .12);
        color: #fff;
    }

/* ?????????????????????????????????????????????
           FOOTER
        ????????????????????????????????????????????? */
.site-footer {
    background: #f8fafc;
    padding: 50px 24px 28px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.footer-logo img {
    width: 80px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

    .footer-links a {
        color: var(--muted);
        font-size: 13px;
        text-decoration: none;
        transition: var(--tr);
    }

        .footer-links a:hover {
            color: var(--g);
        }

.footer-social {
    display: flex;
    gap: 14px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--white);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 15px;
        transition: var(--tr);
        text-decoration: none;
    }

        .footer-social a:hover {
            background: var(--g);
            border-color: var(--g);
            color: #fff;
        }

.footer-bottom {
    max-width: 1280px;
    margin: 20px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}

    .footer-bottom a {
        color: var(--text);
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: var(--g);
        }

/* ?????????????????????????????????????????????
           SEARCH BAR
        ????????????????????????????????????????????? */
.search-wrap {
    max-width: 520px;
    margin: -30px auto 0;
    position: relative;
    z-index: 10;
    padding: 0 24px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-pill);
    padding: 4px 6px 4px 20px;
    box-shadow: var(--shadow-m);
    transition: all 0.3s ease;
}

    .search-box:focus-within {
        border-color: var(--g);
        box-shadow: 0 0 15px rgba(37, 162, 68, .2);
        transform: scale(1.01);
    }

    .search-box i {
        color: var(--muted);
        font-size: 16px;
        margin-right: 10px;
    }

    .search-box input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 14px;
        font-family: 'Inter', sans-serif;
        color: var(--text);
        background: transparent;
        padding: 10px 0;
    }

        .search-box input::placeholder {
            color: #adb5bd;
        }

.search-btn {
    background: var(--g);
    color: #fff;
    border: none;
    border-radius: var(--r-pill);
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--tr);
}

    .search-btn:hover {
        background: var(--g-dk);
    }

/* ?????????????????????????????????????????????
           RESPONSIVE
        ????????????????????????????????????????????? */
@media (max-width: 992px) {
    .hero {
        padding: 70px 20px 60px;
    }

    .modules-area {
        padding: 50px 16px;
    }

    .modules-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .flow-nodes {
        gap: 6px;
    }

    .flow-node {
        width: 100px;
        padding: 16px 10px;
    }

        .flow-node i {
            font-size: 22px;
        }

    .flow-arrow {
        display: none;
    }

    .compare-section,
    .connect-section,
    .pricing-cta {
        padding: 60px 16px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat {
        border-right: none;
        padding: 12px 16px;
    }

    .modules-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mod-card {
        padding: 16px 14px;
    }

    .btn-cta-ghost {
        margin-left: 0;
        margin-top: 12px;
    }

    .nav-links-row {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }

    .cat-header {
        flex-wrap: wrap;
    }

    .cat-count {
        margin-left: 0;
    }

    .search-wrap {
        margin-top: -24px;
    }
}

@media (max-width: 380px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

/* card enter animation */
.mod-card {
    animation: cardIn .4s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cat-section .mod-card:nth-child(1) {
    animation-delay: .04s;
}

.cat-section .mod-card:nth-child(2) {
    animation-delay: .08s;
}

.cat-section .mod-card:nth-child(3) {
    animation-delay: .12s;
}

.cat-section .mod-card:nth-child(4) {
    animation-delay: .16s;
}

.cat-section .mod-card:nth-child(5) {
    animation-delay: .20s;
}

.cat-section .mod-card:nth-child(6) {
    animation-delay: .24s;
}

.cat-section .mod-card:nth-child(7) {
    animation-delay: .28s;
}

.cat-section .mod-card:nth-child(8) {
    animation-delay: .32s;
}

.cat-section .mod-card:nth-child(9) {
    animation-delay: .36s;
}

.cat-section .mod-card:nth-child(10) {
    animation-delay: .40s;
}

.cat-section .mod-card:nth-child(11) {
    animation-delay: .44s;
}

.cat-section .mod-card:nth-child(12) {
    animation-delay: .48s;
}

/* ??????????????????????????????????????????????
           TICKER BAR
        ?????????????????????????????????????????????? */
.ticker-outer {
    background: var(--g-lt);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.ticker-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 40px;
    padding: 0 20px;
}

.tick-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .tick-item i {
        color: var(--g);
        font-size: 11px;
    }



/* ??????????????????????????????????????????????
           CANVAS + HERO ENHANCEMENTS
        ?????????????????????????????????????????????? */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .45;
}

.hero {
    padding: 80px 24px 70px;
}

@keyframes blink {

    0%, 100% {
        border-color: #4ade80
    }

    50% {
        border-color: transparent
    }
}

.hero-float-cards {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 44px auto 0;
    max-width: 900px;
}

.hfc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: hfloat 4s ease-in-out infinite;
    cursor: default;
    transition: var(--tr);
    box-shadow: var(--shadow-s);
}

    .hfc:hover {
        background: var(--g-lt);
        transform: translateY(-4px) !important;
        border-color: var(--g);
    }

    .hfc:nth-child(2) {
        animation-delay: .5s
    }

    .hfc:nth-child(3) {
        animation-delay: 1s
    }

    .hfc:nth-child(4) {
        animation-delay: 1.5s
    }

    .hfc:nth-child(5) {
        animation-delay: 2s
    }

@keyframes hfloat {

    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.hfc-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.hfc-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.3;
}

    .hfc-text span {
        font-size: 17px;
        font-weight: 800;
        color: var(--text);
        display: block;
    }

/* ??????????????????????????????????????????????
           SOCIAL PROOF SCROLL
        ?????????????????????????????????????????????? */
.social-proof {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

    .social-proof .sp-label {
        text-align: center;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #adb5bd;
        margin-bottom: 20px;
    }

.logo-scroll-wrap {
    overflow: hidden;
    position: relative;
}

    .logo-scroll-wrap::before,
    .logo-scroll-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        z-index: 2;
        pointer-events: none;
    }

    .logo-scroll-wrap::before {
        left: 0;
        background: linear-gradient(to right, #fff, transparent);
    }

    .logo-scroll-wrap::after {
        right: 0;
        background: linear-gradient(to left, #fff, transparent);
    }

.logo-track {
    display: flex;
    gap: 44px;
    align-items: center;
    animation: logoScroll 24s linear infinite;
    width: max-content;
    padding: 0 20px;
}

    .logo-track:hover {
        animation-play-state: paused;
    }

@keyframes logoScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.logo-text {
    font-size: 15px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: -.3px;
    white-space: nowrap;
    transition: var(--tr);
}

    .logo-text:hover {
        color: #374151;
    }

/* ??????????????????????????????????????????????
           AI STUDIO SECTION
        ?????????????????????????????????????????????? */
.ai-studio {
    background: linear-gradient(160deg, #fff 0%, var(--g-lt) 40%, #fff 100%);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.ai-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 162, 68, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 162, 68, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.ai-blob1 {
    position: absolute;
    top: -200px;
    right: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 40, 217, .2) 0%, transparent 65%);
    pointer-events: none;
    animation: blobMove 14s ease-in-out infinite alternate;
}

.ai-blob2 {
    position: absolute;
    bottom: -180px;
    left: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(37, 162, 68, .15) 0%, transparent 65%);
    pointer-events: none;
    animation: blobMove 10s ease-in-out infinite alternate-reverse;
}

.ai-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ai-header {
    text-align: center;
    margin-bottom: 64px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(109, 40, 217, .1);
    border: 1px solid rgba(109, 40, 217, .2);
    color: var(--ai);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--r-pill);
    margin-bottom: 20px;
}

    .ai-badge .ai-dot {
        width: 7px;
        height: 7px;
        background: var(--ai);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

.ai-header h2 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -2px;
    line-height: 1.07;
    margin-bottom: 16px;
}

    .ai-header h2 .ai-grad {
        background: linear-gradient(90deg, var(--purple), var(--ai), var(--g));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.ai-header p {
    font-size: 17px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Bot Tabs */
.bot-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.bot-tab {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr);
    user-select: none;
    box-shadow: var(--shadow-s);
}

    .bot-tab i {
        font-size: 16px;
    }

.tab-label-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.tab-sub {
    font-size: 10px;
    font-weight: 700;
    opacity: 0.7;
    text-transform: uppercase;
    margin-top: 2px;
}

.bot-tab:hover {
    background: var(--g-lt);
    color: var(--g);
    border-color: var(--g);
}

.bot-tab[data-bot="chat"].active {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, .45);
}

.bot-tab[data-bot="voice"].active {
    background: linear-gradient(135deg, #f87171, #dc2626);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(220, 38, 38, .45);
}

.bot-tab[data-bot="mail"].active {
    background: linear-gradient(135deg, #fb923c, #f97316);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(249, 115, 22, .45);
}

.bot-tab[data-bot="followup"].active {
    background: linear-gradient(135deg, #6b21a8, #9333ea);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(147, 51, 234, .45);
}

.bot-tab[data-bot="whatsapp"].active {
    background: linear-gradient(135deg, #075E54, #25D366);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
}

/* Demo Grid */
.ai-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 28px;
    align-items: start;
}

@media(max-width:900px) {
    .ai-demo-grid {
        grid-template-columns: 1fr;
    }
}

/* Left panel */
.bot-info {
    padding: 4px;
}

.bot-big-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
}

    .bot-big-icon::after {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 22px;
        border: 1.5px solid rgba(255, 255, 255, .15);
    }

.bot-info h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.bot-info .bot-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.bot-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .bot-feats li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: var(--text);
    }

.bf-dot {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--g-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--g);
    flex-shrink: 0;
    margin-top: 1px;
}

.chips-hdr {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--muted);
    margin-bottom: 12px;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    opacity: 0.8;
}

.live-pulse {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.trigger-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.trigger-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .4px;
    transition: var(--tr);
    cursor: default;
}

    .trigger-chip:hover {
        background: var(--g-lt);
        color: var(--g);
        border-color: var(--g);
    }

    .trigger-chip i {
        font-size: 9px;
    }

/* Chat window */
.bot-chat-win {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-m);
}

.cwh {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: #f9fafb;
}

.cw-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

/* Premium Industry Mockups */
.ind-mockup {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1), 0 0 0 10px #f8fafc;
    border: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: var(--tr);
}

    .ind-mockup:hover {
        transform: translateY(-8px) rotate(1deg);
        box-shadow: 0 30px 80px rgba(0, 0, 0, .15), 0 0 0 10px #f8fafc;
    }

.ind-mock-bar {
    background: #f1f5f9;
    padding: 12px 18px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

    .ind-mock-bar span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

.imr {
    background: #ff5f56;
}

.imy {
    background: #ffbd2e;
}

.img {
    background: #27c93f;
}

.ind-chat {
    padding: 24px;
    background: #fff;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.ich {
    display: flex;
    gap: 12px;
    max-width: 85%;
    animation: chat-in 0.5s ease both;
}

    .ich.u {
        align-self: flex-end;
        flex-direction: row-reverse;
        max-width: 85%;
    }

.ich-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px;
}

.ich-b {
    background: #f1f5f9;
    padding: 12px 16px;
    border-radius: 18px;
    border-top-left-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    color: #1e293b;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .02);
}

.ich.u .ich-b {
    background: var(--g);
    color: #fff;
    border-radius: 18px;
    border-top-right-radius: 4px;
    border-top-left-radius: 18px;
    box-shadow: 0 4px 12px rgba(37, 162, 68, .2);
}

.ich-action {
    background: rgba(37, 162, 68, .05);
    border: 1px dashed var(--g);
    color: var(--g);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    animation: action-pop 0.5s ease both 1s;
}

@keyframes chat-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes action-pop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ind-metrics {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    background: #fafafa;
}

/* Ecosystem Glow */
.flow-node {
    transition: var(--tr);
}

    .flow-node:hover {
        transform: translateY(-5px);
        filter: drop-shadow(0 0 15px rgba(74, 222, 128, 0.4));
    }

.ltst {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* color: var(--text);
            } */

.cw-st {
    font-size: 11px;
    color: var(--g);
    display: flex;
    align-items: center;
    gap: 4px;
}

    .cw-st::before {
        content: '';
        width: 5px;
        height: 5px;
        background: var(--g);
        border-radius: 50%;
        display: inline-block;
        animation: pulse 2s ease-in-out infinite;
    }

.cw-dots {
    margin-left: auto;
    display: flex;
    gap: 5px;
}

    .cw-dots span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
    }

.cwd1 {
    background: #ef4444;
}

.cwd2 {
    background: #f59e0b;
}

.cwd3 {
    background: #22c55e;
}

.chat-msgs {
    padding: 18px;
    min-height: 280px;
    max-height: 360px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.msg {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    gap: 3px;
}

    .msg.user {
        align-self: flex-end;
        align-items: flex-end;
    }

    .msg.ai {
        align-self: flex-start;
        align-items: flex-start;
    }

.msg-b {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 12.5px;
    line-height: 1.55;
    white-space: pre-wrap;
}

.msg.user .msg-b {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    border-bottom-right-radius: 3px;
}

.msg.ai .msg-b {
    background: #f3f4f6;
    color: var(--text);
    border: 1px solid var(--border);
    border-bottom-left-radius: 3px;
}

.msg-t {
    font-size: 10px;
    color: var(--muted);
}

.typing-ind {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 14px;
    background: #f3f4f6;
    border-radius: 14px;
    border-bottom-left-radius: 3px;
    border: 1px solid var(--border);
    width: fit-content;
}

    .typing-ind span {
        width: 6px;
        height: 6px;
        background: var(--muted);
        border-radius: 50%;
        display: inline-block;
        animation: tdot .9s ease-in-out infinite;
    }

        .typing-ind span:nth-child(2) {
            animation-delay: .2s;
        }

        .typing-ind span:nth-child(3) {
            animation-delay: .4s;
        }

@keyframes tdot {

    0%, 80%, 100% {
        transform: scale(1);
        opacity: .4
    }

    40% {
        transform: scale(1.35);
        opacity: 1
    }
}

.action-toast {
    background: rgba(37, 162, 68, .12);
    border: 1px solid rgba(37, 162, 68, .3);
    border-radius: 9px;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11.5px;
    font-weight: 600;
    color: #4ade80;
    align-self: center;
    width: 100%;
    animation: toastIn .4s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.action-toast i {
    font-size: 14px;
}

.chat-in {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    background: #f9fafb;
}

    .chat-in input {
        flex: 1;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-pill);
        padding: 9px 14px;
        color: var(--text);
        font-size: 12px;
        font-family: 'Inter', sans-serif;
        outline: none;
    }

        .chat-in input::placeholder {
            color: #adb5bd;
        }

.chat-in-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--g);
    border: none;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    flex-shrink: 0;
}

    .chat-in-btn:hover {
        background: var(--g-dk);
        transform: scale(1.1);
    }

/* KB + Actions */
.kb-sec {
    margin-top: 80px;
    text-align: center;
}

    .kb-sec h3 {
        font-size: 26px;
        font-weight: 800;
        color: var(--text);
        letter-spacing: -1px;
        margin-bottom: 10px;
    }

    .kb-sec > p {
        font-size: 14px;
        color: var(--muted);
        max-width: 520px;
        margin: 0 auto 44px;
    }

.kb-vis {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.kb-node {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 16px 14px;
    text-align: center;
    width: 118px;
    transition: var(--tr);
    cursor: default;
    box-shadow: var(--shadow-s);
}

    .kb-node:hover {
        border-color: var(--ai);
        background: var(--g-lt);
        transform: translateY(-4px);
    }

    .kb-node i {
        font-size: 22px;
        margin-bottom: 7px;
        display: block;
        color: var(--ai);
    }

    .kb-node span {
        font-size: 10px;
        font-weight: 700;
        color: var(--muted);
        display: block;
        line-height: 1.3;
    }

.kb-arr {
    color: var(--border);
    font-size: 18px;
}

.kb-center {
    background: linear-gradient(135deg, rgba(109, 40, 217, .1), rgba(124, 58, 237, .05));
    border: 2px solid var(--ai);
    box-shadow: 0 0 36px rgba(109, 40, 217, .1);
    width: 144px;
}

    .kb-center i {
        color: var(--ai) !important;
    }

    .kb-center span {
        color: var(--ai) !important;
        font-size: 11px !important;
    }

.actions-sec {
    margin-top: 80px;
}

    .actions-sec h3 {
        font-size: 26px;
        font-weight: 800;
        color: var(--text);
        letter-spacing: -1px;
        text-align: center;
        margin-bottom: 8px;
    }

    .actions-sec > p {
        font-size: 14px;
        color: var(--muted);
        text-align: center;
        margin-bottom: 36px;
    }

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.ac-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 18px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: var(--tr);
    cursor: default;
    box-shadow: var(--shadow-s);
}

    .ac-card:hover {
        background: var(--g-lt);
        border-color: var(--g);
        transform: translateY(-3px);
    }

.ac-ic {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
}

.ac-tx h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 3px;
}

.ac-tx p {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}

/* ??????????????????????????????????????????????
           TESTIMONIALS
        ?????????????????????????????????????????????? */
.testi-sec {
    background: var(--bg);
    padding: 100px 24px;
}

.testi-in {
    max-width: 1280px;
    margin: 0 auto;
}

.testi-hdr {
    text-align: center;
    margin-bottom: 52px;
}

    .testi-hdr h2 {
        font-size: clamp(26px, 4vw, 42px);
        font-weight: 900;
        letter-spacing: -1.2px;
        margin-bottom: 10px;
    }

    .testi-hdr p {
        font-size: 15px;
        color: var(--muted);
    }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 18px;
}

.t-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

    .t-card::before {
        content: '"';
        position: absolute;
        top: 14px;
        right: 20px;
        font-size: 68px;
        color: var(--g-lt);
        font-family: Georgia, serif;
        line-height: 1;
    }

    .t-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-m);
        border-color: #c5d0dc;
    }

.t-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 2px;
}

.t-text {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted);
    font-style: italic;
}

.t-auth {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.t-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g), var(--g-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.t-nm {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.t-rl {
    font-size: 11px;
    color: var(--muted);
}

.t-src {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    margin-top: 3px;
}

.g-star {
    color: #ea4335;
    font-size: 10px;
}



/* ??????????????????????????????????????????????
           RESPONSIVE EXTRAS
        ?????????????????????????????????????????????? */
@media(max-width:768px) {
    .hero-float-cards {
        display: none;
    }

    .bot-tabs {
        gap: 7px;
    }

    .bot-tab {
        padding: 9px 14px;
        font-size: 12px;
    }

        .bot-tab span.tab-label-wrap {
            display: none;
        }

    .kb-vis {
        gap: 8px;
    }

    .kb-arr {
        display: none;
    }

    .actions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }
}

/* === SCROLL REVEAL === */
.sr {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}

    .sr.in {
        opacity: 1;
        transform: none;
    }

.sr-l {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .65s ease, transform .65s ease;
}

    .sr-l.in {
        opacity: 1;
        transform: none;
    }

.sr-r {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .65s ease, transform .65s ease;
}

    .sr-r.in {
        opacity: 1;
        transform: none;
    }

.sr-s {
    opacity: 0;
    transform: scale(.93);
    transition: opacity .5s ease, transform .5s ease;
}

    .sr-s.in {
        opacity: 1;
        transform: none;
    }

[data-d="1"] {
    transition-delay: .1s !important;
}

[data-d="2"] {
    transition-delay: .2s !important;
}

[data-d="3"] {
    transition-delay: .3s !important;
}

[data-d="4"] {
    transition-delay: .4s !important;
}

[data-d="5"] {
    transition-delay: .5s !important;
}

[data-d="6"] {
    transition-delay: .6s !important;
}

/* === FEATURED MODULE CARD === */
.mod-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 26px 24px;
}

    .mod-card.featured.crm {
        background: linear-gradient(135deg, #f0fdf4, #dcfce7);
        border-color: rgba(37, 162, 68, .3);
    }

    .mod-card.featured.marketing {
        background: linear-gradient(135deg, #fff7ed, #ffedd5);
        border-color: rgba(249, 115, 22, .3);
    }

    .mod-card.featured.comms {
        background: linear-gradient(135deg, #eff6ff, #dbeafe);
        border-color: rgba(37, 99, 235, .3);
    }

    .mod-card.featured.ai {
        background: linear-gradient(135deg, #faf5ff, #ede9fe);
        border-color: rgba(109, 40, 217, .3);
    }

    .mod-card.featured.team {
        background: linear-gradient(135deg, #fdf4ff, #f3e8ff);
        border-color: rgba(124, 58, 237, .3);
    }

    .mod-card.featured.commerce {
        background: linear-gradient(135deg, #ecfeff, #cffafe);
        border-color: rgba(8, 145, 178, .3);
    }

    .mod-card.featured.service {
        background: linear-gradient(135deg, #fff1f2, #fee2e2);
        border-color: rgba(220, 38, 38, .3);
    }

    .mod-card.featured .mod-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .mod-card.featured .mod-body h3 {
        font-size: 16px;
    }

    .mod-card.featured .mod-body p {
        font-size: 13px;
    }

    .mod-card.featured .mod-footer {
        border: none;
        padding: 0;
    }

    .mod-card.featured::before {
        height: 4px;
    }

    .mod-card.featured:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-l);
    }

.feat-stat {
    text-align: right;
    flex-shrink: 0;
}

    .feat-stat span {
        font-size: 26px;
        font-weight: 900;
        display: block;
        letter-spacing: -1px;
    }

    .feat-stat p {
        font-size: 11px;
        color: var(--muted);
        margin: 0;
    }

    .feat-stat.crm span {
        color: var(--g);
    }

    .feat-stat.marketing span {
        color: var(--orange);
    }

    .feat-stat.comms span {
        color: var(--blue);
    }

    .feat-stat.ai span {
        color: var(--ai);
    }

    .feat-stat.team span {
        color: var(--purple);
    }

    .feat-stat.commerce span {
        color: var(--teal);
    }

    .feat-stat.service span {
        color: var(--red);
    }

@media(max-width:640px) {
    .mod-card.featured {
        grid-column: span 1;
        grid-template-columns: 48px 1fr;
    }

    .feat-stat {
        display: none;
    }
}

/* === LOGO BADGE TILES === */
.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.logo-badge {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-s);
}

    .logo-badge img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

    .logo-badge:hover {
        transform: translateY(-4px);
        border-color: var(--g);
        box-shadow: var(--shadow-m);
    }

.logo-nm {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
    max-width: 72px;
    line-height: 1.3;
}

/* === INDUSTRY USE CASES === */
.industry-sec {
    background: var(--bg);
    padding: 100px 24px;
}

.industry-in {
    max-width: 1280px;
    margin: 0 auto;
}

.industry-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 28px 0 44px;
}

.ind-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr);
    user-select: none;
}

    .ind-tab:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
        color: var(--text);
    }

    .ind-tab.active {
        background: var(--g);
        color: #fff;
        border-color: var(--g);
        box-shadow: 0 8px 20px rgba(37, 162, 68, .3);
    }

    .ind-tab i {
        font-size: 14px;
    }

.industry-panel {
    display: none;
}

    .industry-panel.active {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 44px;
        align-items: center;
        animation: cardIn .4s ease both;
    }

@media(max-width:900px) {
    .industry-panel.active {
        grid-template-columns: 1fr;
    }
}

.ind-content h3 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    letter-spacing: -.8px;
    margin-bottom: 12px;
}

.ind-content > p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.ind-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.ind-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ind-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--g);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ind-step-tx strong {
    font-size: 14px;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}

.ind-step-tx p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.ind-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--g);
    color: #fff;
    padding: 12px 26px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--tr);
    box-shadow: 0 4px 14px rgba(37, 162, 68, .3);
}

    .ind-cta:hover {
        background: var(--g-dk);
        color: #fff;
        transform: translateY(-2px);
    }

.ind-mockup {
    background: var(--white);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-l);
    border: 1px solid var(--border);
}

.ind-mock-bar {
    display: flex;
    gap: 5px;
    margin-bottom: 14px;
}

    .ind-mock-bar span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
    }

.imr {
    background: #ef4444;
}

.imy {
    background: #f59e0b;
}

.img {
    background: #22c55e;
}

.ind-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ich {
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

    .ich.u {
        flex-direction: row-reverse;
    }

.ich-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.ich-b {
    background: #f3f4f6;
    border-radius: 10px;
    border-top-left-radius: 2px;
    padding: 8px 11px;
    font-size: 11.5px;
    color: var(--text);
    line-height: 1.5;
    max-width: 190px;
    border: 1px solid var(--border);
}

.ich.u .ich-b {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    border-radius: 10px;
    border-top-right-radius: 2px;
    color: #fff;
    border: none;
}

.ich-action {
    background: var(--g-lt);
    border: 1px solid rgba(37, 162, 68, .25);
    border-radius: 8px;
    padding: 8px 11px;
    font-size: 11px;
    font-weight: 600;
    color: var(--g-dk);
    text-align: center;
}

.ind-metrics {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.ind-m {
    flex: 1;
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 10px;
    text-align: center;
}

    .ind-m span {
        font-size: 17px;
        font-weight: 800;
        color: var(--g);
        display: block;
    }

    .ind-m p {
        font-size: 10px;
        color: var(--muted);
        margin: 0;
    }


/* === STARS FIX === */
.t-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

    .t-stars i {
        font-size: 13px;
    }

/* ??????????????????????????????????????????????
           TEAM & HR REDESIGN: SPOTLIGHT & ANIMATIONS
        ?????????????????????????????????????????????? */

/* CRM Flow Visualization */
.crm-viz {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, #f0fdf4, #f8fafc);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(37, 162, 68, .2);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.crm-flow-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-s);
    max-width: 280px;
    position: relative;
    z-index: 2;
    animation: slide-in-r 0.6s ease both;
}

    .crm-flow-step.s2 {
        animation-delay: 0.2s;
        align-self: center;
    }

    .crm-flow-step.s3 {
        animation-delay: 0.4s;
        align-self: flex-end;
        border-color: var(--g);
        background: var(--g-lt);
    }

    .crm-flow-step i {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 14px;
    }

.crm-flow-tx strong {
    font-size: 12px;
    display: block;
}

.crm-flow-tx span {
    font-size: 10px;
    color: var(--muted);
}

.crm-connector {
    position: absolute;
    width: 2px;
    background: dashed var(--border);
    height: 40px;
    left: 40px;
    z-index: 1;
}

/* Commerce Status Visualization */
.comm-viz {
    position: relative;
    height: 320px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Workforce Map Visualization (Team & HR) */
.wf-viz {
    position: relative;
    height: 320px;
    background: #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.wf-map-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(var(--g) 1px, transparent 1px);
    background-size: 20px 20px;
}

.pulse-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--g);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

    .pulse-dot::after {
        content: '';
        position: absolute;
        inset: -8px;
        border: 2px solid var(--g);
        border-radius: 50%;
        animation: pulse-ring 2s infinite;
    }

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.wf-float-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-s);
    animation: float-y 4s ease-in-out infinite;
    z-index: 5;
}

@keyframes float-y {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.wf-stat {
    background: var(--g-lt);
    padding: 15px 20px;
    border-radius: 14px;
    border: 1px solid rgba(37, 162, 68, .1);
    text-align: center;
}

    .wf-stat span {
        font-size: 24px;
        font-weight: 800;
        color: var(--g);
        display: block;
    }

    .wf-stat p {
        font-size: 11px;
        color: var(--muted);
        margin: 0;
        font-weight: 600;
    }

/* Case Study Area */
.team-cs-content h3 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--text);
}

.team-cs-content p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cs-metric-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-showcase {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--g);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--r-pill);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--tr);
    box-shadow: 0 4px 14px rgba(37, 162, 68, .3);
}

    .btn-showcase:hover {
        background: var(--g-dk);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 162, 68, .4);
    }

/* Marketing Drip Visualization */
.mkt-viz {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, #fff7ed, #fffaf5);
    border-radius: 16px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, .2);
}

.drip-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

    .drip-timeline::before {
        content: '';
        position: absolute;
        left: 19px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: dashed #fdba74;
    }

.drip-node {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    animation: drip-pop 0.5s ease both;
}

    .drip-node.d2 {
        animation-delay: 0.2s;
    }

    .drip-node.d3 {
        animation-delay: 0.4s;
    }

    .drip-node.d4 {
        animation-delay: 0.6s;
    }

.drip-ic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fdba74;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #f97316;
    box-shadow: var(--shadow-s);
}

.drip-node.active .drip-ic {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
}

.drip-tx {
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-s);
}

    .drip-tx strong {
        font-size: 12px;
        display: block;
    }

    .drip-tx span {
        font-size: 10px;
        color: var(--muted);
    }

@keyframes drip-pop {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* AI Viz: Brain & Actions */
.ai-viz-v2 {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(109, 40, 217, .2);
}

.ai-brain-node {
    width: 80px;
    height: 80px;
    background: var(--ai);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 0 40px rgba(109, 40, 217, .3);
    z-index: 10;
    animation: brain-pulse 2s infinite;
}

@keyframes brain-pulse {
    0% {
        box-shadow: 0 0 20px rgba(109, 40, 217, .3);
    }

    50% {
        box-shadow: 0 0 50px rgba(109, 40, 217, .5);
    }

    100% {
        box-shadow: 0 0 20px rgba(109, 40, 217, .3);
    }
}

.ai-orbit {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(109, 40, 217, .1);
    border-radius: 50%;
    animation: rotate-orbit 20s linear infinite;
}

@keyframes rotate-orbit {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.ai-sat {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--ai);
    box-shadow: var(--shadow-s);
    transform: translate(-50%, -50%);
}

/* Comm Hub Viz */
.comm-viz-v2 {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 99, 235, .2);
}

.hub-core {
    background: #2563eb;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: var(--shadow-m);
    z-index: 2;
}

.comm-beam {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, transparent, #2563eb, transparent);
    opacity: 0.3;
    width: 200px;
}

.order-status-track {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

    .order-status-track::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: #e2e8f0;
        z-index: 1;
    }

.status-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.status-ic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #94a3b8;
    transition: all 0.5s ease;
}

.status-node.active .status-ic {
    border-color: var(--g);
    color: var(--g);
    box-shadow: 0 0 15px rgba(37, 162, 68, .2);
    transform: scale(1.1);
}

.status-node.done .status-ic {
    background: var(--g);
    border-color: var(--g);
    color: #fff;
}

.status-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
}

.status-node.active .status-lbl {
    color: var(--text);
}

/* Service Ticket Visualization */
.svc-viz {
    position: relative;
    height: 320px;
    background: #fef2f2;
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
}

.ticket-card {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-m);
    border-left: 4px solid var(--red);
    margin-bottom: 12px;
    animation: card-pop 0.5s ease both;
}

.tk-hdr {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.tk-id {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
}

.tk-sla {
    font-size: 10px;
    font-weight: 700;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 4px;
}

.tk-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tk-meta {
    font-size: 11px;
    color: var(--muted);
}

@keyframes card-pop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes slide-in-r {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 44px;
    align-items: center;
}

@media(max-width:992px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 162, 68, .1);
    color: var(--g);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spotlight-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-m);
    position: relative;
    overflow: hidden;
}

/* Demo Form Section */
.demo-form-sec {
    padding: 100px 24px;
    background: #fff;
}

.demo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow-l);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .demo-card {
        grid-template-columns: 1fr;
    }
}

.demo-info {
    padding: 60px;
    background: #f8fafc;
    border-right: 1px solid var(--border);
}

    .demo-info h2 {
        font-size: 32px;
        font-weight: 800;
        margin: 20px 0;
        letter-spacing: -1px;
        color: var(--text);
    }

    .demo-info p {
        color: var(--muted);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

.demo-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .demo-perks li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text);
    }

    .demo-perks i {
        color: var(--g);
        font-size: 18px;
    }

.demo-form-box {
    padding: 60px;
}

.demo-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .form-grp {
        grid-column: span 2;
    }
}

.form-grp label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-ctrl {
    background: #f9fafb;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--tr);
    outline: none;
    width: 100%;
}

    .form-ctrl:focus {
        background: var(--white);
        border-color: var(--g);
        box-shadow: 0 0 0 4px var(--g-lt);
    }

.captcha-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.captcha-img-box {
    height: 48px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

    .captcha-img-box img {
        height: 100%;
        width: auto;
    }

.demo-submit-btn {
    background: var(--g);
    color: #fff !important;
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--tr);
    text-decoration: none;
    margin-top: 10px;
    width: 100%;
}

    .demo-submit-btn:hover {
        background: var(--g-dk);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(37, 162, 68, 0.2);
    }

.form-msg {
    font-size: 13px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 8px;
    min-height: 20px;
    display: block;
}

.demo-success {
    padding: 80px 40px;
    text-align: center;
    grid-column: span 2;
    background: #fff;
}

.success-icon {
    font-size: 64px;
    color: var(--g);
    margin-bottom: 24px;
}

.demo-success h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.demo-success p {
    color: var(--muted);
    margin-bottom: 32px;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr);
}

    .btn-outline:hover {
        border-color: var(--g);
        color: var(--g);
        background: var(--g-lt);
    }

/* Footer & Icons Refinement */
.site-footer {
    background: #f8fafc;
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-top-row {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.footer-logo img {
    height: 48px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 15px;
    transition: var(--tr);
}
.footer-links a:hover {
    color: var(--g);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: var(--shadow-s);
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-m);
    border-color: transparent;
}

.social-icon.facebook:hover { background: #1877f2; }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-icon.linkedin:hover { background: #0a66c2; }
.social-icon.youtube:hover { background: #ff0000; }

.footer-app-badge {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-app-badge a {
    display: inline-block;
    transition: var(--tr);
}

.footer-app-badge a:hover {
    transform: translateY(-2px);
}

.appimage {
    height: 40px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
    border: none;
    background: transparent;
}

.footer-bottom {
    width: 100%;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--tr);
}
.footer-bottom a:hover {
    color: var(--g);
}

@media (max-width: 768px) {
    .footer-inner {
        gap: 30px;
    }
    .footer-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-top-row {
        padding-bottom: 30px;
    }
    .footer-links, .footer-social, .footer-app-badge {
        justify-content: center;
    }
    .footer-links { gap: 15px; }
    .footer-app-badge { gap: 10px; }
    .appimage { height: 36px; }
}
