* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, "Helvetica Neue", sans-serif; color: var(--navy); line-height: 1.6; background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; max-width: 1220px; margin: 0 auto; }
.header-logo { font-size: 20px; font-weight: 900; letter-spacing: .5px; color: var(--navy-deep); font-family: "REM", Arial, sans-serif; }
.header-logo span { color: var(--accent); }
.header-nav { display: flex; gap: 30px; }
.nav-link { font-size: 14px; font-weight: 600; color: var(--slate); }
.nav-link:hover, .nav-link.active { color: var(--navy-deep); }
.header-cta { background: var(--navy-deep); color: var(--white); padding: 11px 22px; font-size: 14px; font-weight: 700; border-radius: 2px; }

.breadcrumb { font-size: 13px; color: var(--slate); padding: 16px 24px; max-width: 1220px; margin: 0 auto; }
.breadcrumb-sep { margin: 0 6px; }

.site-footer { background: #0d1b33; color: #aab3c6; margin-top: 0; }
.footer-nav-inner { max-width: 1220px; margin: 0 auto; padding: 64px 24px 30px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-nav-inner h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-nav-inner li { margin-bottom: 8px; font-size: 14px; }
.footer-nav-inner a:hover { color: var(--white); }
.footer-tagline { font-size: 26px; font-weight: 900; color: var(--white); line-height: 1.25; font-family: "REM", Arial, sans-serif; }
.footer-bottom { border-top: 1px solid #223252; text-align: center; padding: 20px; font-size: 13px; color: #7c8296; }
.footer-inner { max-width: 900px; margin: 0 auto; padding: 24px; text-align: center; color: #aab3c6; }

.btn { display: inline-block; padding: 13px 30px; font-weight: 700; font-size: 14px; border-radius: 2px; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-outline { border: 1px solid var(--white); color: var(--white); }
.btn-outline-dark { border: 1px solid var(--navy-deep); color: var(--navy-deep); }

section { padding: 70px 0; }
.section-title { font-size: 32px; font-weight: 800; margin-bottom: 10px; font-family: "REM", Arial, sans-serif; }
.section-sub { color: var(--slate); margin-bottom: 40px; max-width: 640px; }
.section-alt { background: var(--bg-alt); }
