:root {
    --white: #ffffff;
    --off-white: #f4fbff;
    --soft: #eaf7ff;
    --soft-2: #dff1fb;
    --line: #c9e3f2;
    --text: #163041;
    --muted: #5d7280;
    --blue: #1794d4;
    --blue-deep: #116ea6;
    --blue-soft: #d9f1ff;
    --accent: #ffd84d;
    --dark: #0f2230;
    --shadow: 0 14px 32px rgba(17, 110, 166, .10);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: var(--text);
    background: #f7fafc;
    line-height: 1.8;
    letter-spacing: .01em;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #1ba0e8 0%, #1488c8 100%);
    border-bottom: 4px solid #52c8ff;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.header-brand {
    background: linear-gradient(180deg, #2aa8ea 0%, #1891d4 100%);
    border-bottom: 1px solid rgba(255,255,255,.18);
}
.header-brand-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.logo {
    display: block;
    max-width: 420px;
}
.logo img {
    width: 100%;
    height: auto;
    display: block;
}
.header-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.header-contact {
    text-align: right;
    color: #fff;
    line-height: 1.55;
}
.header-phone {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .04em;
}
.header-address {
    font-size: .72rem;
    color: rgba(255,255,255,.88);
}
.header-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.header-actions a {
    display: inline-block;
    padding: 10px 14px;
    font-size: .72rem;
    font-weight: 800;
    color: #1174ad;
    background: #fff;
    border-radius: 4px;
    white-space: nowrap;
}
.header-actions a.secondary {
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
}
.header-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
}
nav {
    width: 100%;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
}
nav li {
    position: relative;
    border-left: 1px dotted rgba(255,255,255,.45);
}
nav li:last-child {
    border-right: 1px dotted rgba(255,255,255,.45);
}
nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .02em;
    white-space: nowrap;
}
nav a:hover, nav a.active {
    background: rgba(255,255,255,.16);
    color: #fff;
}
.hero-page {
    position: relative;
    min-height: 54vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.hero-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,110,166,.32), rgba(9,39,58,.58));
}
.hero-page .inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--blue-deep);
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    border-left: none;
}
.hero-page .eyebrow {
    color: rgba(255,255,255,.92);
    background: transparent;
}
h1, h2, h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
}
h1 {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    letter-spacing: .01em;
    margin-bottom: 14px;
    line-height: 1.25;
}
h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    letter-spacing: 0;
    margin-bottom: 10px;
    line-height: 1.35;
}
.hero-page p, .section-head p, .copy p, .card p, .news-item p, .table-like p, .text-block p {
    color: inherit;
    font-size: .9rem;
}
.section { padding: 64px 24px; }
.section.soft { background: #f2f8fc; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: left; margin-bottom: 22px; }
.section-head p { color: var(--muted); max-width: 720px; margin: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
    background: #fff;
    border: 1px solid #d7e5ee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(17, 110, 166, .05);
}
.card img { height: 220px; object-fit: cover; }
.card .body { padding: 18px; }
.card h3 { font-size: 1.02rem; margin-bottom: 8px; letter-spacing: 0; }
.card p { color: var(--muted); font-size: .84rem; }
.copy-box {
    background: #fff;
    border: 1px solid #d7e5ee;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 4px 12px rgba(17, 110, 166, .04);
}
.copy-box p { color: var(--muted); font-size: .88rem; }
.news-list {
    display: grid;
    gap: 12px;
    max-width: 1080px;
    margin: 0 auto;
}
.news-item {
    display: grid;
    grid-template-columns: 150px 1fr 44px;
    gap: 20px;
    align-items: center;
    background: #fff;
    border: 1px solid #dbe7ef;
    border-radius: 6px;
    padding: 20px 22px;
}
.news-meta {
    padding-top: 0;
}
.news-date {
    display: inline-block;
    min-width: 110px;
    text-align: center;
    background: #f3f7fa;
    color: #4c6170;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .04em;
    padding: 8px 12px;
    border-radius: 3px;
    margin-bottom: 0;
    border: 1px solid #dbe7ef;
}
.news-body h3 {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.65;
    font-weight: 700;
    color: #183246;
}
.news-body p {
    display: none;
}
.news-action {
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-play {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #1488c8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .74rem;
    font-weight: 800;
}
.table-like { display: grid; gap: 14px; }
.table-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.table-row:first-child { border-top: 1px solid var(--line); }
.table-row strong { display: block; margin-bottom: 4px; }
.table-row p { color: var(--muted); font-size: .84rem; }
.badge-link {
    display: inline-block;
    padding: 12px 22px;
    border: 1px solid var(--blue-deep);
    color: var(--blue-deep);
    border-radius: 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    background: #fff;
}
.cta-box {
    text-align: left;
    padding: 24px 22px;
    border-radius: 8px;
    background: #eef7fc;
    border: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(17, 110, 166, .04);
}
.cta-box p { color: var(--muted); margin: 0 0 14px; max-width: 720px; }
.cta-actions { display: flex; justify-content: flex-start; gap: 12px; flex-wrap: wrap; }
.cta-actions a {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    border: 1px solid var(--blue-deep);
    color: var(--blue-deep);
    background: #fff;
}
.cta-actions a.primary { background: var(--blue-deep); color: #fff; }
footer {
    padding: 34px 24px 40px;
    background: #12364d;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.10);
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-logo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 12px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 12px;
}
.footer-nav a {
    font-size: .72rem;
    color: rgba(255,255,255,.82);
}
.copyright {
    font-size: .68rem;
    color: rgba(255,255,255,.58);
}
@media (max-width: 900px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .table-row { flex-direction: column; }
    .news-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 16px;
        border-radius: 6px;
    }
    .news-action {
        justify-content: flex-start;
    }
}
@media (max-width: 768px) {
    header {
        position: static;
    }
    .header-brand-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px 10px;
        gap: 8px;
    }
    .logo {
        max-width: 150px;
        flex: 0 0 auto;
    }
    .header-info {
        flex: 1 1 auto;
        width: auto;
        align-items: flex-end;
        gap: 6px;
    }
    .header-contact {
        text-align: right;
    }
    .header-phone {
        font-size: .8rem;
        line-height: 1.2;
    }
    .header-address {
        display: none;
    }
    .header-actions {
        width: auto;
        gap: 6px;
        justify-content: flex-end;
    }
    .header-actions a {
        padding: 6px 8px;
        font-size: .62rem;
    }
    .header-inner { padding: 0; }
    nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    nav ul {
        justify-content: flex-start;
        min-width: max-content;
    }
    nav a {
        min-height: 38px;
        padding: 0 10px;
        font-size: .66rem;
    }
    .section { padding: 40px 14px; }
    .copy-box, .news-item, .cta-box, .card .body { padding: 16px; }
    h1 { font-size: 1.5rem; letter-spacing: .01em; }
    h2, .card h3 { letter-spacing: 0; line-height: 1.45; }
    .footer-nav {
        gap: 8px 12px;
    }
    .footer-nav a {
        font-size: .66rem;
    }
    .footer-logo {
        font-size: .88rem;
    }
    .copyright {
        font-size: .62rem;
    }
}