:root {
    --navy: #0f2d67;
    --blue: #16439b;
    --gold: #f6c34a;
    --red: #d93232;
    --ink: #172033;
    --muted: #667085;
    --line: #e5e8ef;
    --soft: #f6f8fb;
    --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: var(--navy); color: var(--white); font-size: 14px; }
.topbar-inner { min-height: 42px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-links { display: flex; gap: 12px; font-weight: 700; }
.topbar-links a:last-child { color: var(--gold); }
.site-header { position: sticky; top: 0; z-index: 20; background: var(--white); box-shadow: 0 8px 30px rgba(15, 45, 103, .08); }
.header-inner { min-height: 88px; display: flex; justify-content: space-between; align-items: center; gap: 22px; }
.logo img { width: 210px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; font-weight: 700; }
.site-nav a { padding: 12px 13px; border-radius: 6px; color: #263044; }
.site-nav a:hover { background: var(--soft); color: var(--blue); }
.menu-toggle { display: none; border: 0; background: var(--navy); color: var(--white); width: 44px; height: 44px; border-radius: 6px; font-size: 22px; }
.hero { background: linear-gradient(90deg, rgba(15,45,103,.96), rgba(15,45,103,.72)), var(--navy); color: var(--white); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; padding: 58px 0; }
.eyebrow { margin: 0 0 10px; color: var(--gold); font-weight: 800; text-transform: uppercase; font-size: 13px; }
h1, h2, h3 { line-height: 1.18; margin: 0 0 16px; }
h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(27px, 3.5vw, 40px); }
h3 { font-size: 21px; }
.hero p { font-size: 18px; max-width: 650px; }
.hero-media img { border-radius: 8px; box-shadow: 0 22px 60px rgba(0,0,0,.28); aspect-ratio: 4 / 3; object-fit: cover; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border-radius: 6px; font-weight: 800; border: 2px solid transparent; }
.btn-primary { background: var(--gold); color: #1c2638; }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.section { padding: 66px 0; }
.section.alt { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head p { color: var(--muted); margin: 0; }
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 12px 35px rgba(15,45,103,.06); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 22px; }
.card-body p { color: var(--muted); margin: 0 0 16px; }
.text-link { color: var(--blue); font-weight: 800; }
.feature-list { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.feature-list li { padding: 15px 16px; border-left: 4px solid var(--gold); background: var(--white); box-shadow: 0 8px 22px rgba(15,45,103,.06); }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: center; }
.split img { border-radius: 8px; aspect-ratio: 4 / 3; object-fit: cover; }
.page-hero { background: var(--navy); color: var(--white); padding: 54px 0; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.86); }
.content-wrap { display: grid; grid-template-columns: 1fr 330px; gap: 34px; align-items: start; }
.article { font-size: 17px; }
.article img { width: 100%; border-radius: 8px; margin-bottom: 24px; aspect-ratio: 16 / 9; object-fit: cover; }
.article p { margin: 0 0 18px; }
.sidebar { position: sticky; top: 118px; display: grid; gap: 18px; }
.side-box { border: 1px solid var(--line); border-radius: 8px; padding: 20px; background: var(--white); }
.side-box a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--blue); font-weight: 700; }
.side-box a:last-child { border-bottom: 0; }
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; }
.price-table th, .price-table td { padding: 14px; border: 1px solid var(--line); text-align: left; }
.price-table th { background: var(--navy); color: var(--white); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery img { border-radius: 8px; aspect-ratio: 4 / 3; object-fit: cover; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.contact-box { background: var(--soft); padding: 24px; border-radius: 8px; }
.form { display: grid; gap: 14px; }
.form input, .form textarea { width: 100%; padding: 14px; border: 1px solid var(--line); border-radius: 6px; font: inherit; }
.form textarea { min-height: 140px; resize: vertical; }
.cta-band { background: var(--gold); color: #1d2738; padding: 34px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 22px; }
.cta-inner h2 { font-size: 28px; margin-bottom: 6px; }
.cta-inner p { margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer { background: #101828; color: rgba(255,255,255,.78); padding-top: 44px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; }
.footer-logo { width: 180px; margin-bottom: 16px; }
.site-footer h3 { color: var(--white); font-size: 18px; }
.site-footer a { display: block; color: rgba(255,255,255,.82); margin: 8px 0; }
.footer-bottom { margin-top: 34px; padding: 18px; text-align: center; border-top: 1px solid rgba(255,255,255,.12); }
.fixed-actions { position: fixed; right: 18px; bottom: 18px; z-index: 30; display: flex; gap: 8px; }
.fixed-actions a { background: var(--red); color: var(--white); padding: 12px 14px; border-radius: 6px; font-weight: 800; box-shadow: 0 10px 28px rgba(0,0,0,.18); }
.fixed-actions a:last-child { background: #1fa855; }

@media (max-width: 900px) {
    .topbar-inner, .cta-inner { align-items: flex-start; flex-direction: column; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .site-nav { display: none; position: absolute; left: 16px; right: 16px; top: 88px; background: var(--white); padding: 12px; border-radius: 8px; box-shadow: 0 18px 42px rgba(15,45,103,.18); }
    .site-nav.open { display: grid; }
    .hero-inner, .split, .content-wrap, .contact-grid { grid-template-columns: 1fr; }
    .grid-3, .grid-2, .gallery, .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 46px 0; }
    .sidebar { position: static; }
    .fixed-actions { left: 12px; right: 12px; bottom: 12px; }
    .fixed-actions a { flex: 1; text-align: center; }
}
