﻿:root {
    --primary-blue: #0052FF;
    --primary-gradient: linear-gradient(135deg, #0052FF 0%, #002D8E 100%);
    --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --dark-navy: #0A0F1D;
    --glass-bg: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

/* --- Layout Utils --- */
.section-padding {
    padding: 70px 0;
}

.fw-extra-bold {
    font-weight: 800;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

/* --- Navbar --- */
.nav-enterprise {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #eee;
    padding: 1.2rem 0;
}

.logo-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: -1px;
}

    .logo-brand span {
        color: #F59E0B;
    }

.nav-link {
    font-weight: 600;
    color: #444 !important;
    font-size: 0.95rem;
}

/* --- HERO (ENTERPRISE AI) --- */
.hero-advanced {
    position: relative;
    padding: 100px 0 120px;
    background: radial-gradient(800px circle at 10% 20%, rgba(59,130,246,0.12), transparent 40%), radial-gradient(700px circle at 90% 80%, rgba(245,158,11,0.12), transparent 45%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

    /* Subtle grid overlay (AI vibe) */
    .hero-advanced::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(to right, rgba(15,23,42,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(15,23,42,0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
        pointer-events: none;
    }


/* --- AI PILL BADGE --- */
.pill-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient( 135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65) );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(59,130,246,0.25);
    box-shadow: 0 10px 30px rgba(59,130,246,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
}


.badge-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient( 135deg, #2563eb, #1e40af );
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.15), 0 8px 20px rgba(37,99,235,0.45);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: linear-gradient( to right, #1e40af, #2563eb );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-visual-card {
    position: relative;
}

.glass-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

    .glass-stat-card i {
        font-size: 1.5rem;
    }

    .glass-stat-card h6 {
        margin-bottom: 0;
        font-weight: 800;
    }

.card-1 {
    top: 20px;
    left: -30px;
}

.card-2 {
    bottom: 40px;
    right: -20px;
}

/* --- Features --- */
.feature-box {
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-10px);
        border-color: var(--primary-blue);
        box-shadow: 0 20px 40px rgba(0, 82, 255, 0.05);
    }

.icon-gradient {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 16px;
    margin-bottom: 25px;
}

    .icon-gradient.gold {
        background: var(--gold-gradient);
    }

    .icon-gradient.purple {
        background: linear-gradient(135deg, #7C3AED 0%, #4C1D95 100%);
    }

/* --- Buttons --- */
.btn-primary-premium {
    background: var(--primary-gradient);
    color: white !important;
    border: none;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

    .btn-primary-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
    }

.btn-outline-premium {
    border: 2px solid #e0e0e0;
    font-weight: 700;
    border-radius: 12px;
}

/* --- Testimonials --- */
.testimonial-card {
    background: #f8fafc;
    padding: 60px;
    border-radius: 32px;
    text-align: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #F59E0B;
}

/* --- Footer --- */
.footer-premium {
    background: #fafafa;
    padding: 80px 0 30px;
    border-top: 1px solid #eee;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
}

    .footer-links a:hover {
        color: var(--primary-blue);
    }

.social-flex {
    display: flex;
    gap: 15px;
}

    .social-flex a {
        font-size: 1.4rem;
        color: #333;
    }

/* --- Workflow --- */
.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.step-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.3;
}


/* Integration Grid Visual */
.integration-grid {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-node {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 4px solid var(--primary-blue);
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.n1 {
    top: 10%;
    left: 20%;
    animation: float 3s infinite ease-in-out;
}

.n2 {
    top: 10%;
    right: 20%;
    animation: float 4s infinite ease-in-out;
}

.n3 {
    bottom: 10%;
    left: 20%;
    animation: float 5s infinite ease-in-out;
}

.n4 {
    bottom: 10%;
    right: 20%;
    animation: float 3.5s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Pricing Cards */
.pricing-card {
    border-radius: 24px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

    .pricing-card.scale-up {
        transform: scale(1.05);
        z-index: 10;
    }

.price-value .amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.price-value .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #F59E0B;
    color: white;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Security Icons */
.security-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Premium Feature Cards */
.premium-feature-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
    text-align: center;
}

    .premium-feature-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px -15px rgba(0, 102, 255, 0.1);
    }

.active-border {
    border: 2px solid var(--primary-blue);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    color: var(--primary-blue);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
    display: inline-block;
}

    .feature-checklist li {
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 8px;
        color: #4a5568;
    }

    .feature-checklist i {
        color: #10b981;
        margin-right: 8px;
    }

/* Table Styling */
.table thead th {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 1.5rem 1rem;
    font-size: 1rem;
}

/* ===== ENTERPRISE DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    width: 100%;
/*    margin: 4rem 0;*/
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569; /* slate-600 */
}


.info-badge {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: #e5e7eb;
}
