:root {
    --navy-950: #041123;
    --navy-900: #071c38;
    --navy-800: #0b2b53;
    --navy-700: #12447b;
    --blue: #1d74d6;
    --cyan: #19c8d6;
    --gold: #d4a249;
    --gold-light: #f0c873;
    --white: #ffffff;
    --ink: #101726;
    --muted: #667085;
    --line: #e4e8ef;
    --soft: #f4f6f9;
    --success: #2b9d63;
    --shadow: 0 24px 70px rgba(9, 32, 63, .14);
    --radius: 26px;
    --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 9999; padding: 12px 16px; background: #fff; color: #000; border-radius: 8px; }
.skip-link:focus { top: 20px; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(16,23,38,.08);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(7,28,56,.1); }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; flex-shrink: 0; }
.brand img { width: 188px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { position: relative; color: #2c3442; font-size: .93rem; font-weight: 600; padding: 31px 0 29px; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--blue)); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--navy-800); }
.header-cta { display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; padding: 12px 17px; color: #fff; background: var(--navy-900); font-size: .86rem; font-weight: 700; white-space: nowrap; transition: transform .2s ease, background .2s ease; }
.header-cta:hover { transform: translateY(-2px); background: var(--navy-700); }
.header-cta svg { width: 18px; fill: var(--gold-light); }
.mobile-menu-button { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: var(--soft); border-radius: 12px; padding: 12px; }
.mobile-menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); border-radius: 9px; transition: transform .2s ease, opacity .2s ease; }
.mobile-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 850px;
    padding: 155px 0 76px;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 84% 20%, rgba(37,106,173,.3), transparent 35%), linear-gradient(135deg, #030c19 0%, #071b35 55%, #0d3158 100%);
}
.hero-background { position: absolute; inset: 0; opacity: .23; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, black, transparent 85%); }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; border: 1px solid rgba(212,162,73,.22); border-radius: 50%; right: -220px; top: 110px; box-shadow: 0 0 0 70px rgba(255,255,255,.015), 0 0 0 140px rgba(255,255,255,.01); }
.hero::after { content: ""; position: absolute; left: -8%; bottom: -130px; width: 116%; height: 240px; background: #fff; border-radius: 50% 50% 0 0 / 24% 24% 0 0; transform: scaleX(1.15); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-700); font-size: .76rem; font-weight: 800; letter-spacing: .18em; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.eyebrow.light { color: #c7d9ec; }
.hero h1, .section h2 { margin: 20px 0 20px; font-weight: 760; letter-spacing: -.045em; line-height: 1.04; }
.hero h1 { max-width: 690px; font-size: clamp(3rem, 5.1vw, 5.45rem); }
.hero h1 span { color: var(--gold-light); }
.hero-content > p { max-width: 660px; margin: 0; color: #c9d5e4; font-size: 1.18rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 51px; padding: 0 25px; border: 1px solid transparent; border-radius: 10px; font-size: .92rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #07182c; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 14px 34px rgba(212,162,73,.22); }
.button-primary:hover { box-shadow: 0 18px 42px rgba(212,162,73,.32); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.button.full { width: 100%; }
.hero-trust { display: flex; gap: 42px; margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-trust div { display: grid; }
.hero-trust strong { color: #fff; font-size: 1.05rem; }
.hero-trust span { color: #91a4ba; font-size: .78rem; }
.hero-visual { position: relative; min-height: 590px; }
.hero-visual > img { width: 100%; filter: drop-shadow(0 28px 55px rgba(0,0,0,.3)); }
.hero-info-card { position: absolute; right: -15px; bottom: 55px; width: min(360px, 75%); padding: 24px; border: 1px solid rgba(212,162,73,.42); border-radius: 20px; background: rgba(4,17,35,.83); backdrop-filter: blur(14px); box-shadow: 0 20px 50px rgba(0,0,0,.24); }
.hero-info-card > span { display: block; margin-bottom: 12px; color: var(--gold-light); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-info-card ul { list-style: none; padding: 0; margin: 0; }
.hero-info-card li { display: grid; gap: 1px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.11); }
.hero-info-card small { color: #86a0bb; }
.hero-info-card strong { font-size: .92rem; }
.scroll-indicator { position: absolute; z-index: 3; left: 50%; bottom: 120px; width: 28px; height: 46px; border: 1px solid rgba(255,255,255,.33); border-radius: 20px; }
.scroll-indicator span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 4px; background: var(--gold-light); animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%,0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,18px); } }

.intro-strip { position: relative; z-index: 3; margin-top: -58px; }
.intro-strip-grid { display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.intro-strip-grid > div { position: relative; padding: 25px 28px; display: grid; }
.intro-strip-grid > div:not(:last-child)::after { content: ""; position: absolute; top: 25%; right: 0; width: 1px; height: 50%; background: var(--line); }
.intro-strip-grid span { color: var(--gold); font-size: .75rem; font-weight: 900; }
.intro-strip-grid strong { color: var(--navy-900); font-size: 1.02rem; }
.intro-strip-grid small { color: var(--muted); }

.section { padding: 112px 0; }
.section-soft { background: var(--soft); }
.section h2 { font-size: clamp(2.35rem, 4vw, 4.3rem); color: var(--navy-950); }
.section-copy > p { color: var(--muted); font-size: 1.03rem; }
.text-gradient { background: linear-gradient(90deg, var(--blue), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.split-layout { display: grid; grid-template-columns: 1fr .96fr; gap: 82px; align-items: center; }
.quote-box { margin-top: 34px; padding: 24px 26px; border-left: 3px solid var(--gold); border-radius: 0 15px 15px 0; background: #f7f4ee; }
.quote-box span { display: block; margin-bottom: 6px; color: var(--gold); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.quote-box strong { color: var(--navy-900); font-size: 1.08rem; line-height: 1.45; }
.image-frame { position: relative; }
.image-frame > img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-badge { position: absolute; left: -24px; bottom: 28px; display: flex; align-items: center; gap: 12px; padding: 14px 19px; border-radius: 14px; background: #fff; box-shadow: 0 16px 40px rgba(9,32,63,.15); }
.image-badge strong { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: #fff; background: var(--navy-900); }
.image-badge span { color: var(--muted); font-size: .84rem; font-weight: 700; }

.section-heading { max-width: 830px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 1.04rem; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card { position: relative; min-height: 375px; padding: 30px 27px; overflow: hidden; background: #fff; border: 1px solid #e5eaf0; border-radius: 20px; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(29,116,214,.25); box-shadow: 0 22px 50px rgba(9,32,63,.11); }
.service-card > span { position: absolute; right: 24px; top: 22px; color: #d7dce5; font-weight: 900; }
.service-icon { display: grid; place-items: center; width: 65px; height: 65px; margin-bottom: 32px; border-radius: 18px; background: linear-gradient(145deg, #edf6ff, #fff7e9); }
.service-icon img { width: 36px; height: 36px; }
.service-card h3 { margin: 0 0 13px; color: var(--navy-900); font-size: 1.28rem; line-height: 1.3; }
.service-card p { margin: 0; color: var(--muted); font-size: .93rem; }
.card-line { position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .28s ease; }
.service-card:hover .card-line { transform: scaleX(1); }

.dark-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #041123, #08284a); }
.dark-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 50%, rgba(29,116,214,.2), transparent 34%); }
.network-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: center; }
.dark-section h2 { color: #fff; }
.dark-section h2 span, .leadership-copy h2 span, .contact-copy h2 span { color: var(--gold-light); }
.network-copy > p { color: #b3c4d7; font-size: 1.04rem; }
.network-list { display: grid; gap: 18px; margin-top: 34px; }
.network-list > div { display: flex; gap: 13px; align-items: flex-start; }
.network-list span { width: 11px; height: 11px; margin-top: 8px; border: 2px solid var(--gold-light); border-radius: 50%; box-shadow: 0 0 0 6px rgba(212,162,73,.1); }
.network-list p { margin: 0; color: #aebfd2; }
.network-list strong { color: #fff; }
.network-visual { position: relative; }
.network-pill { position: absolute; left: 38%; bottom: 12%; display: flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(4,17,35,.82); backdrop-filter: blur(10px); }
.network-pill i { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 7px rgba(212,162,73,.15); }
.network-pill span { font-size: .84rem; font-weight: 800; }

.governance-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; }
.governance-visual img { border-radius: var(--radius); box-shadow: var(--shadow); }
.principles-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.principles-grid article { padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.principles-grid span { color: var(--gold); font-size: .75rem; font-weight: 900; }
.principles-grid h3 { margin: 10px 0 8px; color: var(--navy-900); font-size: 1.15rem; }
.principles-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.leadership-section { padding-top: 30px; }
.leadership-card { display: grid; grid-template-columns: .78fr 1.22fr; overflow: hidden; color: #fff; border-radius: 30px; background: linear-gradient(120deg, #06152a, #0a3158); box-shadow: var(--shadow); }
.leadership-portrait { min-height: 560px; background: radial-gradient(circle at 50% 30%, rgba(212,162,73,.16), transparent 42%); }
.leadership-portrait img { width: 100%; height: 100%; object-fit: cover; }
.leadership-copy { padding: 70px 66px; display: flex; flex-direction: column; justify-content: center; }
.leadership-copy h2 { color: #fff; font-size: clamp(2.3rem, 3.5vw, 4rem); }
.leadership-copy p { color: #b9c8d8; }
.leadership-copy p strong { color: #fff; }
.leadership-signature { display: grid; margin-top: 22px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.leadership-signature strong { font-size: 1.1rem; }
.leadership-signature span { color: var(--gold-light); font-size: .83rem; font-weight: 700; }

.facts-section { background: #fff; }
.facts-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.facts-title h2 { margin-bottom: 0; }
.facts-table { border-top: 1px solid var(--line); }
.facts-table > div { display: grid; grid-template-columns: 200px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.facts-table span { color: var(--muted); }
.facts-table strong { color: var(--navy-900); }
.status-active { color: var(--success) !important; }
.status-active i { display: inline-block; width: 9px; height: 9px; margin-right: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 6px rgba(43,157,99,.12); }

.contact-section { position: relative; color: #fff; background: linear-gradient(135deg, #061327, #0b3157); overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 600px; height: 600px; right: -180px; bottom: -240px; border: 1px solid rgba(212,162,73,.22); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.015), 0 0 0 160px rgba(255,255,255,.01); }
.contact-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { color: #b9c8d8; }
.contact-items { display: grid; gap: 17px; margin-top: 32px; }
.contact-items > a, .contact-items > div { display: flex; gap: 15px; align-items: center; }
.contact-icon { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 46px; border: 1px solid rgba(255,255,255,.17); border-radius: 13px; color: var(--gold-light); background: rgba(255,255,255,.04); }
.contact-items small, .contact-items strong { display: block; }
.contact-items small { color: #8fa5bd; }
.contact-items strong { color: #fff; }
.contact-form { padding: 35px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; color: #dbe6f2; font-size: .85rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; outline: none; color: #fff; background: rgba(3,14,29,.5); padding: 13px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form select option { color: #111; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #8295aa; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,162,73,.12); }
.contact-form .invalid { border-color: #ff8c8c; }
.form-feedback { min-height: 24px; margin: 10px 0 0; color: #dbe6f2; font-size: .84rem; }

.site-footer { color: #c3cfdd; background: #020912; }
.footer-top { display: grid; grid-template-columns: 1.4fr .7fr 1fr 1fr; gap: 48px; padding: 70px 0 48px; }
.footer-brand img { width: 205px; }
.footer-brand p { max-width: 365px; margin-top: 20px; color: #8798aa; font-size: .9rem; }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column h3 { margin: 0 0 13px; color: #fff; font-size: .94rem; }
.footer-column a, .footer-column span { color: #8fa0b2; font-size: .86rem; }
.footer-column a:hover { color: var(--gold-light); }
.footer-button { align-self: flex-start; margin-top: 8px; padding: 10px 14px; border: 1px solid #2b3a4b; border-radius: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; padding: 25px 0; border-top: 1px solid #172333; color: #6f8092; font-size: .76rem; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #24ca6b; box-shadow: 0 15px 35px rgba(14, 70, 40, .28); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 31px; fill: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1100px) {
    .main-nav { gap: 19px; }
    .header-cta span { display: none; }
    .header-cta { width: 45px; height: 45px; padding: 0; justify-content: center; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
    .hero h1 { font-size: clamp(3rem, 5vw, 4.6rem); }
    .service-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 74px; }
    .brand img { width: 166px; }
    .mobile-menu-button { display: block; }
    .header-cta { display: none; }
    .main-nav { position: fixed; top: 74px; left: 14px; right: 14px; display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 14px; border-radius: 18px; background: #fff; box-shadow: 0 22px 60px rgba(4,17,35,.2); transform: translateY(-15px); opacity: 0; visibility: hidden; transition: .2s ease; }
    .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-nav a { padding: 13px 12px; border-radius: 9px; }
    .main-nav a::after { display: none; }
    .main-nav a.active { background: var(--soft); }
    .hero { min-height: auto; padding: 128px 0 150px; }
    .hero-grid, .split-layout, .network-grid, .governance-layout, .leadership-card, .facts-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 500px; max-width: 650px; margin-inline: auto; }
    .hero-trust { flex-wrap: wrap; }
    .intro-strip-grid { grid-template-columns: repeat(2,1fr); }
    .intro-strip-grid > div:nth-child(2)::after { display: none; }
    .section { padding: 85px 0; }
    .split-layout { gap: 45px; }
    .image-badge { left: 16px; }
    .network-grid { gap: 32px; }
    .leadership-portrait { min-height: 420px; }
    .leadership-copy { padding: 45px 30px; }
    .facts-grid { gap: 30px; }
    .contact-grid { gap: 45px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-contact { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
    .hero { padding-top: 116px; }
    .hero h1 { font-size: 2.85rem; }
    .hero-content > p { font-size: 1rem; }
    .hero-actions .button { width: 100%; }
    .hero-trust { gap: 23px; }
    .hero-visual { min-height: 390px; }
    .hero-info-card { right: 0; bottom: 20px; width: 90%; padding: 18px; }
    .intro-strip { margin-top: -45px; }
    .intro-strip-grid { grid-template-columns: 1fr; }
    .intro-strip-grid > div::after { display: none !important; }
    .intro-strip-grid > div:not(:last-child) { border-bottom: 1px solid var(--line); }
    .section { padding: 72px 0; }
    .section h2 { font-size: 2.5rem; }
    .service-grid, .principles-grid, .form-row { grid-template-columns: 1fr; }
    .leadership-portrait { min-height: 340px; }
    .leadership-copy { padding: 38px 23px; }
    .facts-table > div { grid-template-columns: 1fr; gap: 5px; }
    .contact-form { padding: 24px 18px; }
    .footer-top { grid-template-columns: 1fr; }
    .whatsapp-float { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
