:root {
    --cb-bg: #0b0f19;
    --cb-card-bg: rgba(17, 24, 39, 0.7);
    --cb-primary: #6366f1;
    --cb-primary-hover: #4f46e5;
    --cb-secondary: #a78bfa;
    --cb-text: #f3f4f6;
    --cb-text-muted: #9ca3af;
    --cb-border: rgba(255, 255, 255, 0.06);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cb-bg);
    color: var(--cb-text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navbar */
.cb-navbar {
    background-color: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cb-border);
    padding: 18px 0;
    transition: all 0.3s;
}

/* Navbar Logo */
.cb-logo {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cb-logo-img {
    height: 32px;
    width: auto;
    margin-right: 10px;
}

.cb-logo-icon {
    font-size: 26px;
}

.cb-nav-link {
    color: var(--cb-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    margin: 0 16px;
}

.cb-nav-link:hover {
    color: #fff;
}

.btn-cb-outline {
    border: 1px solid var(--cb-border);
    background: transparent;
    color: #fff;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cb-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-cb-primary {
    background: linear-gradient(135deg, var(--cb-primary), var(--cb-secondary));
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cb-primary:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    color: #fff;
}

/* Lang Switcher */
.cb-lang-btn {
    background: transparent;
    border: 1px solid var(--cb-border);
    color: var(--cb-text-muted);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.2s;
}

.cb-lang-btn.active {
    border-color: var(--cb-primary);
    color: #fff;
    background: rgba(99, 102, 241, 0.15);
}

/* Hero */
.cb-hero {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 40%);
}

.cb-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 40%, var(--cb-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cb-hero-desc {
    font-size: 18px;
    color: var(--cb-text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
}

.cb-hero-logo-container {
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.2));
}

.cb-hero-logo {
    width: 240px;
    height: auto;
}

/* Cards */
.cb-card {
    background: var(--cb-card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--cb-border);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s;
}

.cb-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.cb-card-icon {
    font-size: 32px;
    color: var(--cb-primary);
    margin-bottom: 20px;
}

.cb-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.cb-card-desc {
    font-size: 14px;
    color: var(--cb-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Pricing Card */
.cb-price-card {
    position: relative;
    overflow: hidden;
}

.cb-price-card.featured {
    border-color: var(--cb-primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.cb-price-tag {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--cb-secondary);
    margin-bottom: 16px;
}

.cb-price-value {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.cb-price-usd {
    font-size: 16px;
    color: var(--cb-text-muted);
    margin-bottom: 24px;
}

.cb-price-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.cb-price-feature-item {
    font-size: 14px;
    color: var(--cb-text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cb-price-feature-item i {
    color: #22c55e;
    font-size: 16px;
}

/* Form */
.form-control {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--cb-border);
    color: #fff !important;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--cb-primary);
    box-shadow: none;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--cb-text-muted);
    margin-bottom: 8px;
}

#contact .form-control::placeholder {
    color: #fff;
    opacity: 0.8;
}

/* Modal */
.modal-content {
    background-color: var(--cb-bg);
    border: 1px solid var(--cb-border);
    border-radius: 16px;
    color: var(--cb-text);
}

.modal-header {
    border-bottom: 1px solid var(--cb-border);
}

.modal-footer {
    border-top: 1px solid var(--cb-border);
}

@media (max-width: 991px) {
    .cb-hero {
        padding: 120px 0 60px 0;
        text-align: center;
    }

    .cb-hero-title {
        font-size: 40px;
    }

    .cb-hero-desc {
        margin: 0 auto 30px auto;
    }

    .cb-nav-container {
        display: none;
    }
}

/* Modal input overrides for home page */
.modal .form-control {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--cb-border) !important;
    color: #fff !important;
}

.modal .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--cb-primary) !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15) !important;
}

.modal .form-control::placeholder {
    color: #9ca3af !important;
}