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

:root {
    --navy: #1a1469;
    --navy-dark: #0d0b38;
    --teal: #3eb1c8;
    --teal-light: #a4dbe8;
    --orange: #FF8674;
    --white: #ffffff;
    --gray-50: #f8fafd;
    --gray-text: #64748b;
    --border: rgba(26, 20, 105, 0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(13, 27, 61, 0.08);
    box-shadow: 0 2px 20px rgba(13,27,61,0.06);
    transition: box-shadow 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }

.nav-logo-line1 {
    font-size: 23px; font-weight: 800;
    letter-spacing: -0.3px;
    color: #0D1B3D;
}

.nav-logo-line2 {
    font-size: 11px; font-weight: 600;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: #6B7280;
}

.nav-links {
    display: flex; align-items: center;
    gap: 36px; list-style: none;
}

.nav-links a {
    color: rgba(13, 27, 61, 0.55);
    text-decoration: none;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: #00A3B5; }

.nav-cta-btn {
    background: var(--orange) !important;
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.nav-cta-btn:hover { background: #e06455 !important; color: white !important; }

/* ===== HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #0d0b38 0%, #1a1469 55%, #1a3470 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 48px 90px;
    overflow: hidden;
    min-height: 420px;
}

.page-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
}

.page-hero-content { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; width: 100%; }

.page-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(62,177,200,0.3);
    background: rgba(62,177,200,0.08);
    border-radius: 100px; padding: 9px 20px;
    margin-bottom: 24px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--teal);
}

.page-hero h1 {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 900; color: white;
    line-height: 1.08; letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.page-hero h1 .hl { color: var(--teal); }

.page-hero-sub {
    font-size: 16px; font-weight: 400;
    color: rgba(255,255,255,0.5);
    max-width: 540px; line-height: 1.8;
}

/* ===== SECTION BASE ===== */
.section { padding: 130px 48px; }
.container { max-width: 1140px; margin: 0 auto; }

.section-eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 20px;
}

.section-title {
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 800; color: var(--navy);
    line-height: 1.1; letter-spacing: -0.5px;
    margin-bottom: 22px;
}

.section-sub {
    font-size: 17px; color: var(--gray-text);
    max-width: 580px; line-height: 1.8;
    margin-bottom: 72px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange);
    color: white; text-decoration: none;
    padding: 16px 36px; border-radius: 8px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: all 0.25s;
    border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover {
    background: #e5705e; transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 134, 116, 0.35);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.service-card {
    background: white; border: 1px solid var(--border);
    border-radius: 16px; padding: 40px 28px;
    transition: all 0.3s; position: relative; overflow: hidden;
}

.service-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--teal));
    opacity: 0; transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(26,20,105,0.1);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(26,20,105,0.06), rgba(62,177,200,0.1));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
    font-size: 14px; font-weight: 700;
    color: var(--navy); margin-bottom: 12px; line-height: 1.35;
}
.service-card p { font-size: 13px; color: var(--gray-text); line-height: 1.7; }

/* ===== WHO WE SERVE ===== */
.who-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
}

.who-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.tag {
    background: var(--gray-50);
    border: 1.5px solid rgba(62,177,200,0.3);
    color: var(--navy); padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px; font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.tag-more {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    transition: all 0.2s;
}
.tag-more:hover {
    background: #e06455;
    border-color: #e06455;
    transform: translateY(-1px);
}

.who-card {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3470 100%);
    border-radius: 24px; padding: 56px 48px;
    color: white; max-width: 440px; width: 100%;
}

.who-card-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 28px;
}

.who-card h3 {
    font-size: 22px; font-weight: 800;
    margin-bottom: 16px; line-height: 1.25;
}
.who-card h3 span { color: var(--teal); }

.who-card p {
    font-size: 14px; color: rgba(255,255,255,0.55);
    line-height: 1.8; margin-bottom: 28px;
}

.who-check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.who-check-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500;
}

.check-dot {
    width: 20px; height: 20px;
    background: rgba(62,177,200,0.15);
    border: 1.5px solid var(--teal);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ===== WHY DIFFERENT ===== */
.pillars-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillar {
    background: white; border: 1px solid var(--border);
    border-radius: 16px; padding: 44px 36px;
    position: relative; overflow: hidden;
}

.pillar-num {
    font-size: 72px; font-weight: 900;
    color: rgba(26,20,105,0.04);
    position: absolute; top: 12px; right: 20px;
    line-height: 1; letter-spacing: -4px;
}

.pillar-icon {
    width: 54px; height: 54px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.pi-1 { background: rgba(26,20,105,0.07); }
.pi-2 { background: rgba(62,177,200,0.1); }
.pi-3 { background: rgba(255,134,116,0.1); }

.pillar h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.pillar p { font-size: 14px; color: var(--gray-text); line-height: 1.75; }

/* ===== CONTACT PLAIN ===== */
.contact-plain {
    display: flex; flex-direction: column;
    gap: 14px; margin-top: 36px;
}
.contact-plain p {
    font-size: 17px; font-weight: 500;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}
.contact-plain a {
    color: rgba(255,255,255,0.8);
    text-decoration: none; transition: color 0.2s;
}
.contact-plain a:hover { color: #00A3B5; }

/* ===== TRUST BAND ===== */
.trust-band {
    background: linear-gradient(135deg, #0d0b38 0%, #1a1469 100%);
    padding: 56px 48px;
}

.trust-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}

.trust-left h2 { font-size: 24px; font-weight: 800; color: white; margin-bottom: 6px; }
.trust-left p { font-size: 13px; color: rgba(255,255,255,0.45); }

.trust-items { display: flex; gap: 28px; flex-wrap: wrap; }

.trust-item {
    display: flex; align-items: center; gap: 9px;
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.65);
}

.trust-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; }

/* ===== CONTACT ===== */
.contact-section {
    background: var(--navy-dark);
    padding: 100px 48px;
}

.contact-layout {
    max-width: 1140px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-section .section-title { color: white; }
.contact-section .section-sub { color: rgba(255,255,255,0.4); margin-bottom: 0; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }

.contact-detail { display: flex; align-items: flex-start; gap: 14px; }

.cd-icon {
    width: 42px; height: 42px;
    background: rgba(62,177,200,0.1);
    border: 1px solid rgba(62,177,200,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.cd-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 3px;
}

.cd-value { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }
.cd-value a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.cd-value a:hover { color: var(--teal); }

/* ===== FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fg { display: flex; flex-direction: column; gap: 7px; }

.fg label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.fg input, .fg textarea, .fg select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: white; padding: 13px 16px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 500;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
    border-color: var(--teal);
    background: rgba(62,177,200,0.05);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.22); }
.fg select option { background: #1a1469; }
.fg textarea { resize: vertical; min-height: 110px; }

.form-submit {
    font-family: 'Montserrat', sans-serif;
    background: var(--orange); color: white; border: none;
    padding: 15px 36px; border-radius: 8px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    cursor: pointer; transition: all 0.25s;
    align-self: flex-start;
}
.form-submit:hover { background: #e5705e; transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
    background: #06051e; padding: 32px 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
    font-size: 12px; color: rgba(255,255,255,0.3);
    text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

/* ===== PROSE (legal pages) ===== */
.prose {
    max-width: 800px; margin: 0 auto;
    padding: 100px 48px;
    color: var(--navy);
}
.prose h2 { font-size: 22px; font-weight: 800; margin: 40px 0 12px; color: var(--navy); }
.prose h3 { font-size: 16px; font-weight: 700; margin: 28px 0 8px; color: var(--navy); }
.prose p { font-size: 15px; color: var(--gray-text); line-height: 1.8; margin-bottom: 16px; }
.prose ul { padding-left: 22px; margin-bottom: 16px; }
.prose li { font-size: 15px; color: var(--gray-text); line-height: 1.8; margin-bottom: 6px; }
.prose a { color: var(--navy); }
.prose .last-updated { font-size: 12px; color: rgba(26,20,105,0.4); margin-bottom: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    nav { padding: 0 20px; height: 64px; }
    .nav-links { display: none; }
    .section { padding: 64px 20px; }
    .page-hero { padding: 110px 20px 64px; }
    .trust-band { padding: 48px 20px; }
    .contact-section { padding: 64px 20px; }
    footer { padding: 28px 20px; }
    .who-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .trust-inner { flex-direction: column; }
    .prose { padding: 80px 20px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
}
