/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F8F9FA;
    color: #1A1A1A;
    line-height: 1.5;
}

/* ============================================ */
/* NAVIGATION BAR */
/* ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #E8ECEF;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #00A86B;
}

.nav-links a.active {
    color: #00A86B;
    font-weight: 600;
}

.login-btn {
    background: #0A1929;
    color: white !important;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
}

.login-btn:hover {
    background: #00A86B !important;
    color: #0A1929 !important;
}

/* ============================================ */
/* PAGE HEADER (for About, Solutions, etc.) */
/* ============================================ */
.page-header {
    padding: 140px 40px 60px;
    background: #0A1929;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================ */
/* HERO SECTION (Home page) */
/* ============================================ */
.hero {
    padding: 140px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #0A1929;
}

.hero-highlight {
    color: #00A86B;
}

.hero-left p {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 32px;
    max-width: 500px;
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */
.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #0A1929;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: #00A86B;
    color: #0A1929;
}

.btn-outline {
    border: 1px solid #CBD5E1;
    color: #1A1A1A;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: #00A86B;
    color: #00A86B;
}

/* ============================================ */
/* DASHBOARD MOCK (Home page) */
/* ============================================ */
.hero-right {
    flex: 1;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.08);
    border: 1px solid #E8ECEF;
}

.dashboard-mock {
    width: 100%;
    border-radius: 16px;
    background: white;
    padding: 16px;
}

.mock-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 12px;
}

.mock-tab {
    padding: 6px 14px;
    background: #F1F5F9;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.mock-tab.active {
    background: #0A1929;
    color: white;
}

.mock-chart {
    height: 120px;
    background: linear-gradient(90deg, #0A1929 0%, #00A86B 50%, #CBD5E1 100%);
    border-radius: 12px;
    margin-bottom: 16px;
}

.mock-stats {
    display: flex;
    gap: 12px;
}

.mock-stat {
    flex: 1;
    background: #F8F9FA;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.mock-stat small {
    display: block;
    font-size: 11px;
    font-weight: normal;
    color: #64748B;
    margin-top: 4px;
}

/* ============================================ */
/* SECTION STYLES (reusable) */
/* ============================================ */
.section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-white {
    background: #FFFFFF;
}

.section-light {
    background: #F8F9FA;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0A1929;
    margin-bottom: 16px;
    text-align: center;
}

.section-title span {
    color: #00A86B;
}

.section-subtitle {
    text-align: center;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 18px;
}

/* ============================================ */
/* FEATURES GRID (What We Move / Why Us) */
/* ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #E8ECEF;
    transition: all 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: #0A1929;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #4A5568;
    line-height: 1.6;
}

/* ============================================ */
/* TWO COLUMN LAYOUT (About page) */
/* ============================================ */
.two-column {
    display: flex;
    gap: 60px;
    align-items: center;
}

.two-column.reverse {
    flex-direction: row-reverse;
}

.col {
    flex: 1;
}

.col h2 {
    font-size: 32px;
    color: #0A1929;
    margin-bottom: 20px;
}

.col h2 span {
    color: #00A86B;
}

.col p {
    color: #4A5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

.image-col img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.15);
}

/* ============================================ */
/* ICON BOXES (About page values) */
/* ============================================ */
.icon-box {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.icon-box i {
    font-size: 28px;
    color: #00A86B;
    margin-top: 4px;
}

.icon-box h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.icon-box p {
    margin-bottom: 0;
    font-size: 14px;
}

/* ============================================ */
/* STATS GRID (About page numbers) */
/* ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    margin-top: 40px;
}

.stat-item {
    background: white;
    padding: 32px 20px;
    border-radius: 20px;
    border: 1px solid #E8ECEF;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #0A1929;
}

.stat-label {
    color: #64748B;
    font-size: 14px;
    margin-top: 8px;
}

/* ============================================ */
/* VALUES GRID (About page) */
/* ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 20px;
    border: 1px solid #E8ECEF;
}

.value-card i {
    font-size: 40px;
    color: #00A86B;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: #4A5568;
    font-size: 14px;
}

/* ============================================ */
/* PORTAL CARDS (Home page) */
/* ============================================ */
.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.portal-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #E8ECEF;
    text-align: center;
}

.portal-card.client {
    border-top: 4px solid #0A1929;
}

.portal-card.subbie {
    border-top: 4px solid #00A86B;
}

.portal-card h3 {
    font-size: 24px;
    margin: 16px 0;
}

.portal-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.portal-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.portal-features i {
    color: #00A86B;
    width: 20px;
}

.portal-btn {
    background: transparent;
    border: 1px solid #0A1929;
    color: #0A1929;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
}

.portal-btn:hover {
    background: #00A86B;
    border-color: #00A86B;
    color: #0A1929;
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */
.cta-section {
    background: #0A1929;
    border-radius: 32px;
    padding: 64px;
    text-align: center;
    margin: 80px 40px;
}

.cta-section h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-section p {
    color: #94A3B8;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: white;
    color: #0A1929;
}

.cta-section .btn-primary:hover {
    background: #00A86B;
    color: #0A1929;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer {
    background: #0A1929;
    color: #94A3B8;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #00A86B;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #1E2F3F;
    margin-top: 40px;
    font-size: 14px;
}

/* ============================================ */
/* RESPONSIVE (Mobile) */
/* ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-left p {
        margin: 0 auto 32px;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .two-column {
        flex-direction: column;
    }
    
    .two-column.reverse {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .portal-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 40px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        margin: 40px 20px;
        padding: 40px 20px;
    }
}