:root {
    --primary-color: #3b82f6; 
    --secondary-color: #1e293b;
    --accent-color: #10b981; 
    --feature-blue: #60a5fa;
    --warning-bg: #fef3c7;
    --warning-text: #92400e;
}

html, body {
    overflow-x: hidden;
    height: 100%;
    scroll-behavior: auto !important;
}

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--secondary-color); 
    background-color: #fff; 
    padding-top: 180px; 
}

/* COMPLIANCE BANNER */
#compliance-banner {
    background-color: #1e293b;
    color: #cbd5e1;
    font-size: 0.7rem;
    z-index: 2000;
    transition: transform 0.5s ease-out;
    position: fixed;
    top: 0;
    width: 100%;
}

/* TOP UTILITY BAR */
.top-bar {
    background-color: #0f172a;
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
    position: fixed;
    top: 3rem;
    width: 100%;
    z-index: 1030;
    transition: top 0.5s ease-out;
}

.top-bar a { 
    color: #e2e8f0; 
    text-decoration: none; 
    margin-right: 20px; 
    transition: color 0.2s;
}

.top-bar a:hover { 
    color: #fff; 
}

/* MAIN NAVBAR */
.navbar { 
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: fixed;
    top: 6rem; 
    width: 100%;
    z-index: 1020;
    transition: top 0.5s ease-out;
    padding: 12px 0;
}

.navbar-brand { 
    font-weight: 800; 
    letter-spacing: -0.5px; 
    color: #0f172a; 
    font-size: 1.5rem; 
}

.navbar-brand .brand-logo {
    height: 60px;
    width: auto;
}

.nav-link { 
    font-weight: 600; 
    color: #475569 !important; 
    font-size: 0.95rem; 
    margin: 0 10px; 
    transition: color 0.2s;
}

.nav-link:hover { 
    color: var(--primary-color) !important; 
}

.btn-pulse { 
    animation: shadow-pulse 2s infinite; 
}

@keyframes shadow-pulse {
    0% { 
        box-shadow: 0 0 0 0px rgba(59, 130, 246, 0.5); 
    }
    100% { 
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); 
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
    border-bottom: 1px solid #cbd5e1;
}

.hero-contact-bar {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-pill {
    background: rgba(59, 130, 246, 0.1);
    color: #0f172a;
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.08);
}

.hero-pill a {
    color: inherit;
    text-decoration: none;
}

.hero-pill a:hover {
    text-decoration: underline;
}

/* Brand Grid */
.brand-grid { 
    margin: 40px 0; 
    background: white; 
    border-radius: 15px; 
    padding: 30px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); 
    border: 1px solid #eee; 
}

.brand-grid h6 { 
    font-size: 0.95rem; 
    font-weight: 700; 
    text-align: center; 
    margin-bottom: 20px; 
    color: #555; 
}

.brand-badge { 
    font-size: 0.8rem; 
    background: #f8fafc; 
    padding: 10px 18px; 
    border-radius: 8px; 
    margin: 5px; 
    color: #495057; 
    display: inline-block; 
    font-weight: 600; 
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.brand-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Issue Cards */
.issue-card {
    border-left: 4px solid var(--primary-color);
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: 0.2s;
    height: 100%;
}

.issue-card:hover { 
    transform: translateX(5px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.issue-icon { 
    color: #ef4444; 
    font-size: 1.2rem; 
    margin-right: 10px; 
}

/* Pricing & Service Cards */
.service-card, .pricing-card {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.service-card:hover, .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.pricing-header {
    background: #f8fafc;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.price-tag { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: var(--primary-color); 
}

.list-unstyled li { 
    margin-bottom: 10px; 
}

.list-unstyled li::before { 
    content: "✓"; 
    color: var(--accent-color); 
    font-weight: bold; 
    margin-right: 10px; 
}

/* FAQ Styling */
.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.1);
    font-weight: bold;
}

/* Form Styling */
.form-control { 
    padding: 12px; 
    border: 1px solid #e2e8f0; 
    background-color: #f8fafc; 
}

.form-control:focus { 
    background-color: #fff; 
    border-color: var(--primary-color); 
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); 
}

/* Footer */
footer { 
    background-color: #0f172a; 
    color: #94a3b8; 
}

footer a { 
    color: #cbd5e1; 
    text-decoration: none; 
    transition: color 0.2s;
}

footer a:hover { 
    color: #fff; 
    text-decoration: underline; 
}

@media (max-width: 991px) {
    .top-bar { 
        display: none; 
    }
    .navbar { 
        top: 30px; 
    }
    body { 
        padding-top: 80px; 
    }
    .hero-contact-bar,
    .hero-buttons {
        display: none !important;
    }
}

/* MOBILE NAV FIX */
@media (max-width: 991px) {
    .navbar { top: 4rem; }
    body { padding-top: 140px; }
}
