/* Palette: Navy Blue, Lime Green, White */
:root {
    --navy-blue: #1A237E;
    --lime-green: #CDDC39;
    --dark-blue: #0D1b2A;
    --light-grey: #F5F7FA;
    --text-color: #333333;
    --white: #ffffff;
    
    --font-main: 'Barlow', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--light-grey);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 4px; }

/* Header */
.hub-header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}
.lime { color: var(--lime-green); }
.chart-icon { font-size: 1.5rem; }

.corp-nav a {
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #555;
}
.corp-nav a:hover, .corp-nav a.active { color: var(--navy-blue); }

.btn-lime {
    background: var(--lime-green);
    color: var(--navy-blue) !important;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
}
.btn-lime:hover { background: var(--navy-blue); color: var(--lime-green) !important; }

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.bar { width: 30px; height: 3px; background: var(--navy-blue); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--navy-blue);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--white); cursor: pointer; }
.mobile-menu a { font-size: 2rem; color: var(--white); margin: 15px 0; font-weight: 700; }

@media (max-width: 900px) {
    .corp-nav { display: none; }
    .mobile-toggle { display: flex; }
}

/* Hero */
.hero-corp {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.blue-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}
.hero-content { color: var(--white); max-width: 800px; padding: 20px; }
.tagline {
    color: var(--lime-green);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ddd; }

.cta-group { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--lime-green); color: var(--navy-blue); padding: 15px 30px; border-radius: 4px; font-weight: 700; }
.btn-primary:hover { background: var(--white); }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 13px 30px; border-radius: 4px; font-weight: 700; }
.btn-outline:hover { background: var(--white); color: var(--navy-blue); }

/* Services */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; color: var(--navy-blue); margin-bottom: 15px; }
.lime-bar { width: 80px; height: 5px; background: var(--lime-green); margin: 0 auto; }
.lime-bar.left { margin: 20px 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.s-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}
.s-card:hover { transform: translateY(-10px); border-bottom-color: var(--lime-green); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.s-card h3 { color: var(--navy-blue); margin-bottom: 10px; font-size: 1.2rem; }
.s-card p { color: #666; font-size: 0.95rem; }

/* Stats Banner */
.stats-banner { background: var(--navy-blue); color: var(--white); padding: 60px 0; margin-top: 50px; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat-item strong { display: block; font-size: 3rem; font-weight: 700; color: var(--lime-green); line-height: 1; }
.stat-item span { font-size: 1rem; opacity: 0.8; }

/* About & Contact */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.text-col h1 { font-size: 2.8rem; color: var(--navy-blue); line-height: 1.2; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; color: #444; font-weight: 600; }
.check-list li::before { content: '✓'; color: var(--lime-green); position: absolute; left: 0; font-weight: bold; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--white); padding: 50px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-details h2 { color: var(--navy-blue); margin-bottom: 20px; }
.detail-item { margin-top: 30px; border-left: 4px solid var(--lime-green); padding-left: 15px; }
.detail-item strong { display: block; color: var(--navy-blue); font-size: 0.9rem; }

.hub-form h3 { color: var(--navy-blue); margin-bottom: 20px; }
.form-grp { margin-bottom: 20px; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.hub-form input, .hub-form select { width: 100%; padding: 15px; border: 1px solid #ddd; background: #f9f9f9; border-radius: 4px; font-family: var(--font-main); }
.btn-submit { width: 100%; background: var(--navy-blue); color: var(--white); border: none; padding: 15px; border-radius: 4px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--lime-green); color: var(--navy-blue); }

/* Testimonials & Legal */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: var(--white); padding: 30px; border-radius: 8px; border: 1px solid #eee; position: relative; }
.testi-card.active { border-color: var(--lime-green); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.quote { font-size: 4rem; color: var(--lime-green); position: absolute; top: 10px; right: 20px; opacity: 0.3; font-family: serif; }
.testi-card p { font-style: italic; color: #555; margin-bottom: 20px; position: relative; z-index: 1; }
.client strong { display: block; color: var(--navy-blue); }
.client span { font-size: 0.85rem; color: #888; }

.legal-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.legal-box h1 { color: var(--navy-blue); }
.legal-box h3 { color: var(--navy-blue); margin-top: 30px; }

/* Footer */
.hub-footer { background: var(--dark-blue); color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { color: var(--white); font-size: 1.5rem; margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: var(--lime-green); }
.copyright { text-align: center; font-size: 0.85rem; opacity: 0.7; }

/* Cookie */
.cookie-corp { position: fixed; bottom: 20px; left: 20px; background: var(--white); border-left: 5px solid var(--lime-green); padding: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 20px; z-index: 9999; display: none; }
.cookie-corp.active { display: flex; }
.cookie-corp button { background: var(--navy-blue); color: var(--white); border: none; padding: 8px 20px; font-weight: 700; cursor: pointer; border-radius: 4px; }

@media (max-width: 900px) {
    .corp-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .cta-group { flex-direction: column; }
    .grid-3, .about-grid, .contact-layout, .testi-grid, .stats-flex, .hub-form .form-row { grid-template-columns: 1fr; flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .stats-flex { gap: 30px; }
}