* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, "Segoe UI", sans-serif; line-height: 1.6; color: #1a1a1a; background: #f4f6f9; }
.container { max-width: 980px; margin: 0 auto; padding: 0 20px; }
.header { background: #0c1f36; color: #fff; padding: 14px 0; position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.logo { font-weight: 800; font-size: 1.3rem; letter-spacing: 0.02em; }
nav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
nav a { color: #b8cce4; text-decoration: none; font-size: 0.95rem; }
nav a:hover { color: #fff; }
.lang-btn { background: #1a4a7a; color: #fff; border: none; padding: 6px 12px; border-radius: 6px; cursor: pointer; }
.hero { background: linear-gradient(135deg, #0c1f36 0%, #1a4a7a 55%, #2a6aad 100%); color: #fff; padding: 72px 0 64px; text-align: center; }
.hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 14px; }
.hero p { opacity: 0.92; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; background: #e8a317; color: #111; padding: 12px 26px; border-radius: 8px; text-decoration: none; font-weight: 700; }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.gallery { margin-top: -28px; padding-bottom: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card-img { height: 140px; border-radius: 12px; display: flex; align-items: flex-end; padding: 14px; color: #fff; font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,.12); background-size: cover; background-position: center; }
.card-1 { background: linear-gradient(160deg, rgba(12,31,54,.3), rgba(12,31,54,.75)), #3d5a80; }
.card-2 { background: linear-gradient(160deg, rgba(12,31,54,.3), rgba(12,31,54,.75)), #ee6c4d; }
.card-3 { background: linear-gradient(160deg, rgba(12,31,54,.3), rgba(12,31,54,.75)), #293241; }
.section { padding: 56px 0; }
.section.alt { background: #fff; }
.section h2 { margin-bottom: 20px; color: #0c1f36; font-size: 1.5rem; }
.two-col { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 28px; align-items: center; }
.about-badge { background: #0c1f36; color: #fff; border-radius: 16px; padding: 28px; text-align: center; }
.badge-num { font-size: 2.4rem; font-weight: 800; color: #e8a317; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card { background: #f4f6f9; border-radius: 12px; padding: 22px; border: 1px solid #e6ebf2; }
.service-card .icon { font-size: 1.6rem; margin-bottom: 8px; }
.service-card h3 { margin-bottom: 8px; color: #0c1f36; font-size: 1.05rem; }
.adv-list { list-style: none; display: grid; gap: 10px; }
.adv-list li { background: #fff; padding: 14px 18px; border-radius: 8px; border-left: 4px solid #e8a317; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.req-table { display: grid; gap: 0; border: 1px solid #e0e6ef; border-radius: 12px; overflow: hidden; }
.req-table > div { display: grid; grid-template-columns: 180px 1fr; gap: 12px; padding: 12px 16px; border-bottom: 1px solid #e0e6ef; font-size: 0.92rem; }
.req-table > div:last-child { border-bottom: none; }
.req-table > div span:first-child { color: #5a6a7e; }
.contacts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card { background: #fff; border-radius: 12px; padding: 22px; border: 1px solid #e6ebf2; }
.contact-card.highlight { background: #0c1f36; color: #fff; border-color: #0c1f36; }
.contact-card.highlight a { color: #e8a317; }
.contact-card h3 { margin-bottom: 10px; }
.big-phone { font-size: 1.25rem; font-weight: 700; margin-top: 8px; }
.footer { background: #0c1f36; color: #8fa8c4; text-align: center; padding: 22px 0; font-size: 0.88rem; }
a { color: #1a4a7a; }
@media (max-width: 800px) {
  .gallery-grid, .services-grid, .contacts-grid, .two-col { grid-template-columns: 1fr; }
  .req-table > div { grid-template-columns: 1fr; }
  .card-img { height: 110px; }
}
