:root {
    --navy-950: #050b14;
    --navy-900: #07101f;
    --navy-850: #0a1426;
    --navy-800: #0d1a31;
    --navy-700: #14274a;
    --navy-600: #1d3768;
    --gold-500: #d8ad5d;
    --gold-400: #ebc878;
    --gold-300: #f4dea8;
    --gold-600: #bd8c38;
    --white: #ffffff;
    --ink: #101828;
    --muted: #667085;
    --muted-dark: #a8b3c7;
    --surface: #f7f8fb;
    --surface-2: #eef2f7;
    --success: #2f8f68;
    --danger: #b42318;
    --border: rgba(16, 24, 40, .11);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shadow-sm: 0 10px 30px rgba(6, 15, 31, .08);
    --shadow: 0 24px 70px rgba(6, 15, 31, .14);
    --ease: cubic-bezier(.2,.7,.2,1);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0 0 .7em; line-height: 1.12; letter-spacing: -.03em; }
h1, h2 { font-family: 'Playfair Display', Georgia, serif; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; top: 8px; left: 8px; transform: translateY(-160%); z-index: 9999; background: var(--white); padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { transform: none; }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 14px 0;
    transition: .35s var(--ease);
    background: linear-gradient(180deg, rgba(5,11,20,.82), rgba(5,11,20,.22), transparent);
}
.site-header.scrolled {
    padding: 8px 0;
    background: rgba(5, 11, 20, .9);
    backdrop-filter: blur(18px) saturate(130%);
    border-bottom: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 184px; height: 62px; display: flex; align-items: center; overflow: hidden; border-radius: 12px; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 5px 14px rgba(0,0,0,.26)); }
.main-nav { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }
.main-nav > a, .nav-dropdown-toggle {
    border: 0;
    background: transparent;
    color: inherit;
    padding: 10px 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .92rem;
    transition: .22s ease;
}
.main-nav > a:hover, .main-nav > a.active, .nav-dropdown-toggle:hover { color: var(--white); background: rgba(255,255,255,.08); }
.main-nav .nav-cta { color: #1a2332; background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); padding-inline: 18px; box-shadow: 0 8px 25px rgba(216,173,93,.24); }
.main-nav .nav-cta:hover, .main-nav .nav-cta.active { background: linear-gradient(135deg, #f8e7bd, #d5a34b); color: #101828; transform: translateY(-1px); }
.admin-shortcut { width: 40px; height: 40px; display: grid !important; place-items: center; padding: 0 !important; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 7px; }
.nav-dropdown-toggle i { font-size: .7rem; transition: transform .2s ease; }
.nav-dropdown:hover .nav-dropdown-toggle i, .nav-dropdown.open .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 260px;
    padding: 10px;
    transform: translate(-50%, 8px);
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 17px;
    background: rgba(8,17,32,.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 55px rgba(0,0,0,.35);
    transition: .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-menu a { display: flex; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 10px; color: rgba(255,255,255,.82); font-size: .9rem; }
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-dropdown-menu i { color: var(--gold-400); width: 18px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); border-radius: 12px; padding: 10px; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--white); margin: 5px 0; transition: .25s ease; }

/* Hero */
.hero {
    min-height: 92vh;
    color: var(--white);
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, rgba(28,60,120,.34), transparent 32%),
        radial-gradient(circle at 83% 35%, rgba(216,173,93,.16), transparent 28%),
        linear-gradient(135deg, #040a13 0%, #071326 55%, #0c1c35 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .22;
    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: 54px 54px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
}
.hero::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(216,173,93,.16);
    border-radius: 50%;
    right: -180px;
    top: 14%;
    box-shadow: 0 0 0 80px rgba(216,173,93,.025), 0 0 0 160px rgba(216,173,93,.018);
}
.hero .container { position: relative; z-index: 2; }
.hero-layout { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 68px; padding: 150px 0 95px; }
.hero-copy { max-width: 660px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-400); text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; font-weight: 800; margin-bottom: 18px; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.hero h1 { font-size: clamp(3.25rem, 6.1vw, 6.5rem); letter-spacing: -.055em; max-width: 900px; margin-bottom: 20px; }
.hero h1 .gold { color: var(--gold-400); text-shadow: 0 0 34px rgba(216,173,93,.2); }
.hero-lead { color: #c7d1e3; font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 19px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: .92rem;
    transition: .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); color: #172033; box-shadow: 0 10px 30px rgba(216,173,93,.22); }
.btn-gold:hover { box-shadow: 0 15px 35px rgba(216,173,93,.3); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-outline { border-color: var(--border); color: var(--ink); background: var(--white); }
.btn-danger { background: #fee4e2; color: var(--danger); }
.hero-visual { position: relative; }
.hero-logo-card {
    position: relative;
    padding: 14px;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.11);
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    backdrop-filter: blur(18px);
    box-shadow: 0 50px 120px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.025);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.hero-logo-card img { width: 100%; border-radius: 23px; }
.hero-orbit { position: absolute; border: 1px solid rgba(216,173,93,.16); border-radius: 50%; inset: -38px; animation: orbitPulse 5s ease-in-out infinite; pointer-events: none; }
.hero-orbit::after { content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold-400); top: 15%; right: 9%; box-shadow: 0 0 22px var(--gold-400); }
@keyframes orbitPulse { 50% { transform: scale(1.03) rotate(3deg); opacity: .62; } }
.hero-trust { display: flex; gap: 22px; margin-top: 34px; color: #9facbf; font-size: .8rem; font-weight: 700; }
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust i { color: var(--gold-400); }

/* Sections */
.section { padding: 98px 0; }
.section-soft { background: var(--surface); }
.section-dark { background: var(--navy-900); color: var(--white); position: relative; overflow: hidden; }
.section-dark::after { content:''; position:absolute; inset:auto -180px -230px auto; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle,rgba(216,173,93,.13),transparent 68%); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow::before { display: none; }
.section-heading h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.section-dark .section-heading p { color: var(--muted-dark); }

/* Cards / sectors */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(160deg, #fff, #f8f9fc);
    box-shadow: var(--shadow-sm);
    transition: .35s var(--ease);
}
.sector-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(216,173,93,.4); }
.sector-card::after { content:''; position:absolute; width:170px; height:170px; border-radius:50%; background:radial-gradient(circle,rgba(216,173,93,.16),transparent 70%); right:-50px; top:-30px; transition:.35s ease; }
.sector-card:hover::after { transform: scale(1.25); }
.sector-index { font-size: .72rem; color: var(--muted); font-weight: 800; letter-spacing: .14em; }
.sector-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: var(--navy-900); color: var(--gold-400); font-size: 1.55rem; margin: 62px 0 26px; box-shadow: 0 10px 25px rgba(5,11,20,.18); }
.sector-card h3 { font-size: 1.45rem; font-family: 'Manrope', sans-serif; letter-spacing: -.025em; }
.sector-card p { color: var(--muted); font-size: .92rem; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; color: var(--navy-700); font-weight: 800; font-size: .9rem; }
.card-link i { color: var(--gold-600); transition: .2s ease; }
.card-link:hover i { transform: translateX(4px); }

/* Impact */
.impact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.impact-copy h2 { font-size: clamp(2.3rem, 4vw, 4.1rem); }
.impact-copy p { color: var(--muted-dark); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.045); padding: 28px; border-radius: 20px; backdrop-filter: blur(8px); }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4.7rem); line-height: 1; color: var(--gold-400); }
.stat-label { color: #c8d1df; font-size: .9rem; margin-top: 9px; }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .visual-panel { order: 2; }
.visual-panel { min-height: 470px; border-radius: var(--radius-lg); position: relative; overflow: hidden; background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); box-shadow: var(--shadow); }
.visual-panel::before { content:''; position:absolute; width:330px; height:330px; border:1px solid rgba(216,173,93,.2); border-radius:50%; left:50%; top:50%; transform:translate(-50%,-50%); box-shadow:0 0 0 70px rgba(216,173,93,.025),0 0 0 140px rgba(216,173,93,.018); }
.visual-panel .visual-icon { position:absolute; inset:0; display:grid; place-items:center; color:var(--gold-400); font-size:7rem; filter:drop-shadow(0 12px 35px rgba(0,0,0,.3)); }
.split-copy h2 { font-size: clamp(2.25rem, 3.4vw, 3.65rem); }
.split-copy p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list i { color: var(--gold-600); margin-top: 4px; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 27px; border-radius: 19px; background: #fff; border: 1px solid var(--border); transition: .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(216,173,93,.45); box-shadow: var(--shadow-sm); }
.service-card .service-icon { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 14px; color: var(--gold-600); background: #fff7e8; margin-bottom: 18px; }
.service-card h3 { font-family: 'Manrope', sans-serif; font-size: 1.12rem; letter-spacing: -.02em; }
.service-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { border: 1px solid var(--border); border-radius: 21px; overflow: hidden; background: #fff; box-shadow: 0 10px 28px rgba(4,14,31,.05); transition: .28s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.news-media { height: 210px; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); overflow: hidden; display: grid; place-items: center; color: var(--gold-400); font-size: 3rem; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-media img { transform: scale(1.04); }
.news-body { padding: 24px; }
.news-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; color: var(--muted); font-size: .76rem; font-weight: 700; margin-bottom: 13px; }
.news-tag { color: #7a561a; background: #fff4de; border-radius: 999px; padding: 5px 9px; }
.news-body h3 { font-family: 'Manrope', sans-serif; font-size: 1.2rem; }
.news-body p { color: var(--muted); font-size: .9rem; }

/* Page hero */
.page-hero { padding: 170px 0 88px; color: var(--white); background: radial-gradient(circle at 85% 20%,rgba(216,173,93,.17),transparent 30%),linear-gradient(135deg,var(--navy-950),var(--navy-700)); position: relative; overflow: hidden; }
.page-hero::after { content:''; position:absolute; width:500px;height:500px;border:1px solid rgba(255,255,255,.06);border-radius:50%;right:-160px;bottom:-280px;box-shadow:0 0 0 80px rgba(255,255,255,.018),0 0 0 160px rgba(255,255,255,.012); }
.page-hero-inner { max-width: 820px; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(3rem, 5.7vw, 5.6rem); }
.page-hero p { font-size: 1.12rem; color: #c3cde0; max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: #9ba9c0; font-size: .8rem; margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--gold-400); }

/* Values / team */
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.value-card { padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: #fff; }
.value-card i { font-size: 1.4rem; color: var(--gold-600); margin-bottom: 34px; }
.value-card h3 { font-family: 'Manrope', sans-serif; font-size: 1rem; }
.value-card p { font-size: .84rem; color: var(--muted); margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { border-radius: 20px; border: 1px solid var(--border); background: #fff; padding: 28px; text-align: center; }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; color: var(--gold-400); background: var(--navy-900); font-size: 2rem; }
.team-card h3 { font-family: 'Manrope', sans-serif; font-size: 1.1rem; margin-bottom: 4px; }
.team-role { color: var(--gold-600); font-size: .84rem; font-weight: 800; }
.team-card p { color: var(--muted); font-size: .88rem; }

/* Contact/forms */
.contact-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 28px; }
.contact-panel, .form-panel { border-radius: 24px; padding: 34px; }
.contact-panel { background: var(--navy-900); color: var(--white); position: relative; overflow: hidden; }
.contact-panel::after { content:''; position:absolute; width:260px;height:260px;border-radius:50%;background:radial-gradient(circle,rgba(216,173,93,.2),transparent 70%);right:-90px;bottom:-90px; }
.contact-panel h2 { font-size: 2.3rem; }
.contact-panel > p { color: #aebad0; }
.contact-item { display: grid; grid-template-columns: 45px 1fr; gap: 13px; align-items: start; margin-top: 24px; position: relative; z-index: 2; }
.contact-item .icon { width: 45px; height: 45px; display:grid;place-items:center;border-radius:13px;background:rgba(255,255,255,.07);color:var(--gold-400); }
.contact-item strong { display:block; font-size:.82rem; color:#8f9db5; margin-bottom:2px; }
.contact-item span, .contact-item a { font-size:.92rem; }
.form-panel { border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-sm); }
.form-panel h2 { font-family:'Manrope',sans-serif; font-size:1.45rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 800; color: #344054; }
.form-control, .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: .2s ease;
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-control:focus, .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(216,173,93,.13); }
.form-help { color: var(--muted); font-size: .76rem; }
.form-error { color: var(--danger); font-size: .78rem; }
.alert, .flash { padding: 14px 16px; border-radius: 12px; margin-bottom: 20px; font-size: .9rem; }
.alert-success, .flash-success { background: #ecfdf3; color: #027a48; border: 1px solid #abefc6; }
.alert-error, .flash-error { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }
.flash-wrap { padding-top: 100px; margin-bottom: -80px; position: relative; z-index: 20; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.faq-item { border: 1px solid var(--border); border-radius: 16px; padding: 22px; background: #fff; }
.faq-item h3 { font-family: 'Manrope',sans-serif; font-size: 1rem; }
.faq-item p { color: var(--muted); font-size: .88rem; margin: 0; }

/* Article */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 48px; align-items: start; }
.article-content { max-width: 800px; }
.article-content .lead { font-size: 1.18rem; color: #475467; }
.article-content p, .article-content li { color: #344054; }
.article-content img { border-radius: 20px; margin: 26px 0; }
.article-aside { position: sticky; top: 115px; border:1px solid var(--border);border-radius:18px;padding:22px;background:var(--surface); }
.article-aside h3 { font-family:'Manrope',sans-serif;font-size:1rem; }

/* CTA */
.cta-panel { padding: 54px; border-radius: 30px; color: var(--white); background: radial-gradient(circle at 84% 20%,rgba(216,173,93,.2),transparent 30%),linear-gradient(135deg,var(--navy-950),var(--navy-700)); display:flex;align-items:center;justify-content:space-between;gap:32px;box-shadow:var(--shadow); }
.cta-panel h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); margin-bottom: 10px; }
.cta-panel p { color: #b9c4d6; max-width: 650px; margin: 0; }

/* Newsletter/footer */
.newsletter-band { padding: 0 0 90px; background: var(--white); }
.newsletter-band-inner { border-radius: 28px; padding: 42px; background: #f5efe2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 34px; }
.newsletter-band h2 { font-family:'Manrope',sans-serif; font-size:1.7rem; margin-bottom:7px; }
.newsletter-band p { color:#6b604e; margin:0; }
.newsletter-inline { display: flex; gap: 10px; }
.newsletter-inline input { flex: 1; min-width:0; border:1px solid rgba(16,24,40,.12);border-radius:12px;padding:12px 14px;outline:none;background:#fff; }
.newsletter-inline input:focus { border-color:var(--gold-500);box-shadow:0 0 0 4px rgba(216,173,93,.15); }
.site-footer { background: var(--navy-950); color: #c1cada; padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr 1.2fr; gap: 44px; }
.footer-grid h3 { font-family:'Manrope',sans-serif;font-size:.9rem;color:var(--white);letter-spacing:.01em; }
.footer-grid > div > a { display:block;color:#99a8be;font-size:.88rem;margin:8px 0; }
.footer-grid > div > a:hover { color: var(--gold-400); }
.footer-brand img { width: 230px; height: 110px; object-fit: contain; border-radius: 14px; margin-bottom: 15px; }
.footer-brand p { max-width: 340px; font-size:.88rem;color:#99a8be; }
.footer-contact p { display:flex;gap:11px;color:#99a8be;font-size:.86rem; }
.footer-contact i { color: var(--gold-400); margin-top:5px; }
.footer-contact a:hover { color:var(--gold-400); }
.footer-bottom { margin-top:46px;padding-top:20px;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;gap:20px;color:#718097;font-size:.78rem; }
.back-to-top { position:fixed;right:22px;bottom:22px;width:45px;height:45px;border-radius:50%;border:1px solid rgba(255,255,255,.1);background:var(--navy-900);color:var(--gold-400);box-shadow:0 12px 30px rgba(0,0,0,.2);z-index:900;opacity:0;visibility:hidden;transform:translateY(10px);transition:.2s ease; }
.back-to-top.show { opacity:1;visibility:visible;transform:none; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1020px) {
    .hero-layout, .impact-grid, .split, .contact-layout { grid-template-columns: 1fr; }
    .hero-layout { gap: 30px; padding-top: 130px; }
    .hero-copy { max-width: 760px; }
    .hero-visual { max-width: 720px; }
    .hero-logo-card { transform: none; }
    .sector-grid { grid-template-columns: 1fr 1fr; }
    .service-grid, .news-grid { grid-template-columns: 1fr 1fr; }
    .value-grid { grid-template-columns: repeat(3,1fr); }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-aside { position: static; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    .site-header { background: rgba(5,11,20,.92); backdrop-filter: blur(16px); }
    .brand { width: 166px; height: 56px; }
    .menu-toggle { display: block; }
    .main-nav { position:fixed;inset:84px 14px auto;background:rgba(6,14,27,.98);border:1px solid rgba(255,255,255,.08);border-radius:20px;padding:14px;display:grid;gap:4px;max-height:calc(100vh - 110px);overflow:auto;opacity:0;visibility:hidden;transform:translateY(-8px);transition:.2s ease;box-shadow:0 25px 70px rgba(0,0,0,.42); }
    .main-nav.open { opacity:1;visibility:visible;transform:none; }
    .main-nav > a, .nav-dropdown-toggle { width:100%;justify-content:space-between;text-align:left;padding:13px 14px; }
    .main-nav .nav-cta { margin-top:5px;text-align:center; }
    .nav-dropdown-menu { position:static;transform:none !important;opacity:1;visibility:visible;display:none;min-width:0;background:rgba(255,255,255,.035);box-shadow:none;margin:5px 0;border-color:rgba(255,255,255,.05); }
    .nav-dropdown.open .nav-dropdown-menu { display:block; }
    .nav-dropdown:hover .nav-dropdown-menu { display:none; }
    .nav-dropdown.open:hover .nav-dropdown-menu { display:block; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, var(--container)); }
    .hero { min-height: auto; }
    .hero-layout { padding: 126px 0 70px; }
    .hero h1 { font-size: clamp(2.8rem, 15vw, 4.3rem); }
    .hero-actions .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: 8px; }
    .section { padding: 72px 0; }
    .sector-grid, .service-grid, .news-grid, .stats-grid, .value-grid, .team-grid, .faq-grid, .form-grid { grid-template-columns: 1fr; }
    .sector-card { min-height: 300px; }
    .sector-icon { margin-top: 42px; }
    .page-hero { padding: 145px 0 72px; }
    .cta-panel { padding: 34px 24px; flex-direction:column;align-items:flex-start; }
    .newsletter-band-inner { padding: 28px 20px; grid-template-columns:1fr; }
    .newsletter-inline { flex-direction: column; }
    .footer-grid { grid-template-columns:1fr 1fr;gap:28px; }
    .footer-brand, .footer-contact { grid-column:1 / -1; }
    .footer-bottom { flex-direction:column; }
    .contact-panel, .form-panel { padding: 25px; }
    .split.reverse .visual-panel { order:0; }
    .visual-panel { min-height:350px; }
}

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