* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #0f172a;
    background: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── NAVIGATION ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #061096;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.nav-brand {
    font-size: 17px;
    font-weight: 700;
    color: #061096;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active { color: #061096; }
.nav-cta {
    background: #061096;
    color: white !important;
    padding: 9px 20px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
}
.nav-cta:hover { background: #040b6e; }
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #061096;
}

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 0.6rem 0;
    font-size: 15px;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── MESSAGES ── */
.messages { padding: 0 2rem; }
.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 0.75rem 0;
    font-size: 14px;
    font-weight: 500;
}
.message-success { background: #dcfce7; color: #166534; }
.message-error { background: #fee2e2; color: #991b1b; }
.message-info { background: #dbeafe; color: #1e40af; }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #030b5c 0%, #061096 60%, #0d1fa8 100%);
    color: white;
    padding: 5rem 2rem 4rem;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}
.hero h1 span { color: #93c5fd; }
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-white {
    background: white;
    color: #061096;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}
.btn-white:hover { background: #f0f4ff; }
.btn-ghost {
    background: transparent;
    color: white;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.35);
    display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-primary {
    background: #061096;
    color: white;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}
.btn-primary:hover { background: #040b6e; }
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}
.stat-num {
    font-size: 1.85rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, #030b5c 0%, #061096 60%, #0d1fa8 100%);
    color: white;
    padding: 4rem 2rem 3.5rem;
    text-align: center;
}
.page-hero .eyebrow { color: #93c5fd; margin-bottom: 0.75rem; }
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── SECTIONS ── */
.section { padding: 4.5rem 2rem; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-grey { background: #f8fafc; }
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #061096;
    margin-bottom: 0.6rem;
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.section-sub {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 560px;
}

/* ── SERVICE CARDS ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}
.service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s;
}
.service-card:hover { border-color: #061096; }
.service-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.service-title { font-size: 15px; font-weight: 700; margin-bottom: 0.5rem; }
.service-desc { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 1rem; }
.tag {
    display: inline-block;
    background: #e8eafc;
    color: #061096;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 4px;
    margin: 2px 2px 0 0;
}

/* ── PILLARS ── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}
.pillar {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
}
.pillar-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e8eafc;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.pillar-title { font-size: 14px; font-weight: 700; margin-bottom: 0.35rem; }
.pillar-desc { font-size: 13px; color: #64748b; line-height: 1.6; }

/* ── PROCESS ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
    align-items: start;
}
.process-step {
    display: flex;
    gap: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}
.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #061096;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 0.25rem; }
.step-desc { font-size: 13px; color: #64748b; line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band {
    background: #061096;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}
.cta-band h2 {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}
.cta-band p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #e8eafc;
    color: #061096;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.contact-value { font-size: 14px; font-weight: 600; color: #0f172a; margin-top: 2px; }
.contact-form-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
input, select, textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    font-size: 14px;
    font-family: inherit;
    color: #0f172a;
    background: #f8fafc;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #061096;
    background: white;
}
textarea { resize: vertical; min-height: 100px; }
.form-submit {
    width: 100%;
    background: #061096;
    color: white;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.form-submit:hover { background: #040b6e; }

/* ── CAREERS ── */
.job-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.job-title { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 0.25rem; }
.job-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 0.35rem; }
.job-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: #e8eafc;
    color: #061096;
}
.job-badge.remote { background: #dcfce7; color: #166534; }
.job-desc { font-size: 14px; color: #64748b; line-height: 1.7; margin-bottom: 1rem; }
.job-list { padding-left: 1.25rem; margin-bottom: 1rem; }
.job-list li { font-size: 13px; color: #475569; margin-bottom: 0.35rem; line-height: 1.6; }
.job-apply-btn {
    display: inline-block;
    background: #061096;
    color: white;
    padding: 9px 20px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
}
.job-apply-btn:hover { background: #040b6e; }

/* ── APPLICATION FORM ── */
.apply-form-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}
.apply-form-box h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.apply-form-box p { font-size: 14px; color: #64748b; margin-bottom: 1.5rem; }

/* ── PRIVACY PAGE ── */
.prose { max-width: 700px; margin: 0 auto; }
.prose h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 0.75rem; color: #0f172a; }
.prose p, .prose li { font-size: 15px; color: #475569; line-height: 1.8; margin-bottom: 0.75rem; }
.prose ul { padding-left: 1.5rem; }
.prose a { color: #061096; }

/* ── FOOTER ── */
footer {
    background: #020820;
    color: rgba(255,255,255,0.55);
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 13px;
}
.footer-brand { font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 0.5rem; }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: white; }
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.5rem 0;
}
.footer-social a { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-social a:hover { color: white; }
.footer-copy { margin-top: 0.75rem; font-size: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 1.8rem; }
    .two-col { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-mobile-toggle { display: block; }
    .job-header { flex-direction: column; }
}
