/* =====================================================
   cloudeBOND — Main Stylesheet
   Connect. Engage. Grow.
   CRM ERP Product Website — Shivakarma Infotech Solutions
   ===================================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- CSS Custom Properties (Dark Theme — Default) ---- */
:root {
    /* Primary Palette */
    --cb-primary: #0a1628;
    --cb-primary-light: #132238;
    --cb-primary-mid: #1a3a5c;
    --cb-secondary: #0d2137;
    --cb-accent: #00d4ff;
    --cb-accent-dark: #0099cc;
    --cb-accent-glow: rgba(0, 212, 255, 0.15);
    --cb-accent2: #ff6b35;
    --cb-accent2-dark: #e55a27;
    --cb-accent3: #a855f7;
    --cb-success: #10b981;
    --cb-warning: #f59e0b;
    --cb-danger: #ef4444;
    /* Text */
    --cb-text: #e4eaf1;
    --cb-text-secondary: #8ea3b8;
    --cb-text-muted: #5a7189;
    --cb-heading: #ffffff;
    /* Background */
    --cb-bg: #060e1a;
    --cb-bg-card: #0d1b2a;
    --cb-bg-card-hover: #132a40;
    --cb-bg-elevated: #112233;
    --cb-bg-input: #0d1f33;
    --cb-bg-glass: rgba(13, 27, 42, 0.8);
    /* Borders */
    --cb-border: rgba(255,255,255,0.06);
    --cb-border-accent: rgba(0,212,255,0.25);
    --cb-border-hover: rgba(0,212,255,0.4);
    /* Shadows */
    --cb-shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --cb-shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --cb-shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --cb-shadow-glow: 0 0 30px rgba(0,212,255,0.12);
    /* Gradient */
    --cb-gradient: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0d2137 100%);
    --cb-gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #a855f7 100%);
    --cb-gradient-hero: linear-gradient(160deg, #060e1a 0%, #0a1f38 40%, #102a44 70%, #0d1b2a 100%);
    --cb-gradient-cta: linear-gradient(135deg, #00d4ff 0%, #0077cc 100%);
    --cb-gradient-warm: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    /* Typography */
    --cb-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --cb-font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    --cb-font-mono: 'JetBrains Mono', 'Consolas', monospace;
    /* Spacing */
    --cb-section-py: 100px;
    --cb-container-max: 1240px;
    --cb-radius-sm: 8px;
    --cb-radius-md: 12px;
    --cb-radius-lg: 20px;
    --cb-radius-xl: 28px;
    /* Transitions */
    --cb-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --cb-transition-fast: all 0.2s ease;
    --cb-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Navbar */
    --cb-nav-height: 72px;
}

/* ---- Light Theme ---- */
body.light-theme {
    --cb-primary: #ffffff;
    --cb-primary-light: #f8fafc;
    --cb-primary-mid: #e2e8f0;
    --cb-secondary: #f1f5f9;
    --cb-accent: #0077cc;
    --cb-accent-dark: #005fa3;
    --cb-accent-glow: rgba(0, 119, 204, 0.1);
    --cb-accent2: #ff6b35;
    --cb-accent3: #7c3aed;
    --cb-text: #1e293b;
    --cb-text-secondary: #475569;
    --cb-text-muted: #94a3b8;
    --cb-heading: #0a1628;
    --cb-bg: #ffffff;
    --cb-bg-card: #ffffff;
    --cb-bg-card-hover: #f8fafc;
    --cb-bg-elevated: #f1f5f9;
    --cb-bg-input: #f8fafc;
    --cb-bg-glass: rgba(255,255,255,0.9);
    --cb-border: rgba(0,0,0,0.08);
    --cb-border-accent: rgba(0,119,204,0.2);
    --cb-border-hover: rgba(0,119,204,0.35);
    --cb-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --cb-shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --cb-shadow-lg: 0 16px 64px rgba(0,0,0,0.1);
    --cb-shadow-glow: 0 0 30px rgba(0,119,204,0.08);
    --cb-gradient: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    --cb-gradient-hero: linear-gradient(160deg, #f8fafc 0%, #e0f2fe 40%, #f0f9ff 70%, #ffffff 100%);
    --cb-gradient-cta: linear-gradient(135deg, #0077cc 0%, #0055aa 100%);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--cb-font-body);
    background: var(--cb-bg);
    color: var(--cb-text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

a {
    color: var(--cb-accent);
    text-decoration: none;
    transition: var(--cb-transition-fast);
}

    a:hover {
        color: var(--cb-accent-dark);
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--cb-font-heading);
    color: var(--cb-heading);
    line-height: 1.25;
    font-weight: 700;
}

.cb-container {
    max-width: var(--cb-container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Preloader ---- */
.cb-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--cb-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .cb-preloader.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.cb-preloader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--cb-border);
    border-top-color: var(--cb-accent);
    border-radius: 50%;
    animation: cbSpin 0.8s linear infinite;
}

.cb-preloader-text {
    font-family: var(--cb-font-heading);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--cb-text-muted);
    text-transform: uppercase;
}

@keyframes cbSpin {
    to {
        transform: rotate(360deg);
    }
}


/* Logo Swich: Light Theme */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

/* Logo Swich Dark Theme Active */
body.dark-theme .logo-light {
    display: none;
}

body.dark-theme .logo-dark {
    display: block;
}
/* ============================================
   NAVBAR
   ============================================ */
.cb-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--cb-nav-height);
    z-index: 1000;
    background: var(--cb-bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--cb-border);
    transition: var(--cb-transition);
}

    .cb-navbar.scrolled {
        background: var(--cb-bg-glass);
        box-shadow: var(--cb-shadow-md);
    }

.cb-nav-inner {
    max-width: var(--cb-container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cb-nav-logo img, .cb-nav-logo svg {
    height: 56px;
    width: auto;
}

.cb-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin-top:16px;
}

    .cb-nav-links a {
        display: block;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 500;
        color: var(--cb-text-secondary);
        border-radius: var(--cb-radius-sm);
        transition: var(--cb-transition-fast);
        white-space: nowrap;
    }

        .cb-nav-links a:hover,
        .cb-nav-links a.active {
            color: var(--cb-accent);
            background: var(--cb-accent-glow);
        }

/* Dropdown */
.cb-nav-dropdown {
    position: relative;
}

.cb-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-md);
    box-shadow: var(--cb-shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--cb-transition-fast);
    z-index: 100;
}

.cb-nav-dropdown:hover .cb-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cb-nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: var(--cb-radius-sm);
}

    .cb-nav-dropdown-menu a:hover {
        background: var(--cb-accent-glow);
    }

/* Nav Actions */
.cb-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cb-theme-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cb-border);
    border-radius: 50%;
    background: transparent;
    color: var(--cb-text-secondary);
    cursor: pointer;
    font-size: 16px;
    transition: var(--cb-transition-fast);
}

    .cb-theme-toggle:hover {
        border-color: var(--cb-accent);
        color: var(--cb-accent);
    }

.cb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--cb-font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--cb-radius-sm);
    cursor: pointer;
    transition: var(--cb-transition);
    text-decoration: none;
    white-space: nowrap;
}

.cb-btn-primary {
    background: var(--cb-gradient-cta);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0,212,255,0.25);
}

    .cb-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,212,255,0.35);
        color: #ffffff;
    }

.cb-btn-outline {
    background: transparent;
    color: var(--cb-accent);
    border: 1.5px solid var(--cb-accent);
}

    .cb-btn-outline:hover {
        background: var(--cb-accent);
        color: #ffffff;
        transform: translateY(-2px);
    }

.cb-btn-warm {
    background: var(--cb-gradient-warm);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255,107,53,0.25);
}

    .cb-btn-warm:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255,107,53,0.35);
        color: #ffffff;
    }

.cb-btn-lg {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: var(--cb-radius-md);
}

.cb-btn-sm {
    padding: 7px 16px;
    font-size: 12px;
}

/* Mobile Toggle */
.cb-mobile-toggle {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--cb-text);
    cursor: pointer;
    font-size: 22px;
}

/* Mobile Menu */
.cb-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--cb-bg-card);
    z-index: 2000;
    padding: 24px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--cb-shadow-lg);
}

    .cb-mobile-menu.open {
        right: 0;
    }

.cb-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--cb-transition-fast);
}

    .cb-mobile-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.cb-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--cb-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--cb-text);
    font-size: 18px;
}

.cb-mobile-logo {
    margin-bottom: 32px;
}

    .cb-mobile-logo img, .cb-mobile-logo svg {
        height: 32px;
    }

.cb-mobile-nav {
    list-style: none;
}

    .cb-mobile-nav a {
        display: block;
        padding: 14px 16px;
        font-size: 15px;
        font-weight: 500;
        color: var(--cb-text-secondary);
        border-radius: var(--cb-radius-sm);
        border-bottom: 1px solid var(--cb-border);
    }

        .cb-mobile-nav a:hover {
            color: var(--cb-accent);
            background: var(--cb-accent-glow);
        }

.cb-mobile-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .cb-mobile-cta .cb-btn {
        width: 100%;
        justify-content: center;
    }

/* ============================================
   HERO SECTION
   ============================================ */
.cb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--cb-nav-height) + 60px) 0 80px;
    background: var(--cb-gradient-hero);
    overflow: hidden;
}

    .cb-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(0,212,255,0.06) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(168,85,247,0.04) 0%, transparent 60%);
        pointer-events: none;
    }

/* Animated grid background */
.cb-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--cb-border) 1px, transparent 1px), linear-gradient(90deg, var(--cb-border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
}

/* Floating orbs */
.cb-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: cbFloat 8s ease-in-out infinite;
}

.cb-hero-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(0,212,255,0.08);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.cb-hero-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(168,85,247,0.06);
    bottom: 20%;
    left: 10%;
    animation-delay: -3s;
}

.cb-hero-orb-3 {
    width: 150px;
    height: 150px;
    background: rgba(255,107,53,0.05);
    top: 50%;
    left: 60%;
    animation-delay: -5s;
}

@keyframes cbFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.cb-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cb-hero-text {
    max-width: 580px;
}

.cb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: var(--cb-accent-glow);
    border: 1px solid var(--cb-border-accent);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cb-accent);
    margin-bottom: 24px;
    animation: cbFadeInUp 0.6s ease both;
}

.cb-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--cb-success);
    border-radius: 50%;
    animation: cbPulse 2s ease infinite;
}

@keyframes cbPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.cb-hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--cb-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    animation: cbFadeInUp 0.6s ease 0.1s both;
}

.cb-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: cbFadeInUp 0.6s ease 0.2s both;
}

    .cb-hero h1 span {
        color: var(--cb-accent);
    }

.cb-hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--cb-text-secondary);
    margin-bottom: 36px;
    animation: cbFadeInUp 0.6s ease 0.3s both;
}

.cb-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: cbFadeInUp 0.6s ease 0.4s both;
}

.cb-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: cbFadeInUp 0.6s ease 0.5s both;
}

.cb-hero-stat-num {
    font-family: var(--cb-font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--cb-heading);
    display: block;
}

.cb-hero-stat-label {
    font-size: 13px;
    color: var(--cb-text-muted);
    margin-top: 4px;
}

/* Hero Dashboard Mock */
.cb-hero-visual {
    position: relative;
    animation: cbFadeInRight 0.8s ease 0.3s both;
}

.cb-dashboard-mock {
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-xl);
    padding: 24px;
    box-shadow: var(--cb-shadow-lg);
    position: relative;
    overflow: hidden;
}

    .cb-dashboard-mock::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--cb-gradient-accent);
    }

.cb-dash-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cb-border);
}

.cb-dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cb-dash-dot-r {
    background: #ef4444;
}

.cb-dash-dot-y {
    background: #f59e0b;
}

.cb-dash-dot-g {
    background: #10b981;
}

.cb-dash-title {
    font-size: 12px;
    color: var(--cb-text-muted);
    margin-left: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cb-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.cb-dash-stat-card {
    background: var(--cb-bg-elevated);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-md);
    padding: 14px;
    text-align: center;
}

.cb-dash-stat-icon {
    font-size: 20px;
    margin-bottom: 6px;
}

.cb-dash-stat-value {
    font-family: var(--cb-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--cb-heading);
}

.cb-dash-stat-label {
    font-size: 10px;
    color: var(--cb-text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cb-dash-chart {
    background: var(--cb-bg-elevated);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-md);
    padding: 16px;
    margin-bottom: 14px;
}

.cb-dash-chart-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--cb-text-secondary);
    margin-bottom: 12px;
}

.cb-dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.cb-dash-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--cb-accent);
    opacity: 0.7;
    animation: cbBarGrow 1s ease forwards;
    transform-origin: bottom;
}

@keyframes cbBarGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.cb-dash-bar:nth-child(1) {
    height: 45%;
    animation-delay: 0.6s;
}

.cb-dash-bar:nth-child(2) {
    height: 70%;
    animation-delay: 0.7s;
}

.cb-dash-bar:nth-child(3) {
    height: 55%;
    animation-delay: 0.8s;
}

.cb-dash-bar:nth-child(4) {
    height: 85%;
    animation-delay: 0.9s;
}

.cb-dash-bar:nth-child(5) {
    height: 65%;
    animation-delay: 1.0s;
}

.cb-dash-bar:nth-child(6) {
    height: 90%;
    animation-delay: 1.1s;
}

.cb-dash-bar:nth-child(7) {
    height: 75%;
    animation-delay: 1.2s;
}

.cb-dash-bar:nth-child(8) {
    height: 95%;
    animation-delay: 1.3s;
}

.cb-dash-activity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cb-dash-activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--cb-bg-elevated);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-sm);
    font-size: 11px;
    color: var(--cb-text-secondary);
}

.cb-dash-activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cb-success);
    flex-shrink: 0;
}

.cb-dash-activity-time {
    margin-left: auto;
    color: var(--cb-text-muted);
    font-size: 10px;
}

/* ============================================
   TICKER STRIP
   ============================================ */
.cb-ticker {
    background: var(--cb-bg-card);
    border-top: 1px solid var(--cb-border);
    border-bottom: 1px solid var(--cb-border);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.cb-ticker-track {
    display: flex;
    gap: 48px;
    animation: cbTicker 30s linear infinite;
}

.cb-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cb-text-secondary);
    flex-shrink: 0;
}

    .cb-ticker-item span {
        color: var(--cb-accent);
    }

@keyframes cbTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.cb-section {
    padding: var(--cb-section-py) 0;
    position: relative;
}

.cb-section-alt {
    background: var(--cb-bg-card);
}

.cb-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.cb-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--cb-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cb-section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.cb-section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cb-text-secondary);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.cb-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.cb-feature-card {
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-lg);
    padding: 32px;
    transition: var(--cb-transition);
    position: relative;
    overflow: hidden;
}

    .cb-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--cb-gradient-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .cb-feature-card:hover {
        border-color: var(--cb-border-accent);
        box-shadow: var(--cb-shadow-glow);
        transform: translateY(-4px);
    }

        .cb-feature-card:hover::before {
            transform: scaleX(1);
        }

.cb-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--cb-radius-md);
    background: var(--cb-accent-glow);
    border: 1px solid var(--cb-border-accent);
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--cb-transition);
}

.cb-feature-card:hover .cb-feature-icon {
    background: var(--cb-accent);
    color: #ffffff;
}

.cb-feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cb-feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cb-text-secondary);
}

.cb-feature-card .cb-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cb-accent);
}

    .cb-feature-card .cb-card-link::after {
        content: '→';
        transition: transform 0.2s;
    }

.cb-feature-card:hover .cb-card-link::after {
    transform: translateX(4px);
}

/* Module Grid (20-card layout) */
.cb-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.cb-module-card {
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-md);
    padding: 24px;
    transition: var(--cb-transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

    .cb-module-card:hover {
        border-color: var(--cb-border-accent);
        box-shadow: var(--cb-shadow-glow);
        transform: translateY(-3px);
    }

.cb-module-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.cb-module-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.cb-module-card p {
    font-size: 13px;
    color: var(--cb-text-secondary);
    line-height: 1.6;
}

.cb-module-card .cb-badge-new {
    display: inline-block;
    background: var(--cb-gradient-warm);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 6px;
    vertical-align: middle;
}

/* ============================================
   STATS ROW
   ============================================ */
.cb-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.cb-stat-block {
    text-align: center;
}

.cb-stat-number {
    font-family: var(--cb-font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--cb-accent);
    display: block;
}

.cb-stat-label {
    font-size: 14px;
    color: var(--cb-text-secondary);
    margin-top: 4px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cb-cta-banner {
    background: var(--cb-gradient);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-xl);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cb-cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 50% at 30% 20%, rgba(0,212,255,0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 70% 80%, rgba(168,85,247,0.06) 0%, transparent 60%);
    }

    .cb-cta-banner h2 {
        font-size: clamp(24px, 3vw, 36px);
        margin-bottom: 14px;
        position: relative;
    }

    .cb-cta-banner p {
        font-size: 16px;
        color: var(--cb-text-secondary);
        margin-bottom: 28px;
        position: relative;
    }

    .cb-cta-banner .cb-btn {
        position: relative;
    }

/* ============================================
   PRICING SECTION
   ============================================ */
.cb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.cb-pricing-card {
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-xl);
    padding: 40px 32px;
    transition: var(--cb-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

    .cb-pricing-card.popular {
        border-color: var(--cb-accent);
        box-shadow: var(--cb-shadow-glow);
    }

        .cb-pricing-card.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--cb-gradient-cta);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 16px;
            border-radius: 0 0 8px 8px;
            letter-spacing: 1px;
        }

.cb-pricing-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cb-pricing-desc {
    font-size: 13px;
    color: var(--cb-text-secondary);
    margin-bottom: 24px;
}

.cb-pricing-price {
    font-family: var(--cb-font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--cb-heading);
    margin-bottom: 4px;
}

    .cb-pricing-price span {
        font-size: 16px;
        font-weight: 400;
        color: var(--cb-text-muted);
    }

.cb-pricing-billing {
    font-size: 12px;
    color: var(--cb-text-muted);
    margin-bottom: 28px;
}

.cb-pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

    .cb-pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 0;
        font-size: 14px;
        color: var(--cb-text-secondary);
        border-bottom: 1px solid var(--cb-border);
    }

        .cb-pricing-features li:last-child {
            border-bottom: none;
        }

.cb-pricing-check {
    color: var(--cb-success);
    font-weight: 700;
}

.cb-pricing-card .cb-btn {
    width: 100%;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.cb-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.cb-faq-item {
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--cb-transition);
}

    .cb-faq-item.open {
        border-color: var(--cb-border-accent);
    }

.cb-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--cb-heading);
    font-family: var(--cb-font-body);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--cb-transition-fast);
}

    .cb-faq-q:hover {
        color: var(--cb-accent);
    }

.cb-faq-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: var(--cb-accent);
}

.cb-faq-item.open .cb-faq-arrow {
    transform: rotate(180deg);
}

.cb-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.cb-faq-item.open .cb-faq-a {
    max-height: 500px;
}

.cb-faq-a-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--cb-text-secondary);
}

/* ============================================
   DEMO / FORM
   ============================================ */
.cb-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cb-form-group {
    margin-bottom: 20px;
}

.cb-form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cb-text-secondary);
}

.cb-form-required {
    color: var(--cb-danger);
}

.cb-form-input,
.cb-form-select,
.cb-form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--cb-bg-input);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-sm);
    color: var(--cb-text);
    font-family: var(--cb-font-body);
    font-size: 14px;
    transition: var(--cb-transition-fast);
    outline: none;
}

    .cb-form-input:focus,
    .cb-form-select:focus,
    .cb-form-textarea:focus {
        border-color: var(--cb-accent);
        box-shadow: 0 0 0 3px var(--cb-accent-glow);
    }

.cb-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.cb-form-select {
    cursor: pointer;
}

.cb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cb-form-info-card {
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-lg);
    padding: 32px;
}

    .cb-form-info-card h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

.cb-form-info-list {
    list-style: none;
}

    .cb-form-info-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        font-size: 14px;
        color: var(--cb-text-secondary);
        border-bottom: 1px solid var(--cb-border);
    }

        .cb-form-info-list li:last-child {
            border-bottom: none;
        }

.cb-form-info-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Form success/error messages */
.cb-form-message {
    padding: 14px 20px;
    border-radius: var(--cb-radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: none;
}

    .cb-form-message.success {
        display: block;
        background: rgba(16,185,129,0.1);
        border: 1px solid rgba(16,185,129,0.3);
        color: var(--cb-success);
    }

    .cb-form-message.error {
        display: block;
        background: rgba(239,68,68,0.1);
        border: 1px solid rgba(239,68,68,0.3);
        color: var(--cb-danger);
    }

/* ============================================
   SOLUTIONS / INDUSTRY CARDS
   ============================================ */
.cb-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.cb-solution-card {
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--cb-transition);
}

    .cb-solution-card:hover {
        border-color: var(--cb-border-accent);
        transform: translateY(-4px);
        box-shadow: var(--cb-shadow-glow);
    }

.cb-solution-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cb-accent-glow);
    border: 1px solid var(--cb-border-accent);
    font-size: 32px;
}

.cb-solution-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cb-solution-card p {
    font-size: 14px;
    color: var(--cb-text-secondary);
    line-height: 1.7;
}

/* ============================================
   INTEGRATIONS
   ============================================ */
.cb-integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.cb-integration-card {
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--cb-transition);
}

    .cb-integration-card:hover {
        border-color: var(--cb-border-accent);
        box-shadow: var(--cb-shadow-glow);
    }

.cb-integration-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.cb-integration-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.cb-integration-card p {
    font-size: 12px;
    color: var(--cb-text-muted);
}

/* ============================================
   HOW IT WORKS / STEPS
   ============================================ */
.cb-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

    .cb-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: var(--cb-border);
        z-index: 0;
    }

.cb-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cb-step-num {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cb-bg-card);
    border: 2px solid var(--cb-accent);
    font-family: var(--cb-font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--cb-accent);
}

.cb-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.cb-step p {
    font-size: 13px;
    color: var(--cb-text-secondary);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.cb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.cb-testimonial-card {
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-lg);
    padding: 32px;
}

.cb-testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 16px;
}

.cb-testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--cb-text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.cb-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cb-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cb-gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.cb-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--cb-heading);
}

.cb-testimonial-role {
    font-size: 12px;
    color: var(--cb-text-muted);
}

/* ============================================
   AI SECTION
   ============================================ */
.cb-ai-section {
    position: relative;
    overflow: hidden;
}

    .cb-ai-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 50% at 80% 30%, rgba(168,85,247,0.06) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 20% 70%, rgba(0,212,255,0.05) 0%, transparent 60%);
    }

.cb-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cb-ai-visual {
    position: relative;
}

.cb-ai-brain {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    position: relative;
}

.cb-ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--cb-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 0 40px rgba(0,212,255,0.3);
    z-index: 2;
}

.cb-ai-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--cb-border-accent);
    border-radius: 50%;
    animation: cbAiRing 6s linear infinite;
}

.cb-ai-ring-1 {
    width: 140px;
    height: 140px;
    animation-duration: 8s;
}

.cb-ai-ring-2 {
    width: 200px;
    height: 200px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.cb-ai-ring-3 {
    width: 260px;
    height: 260px;
    animation-duration: 16s;
}

@keyframes cbAiRing {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.cb-ai-node {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cb-bg-card);
    border: 1px solid var(--cb-border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
}

.cb-ai-feature-list {
    list-style: none;
}

    .cb-ai-feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 0;
        border-bottom: 1px solid var(--cb-border);
    }

        .cb-ai-feature-list li:last-child {
            border-bottom: none;
        }

.cb-ai-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--cb-radius-sm);
    background: var(--cb-accent-glow);
    font-size: 18px;
}

.cb-ai-feature-text h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.cb-ai-feature-text p {
    font-size: 13px;
    color: var(--cb-text-secondary);
    line-height: 1.6;
}

/* ============================================
   COMPLIANCE BADGES
   ============================================ */
.cb-compliance-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--cb-text-muted);
    letter-spacing: 0.5px;
}

.cb-compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--cb-border);
    border-radius: 50px;
    background: var(--cb-bg-card);
}

.cb-compliance-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cb-success);
}

/* ============================================
   FOOTER (matching cloudeUNi style)
   ============================================ */
.cb-footer-pre {
    background: var(--cb-bg-card);
    border-top: 1px solid var(--cb-border);
    padding: 48px 0;
}

.cb-footer-pre-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.cb-footer-pre-text h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.cb-footer-pre-text p {
    font-size: 14px;
    color: var(--cb-text-secondary);
}

.cb-footer-pre-actions {
    display: flex;
    gap: 12px;
}

.cb-footer {
    background: var(--cb-primary);
    border-top: 1px solid var(--cb-border);
    padding: 60px 0 0;
}

.cb-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--cb-border);
}

.cb-footer-brand p {
    font-size: 14px;
    color: var(--cb-text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.cb-footer-brand .logo-light, .cb-footer-brand .logo-dark {
    height: 75px!important;
}
.PoweredByLogo .logo-light, .PoweredByLogo .logo-dark {
    height: 150px !important;
}



.cb-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .cb-footer-social a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--cb-border);
        color: var(--cb-text-secondary);
        font-size: 14px;
        transition: var(--cb-transition-fast);
    }

        .cb-footer-social a:hover {
            border-color: var(--cb-accent);
            color: var(--cb-accent);
            background: var(--cb-accent-glow);
        }

.cb-footer h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--cb-heading);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cb-footer-links {
    list-style: none;
    padding:0px;
}

    .cb-footer-links li {
        margin-bottom: 10px;
    }

    .cb-footer-links a {
        font-size: 13px;
        color: var(--cb-text-secondary);
    }

        .cb-footer-links a:hover {
            color: var(--cb-accent);
        }

.cb-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--cb-text-secondary);
}

.cb-footer-contact-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cb-footer-contact-item .botcinfo strong {
    display: block;
    font-size: 12px;
    color: #00b3ff;
}
/* ISO Certifications (matching cloudeUNi) */
.cb-footer-iso {
    padding: 32px 0;
    border-bottom: 1px solid var(--cb-border);
}

.cb-footer-iso-title {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--cb-text-muted);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cb-footer-iso-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cb-footer-iso-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 7px 14px;
    background: var(--cb-bg-elevated);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-md);
    text-decoration: none;
    transition: var(--cb-transition-fast);
    min-width: 220px;
}

    .cb-footer-iso-card:hover {
        border-color: var(--cb-border-accent);
        box-shadow: var(--cb-shadow-sm);
    }

.cb-footer-iso-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cb-accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .cb-footer-iso-icon img {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

.cb-footer-iso-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--cb-heading);
    line-height: 1.3;
}

.cb-footer-iso-sub {
    font-size: 11px;
    color: var(--cb-text-muted);
    font-weight: 400;
}

/* Footer Bottom */
.cb-footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: var(--cb-text-muted);
}

    .cb-footer-bottom a {
        color: var(--cb-text-secondary);
    }

        .cb-footer-bottom a:hover {
            color: var(--cb-accent);
        }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.cb-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .cb-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }

.cb-animate-delay-1 {
    transition-delay: 0.1s;
}

.cb-animate-delay-2 {
    transition-delay: 0.2s;
}

.cb-animate-delay-3 {
    transition-delay: 0.3s;
}

.cb-animate-delay-4 {
    transition-delay: 0.4s;
}

.cb-animate-delay-5 {
    transition-delay: 0.5s;
}

@keyframes cbFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cbFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cbFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cbScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Counter animation */
.cb-counter {
    display: inline-block;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.cb-back-top {
    position: fixed;
    bottom: 85px;
    right: 32px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cb-gradient-cta);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(0,212,255,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--cb-transition);
    z-index: 900;
}

    .cb-back-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .cb-back-top:hover {
        transform: translateY(-3px);
    }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .cb-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cb-hero-text {
        max-width: 100%;
    }

    .cb-hero-stats {
        justify-content: center;
    }

    .cb-hero-actions {
        justify-content: center;
    }

    .cb-hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .cb-form-section {
        grid-template-columns: 1fr;
    }

    .cb-ai-grid {
        grid-template-columns: 1fr;
    }

    .cb-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --cb-section-py: 64px;
        --cb-nav-height: 64px;
    }

    .cb-nav-links {
        display: none;
    }

    .cb-mobile-toggle {
        display: flex;
    }

    .cb-hero {
        min-height: auto;
        padding: calc(var(--cb-nav-height) + 40px) 0 60px;
    }

        .cb-hero h1 {
            font-size: clamp(28px, 6vw, 40px);
        }

    .cb-hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cb-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .cb-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

        .cb-steps::before {
            display: none;
        }

    .cb-features-grid,
    .cb-solutions-grid,
    .cb-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cb-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cb-pricing-grid {
        grid-template-columns: 1fr;
    }

    .cb-footer-top {
        grid-template-columns: 1fr;
    }

    .cb-cta-banner {
        padding: 40px 24px;
    }

    .cb-form-row {
        grid-template-columns: 1fr;
    }

    .cb-dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cb-footer-pre-inner {
        flex-direction: column;
        text-align: center;
    }

    .cb-footer-iso-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cb-hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .cb-hero-actions {
        flex-direction: column;
    }

        .cb-hero-actions .cb-btn {
            width: 100%;
        }

    .cb-modules-grid {
        grid-template-columns: 1fr;
    }

    .cb-integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.cb-text-accent {
    color: var(--cb-accent);
}

.cb-text-muted {
    color: var(--cb-text-muted);
}

.cb-text-center {
    text-align: center;
}

.cb-mt-0 {
    margin-top: 0;
}

.cb-mt-20 {
    margin-top: 20px;
}

.cb-mt-40 {
    margin-top: 40px;
}

.cb-mb-0 {
    margin-bottom: 0;
}

.cb-mb-20 {
    margin-bottom: 20px;
}

.cb-mb-40 {
    margin-bottom: 40px;
}

.cb-hidden {
    display: none !important;
}

.cb-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}


.wa-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px 12px 14px;
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .wa-float-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
        color: #fff;
        text-decoration: none;
    }

    .wa-float-btn svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }