*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #1a2540; background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }

:root {
    --navy: #1a2e52;
    --navy-dark: #0f1e3a;
    --blue-mid: #2c4a8a;
    --blue-light: #e8eef8;
    --blue-bg: #dbe7f7;
    --text-muted: #4a5568;
    --border: #dde3ef;
    --radius: 12px;
    --rounded-right: 0 12px 12px 0;
    --rounded-left: 12px 0 0 12px;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
    width: fit-content;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); }
.btn-secondary { background: #fff; color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff }

.btn-outline {
    background: transparent; color: var(--navy);
    border: 1.5px solid var(--navy); padding: 7px;
    font-size: 11px; font-weight: 700; border-radius: 6px;
    display: inline-flex; align-items: center; gap: 6px;
    cursor: pointer; transition: background 0.2s, color 0.2s; width: 100%;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* HEADER */
header {
    position: sticky; top: 0; z-index: 100;
    background: var(--blue-bg); border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; gap: 16px;
}
.logo { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.logo span { display: block; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { font-size: 13.5px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
nav a:hover { color: var(--navy); }
nav a.active, .mobile-menu a.active { color: var(--navy); font-weight: 700; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
.hamburger.open span:last-of-type { display: none; }
.hamburger.open span:nth-of-type(1) { transform: translateY(4px) rotate(45deg); }
.hamburger.open span:nth-of-type(2) { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu {
    display: none; flex-direction: column; background: #fff;
    border-top: 1px solid var(--border); padding: 12px 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 0; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; padding: 10px; }

/* HERO */
.hero {
    background: #dbe7f7;
    padding: 64px 0 52px;
}
.hero-inner { display: grid; grid-template-columns: 2.5fr 2fr; gap: 48px; align-items: center; }
.hero-text h1 { font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
.hero-text p { font-size: 15px; color: var(--text-muted); max-width: 460px; margin-bottom: 28px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 32px; }
.hero-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; font-weight: 500; color: var(--navy); max-width: 160px; }
.hf-icon { width: 34px; height: 34px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hf-icon svg { width: 30px; height: 30px; stroke: #061b4a; fill: none; stroke-width: 1.5; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-illustration {
    width: 100%; max-width: 500px; aspect-ratio: 4/3;
    background: linear-gradient(135deg, #c8d8f0, #8aa8d8);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    position: relative;
}
.hero-illustration:after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    box-shadow: inset -20px -20px 30px 0px #dbe7f7,inset 20px 20px 30px 0px #dbe7f7;
}
.hero-illustration img { width: 100%; object-fit: cover; box-shadow: inset -20px -20px 30px 0px #dbe7f7,inset 20px 20px 30px 0px #dbe7f7;
}

/* CTA */
.cta-section { background: var(--blue-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.cta-inner { display: flex; gap: 40px; align-items: center; }
.cta-block { display: flex; align-items: flex-start; gap: 18px; }
.cta-block:first-of-type { padding-right: 40px; border-right: 1px solid #a6b7d8; }
.cta-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.cta-icon svg { width: 25px; height: 25px; stroke: #fff; fill: none; stroke-width: 1.8; }
.cta-text { display: flex; flex-direction: row; gap: 18px; align-items: center; }
.cta-text h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; white-space: nowrap; }
.cta-text p { font-size: 12.5px; color: var(--text-muted); }
.cta-text a { white-space: nowrap; height: fit-content; }

/* FOOTER */
footer { background: #fff; border-top: 1px solid var(--border); padding: 44px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand { display: flex; gap: 20px; }
.footer-brand img { max-height: 80px; object-fit: contain; }
.footer-brand p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin-top: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; flex-wrap: wrap; max-height: 100px; }
.footer-col ul li a { font-size: 12.5px; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--navy); }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: #48669f; color: #fff; font-size: 13px; font-weight: 700; margin-top: 4px; }
.social-link img { object-fit: contain; width: 75%; border-radius: 50%; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 18px; font-size: 11.5px; color: var(--text-muted); }


/* CARDS */

.card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background-color: #fff;
    transition: box-shadow 0.2s
}

.card:hover {
    box-shadow: 0 8px 32px rgba(26, 46, 82, .10);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 886px) {
    .mobile-menu.open { display: none; }
}
@media (max-width: 885px) {
    nav { display: none; }
    .nav-cta-btn { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-text h1 { font-size: 30px; }
    .cta-inner { flex-direction: column; align-items: flex-start }
    .cta-block:first-of-type { border-right: none; border-bottom: 1px solid #a6b7d8; padding: 40px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col ul { max-height: 150px; }
}
@media (max-width: 480px) {
    .footer-brand { flex-direction: column; gap: 10px; }
    .cta-block { flex-direction: column; align-items: center; }
    .cta-text { flex-direction: column; text-align: center; }
    .cta-inner { align-items: center; }
}