/* ---------- RESET & GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    background: #FFFFFF;
    color: #111827;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- TYPOGRAPHY (Premium) ---------- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.8rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #0A2647 0%, #1E3A5F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.accent {
    color: #F59E0B;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, #2C74B3, #F59E0B);
    border-radius: 4px;
}
.section-sub {
    font-size: 1.2rem;
    color: #4B5563;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ---------- COLOR VARIABLES ---------- */
:root {
    --primary-dark: #0A2647;
    --primary: #2C74B3;
    --primary-light: #E6F0FA;
    --accent: #F59E0B;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.02);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn i {
    margin-right: 8px;
}
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background: #1E5A8A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-outline-light:hover {
    background: white;
    color: var(--primary-dark);
}
.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ---------- HEADER (unchanged but keep) ---------- */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}
.logo a {
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-dark);
}
.logo-accent { color: var(--primary); }
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }
.mobile-nav-toggle { display: none; }
@media (max-width: 768px) {
    .mobile-nav-toggle { display: flex; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
    .mobile-nav-toggle span { width: 28px; height: 2px; background: var(--gray-900); }
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.active { left: 0; }
    .nav-list { flex-direction: column; align-items: center; gap: 1.5rem; }
}

/* ---------- HERO (Premium with two images) ---------- */
.hero {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-sub {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin: 1rem 0 1.5rem;
    max-width: 550px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}
.hero-trust i {
    color: var(--accent);
    margin-right: 6px;
}
.hero-image-stack {
    position: relative;
}
.hero-img-main {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}
.hero-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 50%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23F9FAFB"></path></svg>') repeat-x;
    background-size: 1200px 50px;
}
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-img-secondary { display: none; }
    h1 { font-size: 2.5rem; }
}

/* ---------- INDUSTRIES (Who We Help) ---------- */
.industries {
    background: var(--white);
}
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}
.industry-card {
    background: var(--gray-100);
    padding: 0.85rem 1.8rem;
    border-radius: 60px;
    font-weight: 500;
    color: var(--gray-800);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.industry-card i {
    font-size: 1.2rem;
    color: var(--primary);
}
.industry-card:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.industry-card:hover i {
    color: white;
}

/* ---------- SERVICES (with icons and images) ---------- */
.services {
    background: var(--gray-50);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.service-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}
.service-link {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.service-link:hover {
    text-decoration: underline;
}

/* ---------- ROLES (with search) ---------- */
.roles {
    background: white;
}
.roles-search {
    position: relative;
    max-width: 400px;
    margin: 2rem auto 0;
}
.roles-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}
.roles-search input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.2s;
}
.roles-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,116,179,0.1);
}
.roles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.role {
    background: var(--primary-light);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.role i {
    font-size: 1rem;
}
.role:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ---------- WHY US (Premium Grid) ---------- */
.why-us {
    background: var(--gray-50);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.why-item {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.why-icon {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ---------- PROCESS (with icons and images) ---------- */
.process {
    background: white;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}
.step {
    flex: 1;
    background: var(--gray-50);
    padding: 2rem 1.5rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.step-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.step-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* ---------- CASE STUDIES (with images) ---------- */
.case-studies {
    background: var(--gray-50);
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.case-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.case-card h3, .case-card p {
    padding: 0 1.5rem;
}
.case-card h3 {
    margin-top: 1.2rem;
}
.case-card p {
    padding-bottom: 1.5rem;
    color: var(--gray-600);
}

/* ---------- URGENT BANNER (with image) ---------- */
.urgent {
    background: linear-gradient(115deg, var(--primary-dark) 0%, #1E3A5F 100%);
    color: white;
}
.urgent-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.urgent-content {
    flex: 2;
}
.urgent-content h3 {
    font-size: 2.2rem;
    color: white;
}
.urgent-image {
    flex: 1;
}
.urgent-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* ---------- LEAD FORM (Premium Compact) ---------- */
.lead-section {
    background: white;
}
.lead-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}
.lead-sub {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-600);
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    font-family: inherit;
    transition: 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,116,179,0.1);
}
.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

/* ---------- FAQ (with icons) ---------- */
.faq {
    background: var(--gray-50);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}
.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.faq-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 4rem 0;
}
.final-cta h2 {
    color: white;
    font-size: 2.5rem;
}
.final-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.final-cta .btn-outline-light {
    border-color: white;
    color: white;
}
.final-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-dark);
}

/* ---------- FOOTER (unchanged) ---------- */
.site-footer {
    background: var(--gray-900);
    color: #9CA3AF;
    padding: 3rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
}
.footer-links a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid #1F2937;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* ---------- RESPONSIVE FIXES ---------- */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .section-title { font-size: 1.8rem; }
    .process-steps { flex-direction: column; }
    .urgent-banner { flex-direction: column; text-align: center; }
    .faq-grid { grid-template-columns: 1fr; }
    .hero-img-secondary { display: none; }
}