@charset "UTF-8";

:root {
    --gold: #C4941A;
    --gold-dark: #9E7512;
    --gold-light: #E8B84B;
    --dark: #1A1A2E;
    --dark-2: #16213E;
    --footer: #172331;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-mid: #888888;
    --text: #2C2C2C;
    --border: #E0E0E0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Roboto Condensed", "Arial Unicode MS", "Noto Sans", "Noto Sans Mongolian", "Segoe UI", Tahoma, Arial, sans-serif;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; transition: 0.3s ease; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.nav-wrap {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 26px;
}
.brand, .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e2a3a;
    font-weight: 900;
    letter-spacing: 0;
}
.brand {
    min-width: 220px;
    font-size: 19px;
    line-height: 1.05;
}
.brand-logo {
    width: 76px;
    min-width: 76px;
}
.brand-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 92px;
    color: #111927;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a.active::after { background: var(--gold); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}
.phone-link {
    color: #111927;
    font-size: 19px;
    font-weight: 900;
    white-space: nowrap;
}
.phone-link::first-letter { color: var(--gold); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    cursor: pointer;
    transition: 0.3s ease;
}
.btn-gold, .btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover, .btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}
.btn-outline-dark {
    min-height: 40px;
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline-dark:hover {
    background: var(--gold);
    color: var(--white);
}
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--dark);
    transition: 0.3s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    background: #d9d9d9;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #172233;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0.45);
    pointer-events: none;
}
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 4.8s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-content {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    z-index: 2;
    transform: translateY(-50%);
}
.hero h1 {
    max-width: 650px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(36px, 5.5vw, 68px);
    line-height: 1.1;
    font-weight: 900;
}
.hero p {
    max-width: 520px;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.90);
    font-size: 18px;
    line-height: 1.7;
}
.hero-btn {
    min-width: 180px;
    min-height: 44px;
}
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
}
.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    cursor: pointer;
    transition: 0.3s ease;
}
.hero-dots button.active {
    width: 24px;
    background: var(--gold);
}

.services-strip {
    position: relative;
    z-index: 20;
    margin-top: 0;
    padding-bottom: 26px;
}
.services-bar {
    margin-top: -70px;
    position: relative;
    z-index: 20;
    background: #fff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.10);
}
.service-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 150px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.10);
    overflow: hidden;
}
.service-bar article {
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 34px 30px;
    align-items: start;
}
.service-bar article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 0;
    width: 1px;
    height: calc(100% - 56px);
    background: var(--border);
}
.service-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
}
.service-bar h3 {
    margin: 0 0 8px;
    color: #111927;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}
.service-bar p {
    margin: 0;
    color: #4d5868;
    font-size: 13px;
    line-height: 1.42;
}

.stats-section {
    padding: 40px 0;
    background:
        linear-gradient(rgba(18,27,38,0.93), rgba(18,27,38,0.93)),
        url("../images/about-road.svg") center / cover no-repeat;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 18px;
    min-height: 98px;
    padding: 0 34px;
    border-right: 1px solid rgba(255,255,255,0.24);
    align-items: start;
}
.stat-item:last-child { border-right: 0; }
.stat-item span {
    grid-row: span 3;
    width: 42px;
    height: 42px;
    color: var(--gold);
}
.stat-number {
    display: block;
    color: var(--gold);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}
.stat-item h3 {
    margin: 4px 0 3px;
    color: var(--white);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}
.stat-item p {
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 12px;
    line-height: 1.35;
}

.section { padding: 50px 0; }
.projects-section { padding-top: 34px; padding-bottom: 28px; }
.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}
.section-head h2, .title-line {
    position: relative;
    margin: 0;
    padding-bottom: 12px;
    color: #172233;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
}
.section-head h2::after, .title-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: var(--gold);
}
.section-head a, .news-card a {
    color: #0f3a68;
    font-size: 13px;
    font-weight: 900;
}
.section-head a:hover, .news-card a:hover { color: var(--gold); }
.compact h2 { font-size: 24px; }

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.project-card, .news-card, .service-card, .contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: 0.3s ease;
}
.project-card:hover, .news-card:hover, .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}
.media-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.project-card .media-img { aspect-ratio: 16 / 9; }
.card-body { padding: 14px 18px 14px; }
.card-body h3, .news-card h2 {
    margin: 0 0 12px;
    color: #111927;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 900;
}
.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.badge {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 4px;
    background: #eef1d8;
    color: #578148;
    font-size: 12px;
    font-weight: 800;
}
time { color: var(--gray-mid); font-size: 12px; font-weight: 500; }
.location { margin: 12px 0 0; color: var(--gray-mid); font-size: 14px; }
.partners-section {
    padding-top: 34px;
    padding-bottom: 48px;
    background: var(--gray-light);
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.partner-logo-card {
    display: grid;
    place-items: center;
    min-height: 150px;
    padding: 24px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}
.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}
.partner-logo-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 20px;
    font-weight: 900;
}
.partner-logo-card h3 {
    margin: 0;
    color: #172233;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}
.project-details {
    display: grid;
    gap: 9px;
    margin: 14px 0 0;
}
.project-details div {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 10px;
}
.project-details dt {
    color: var(--gray-mid);
    font-size: 12px;
    font-weight: 700;
}
.project-details dd {
    margin: 0;
    color: #172233;
    font-size: 13px;
    font-weight: 700;
}
.status-badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 4px;
    background: #edf7ea;
    color: #3f7c37;
    font-size: 12px;
    font-weight: 900;
}

.about-news {
    padding-top: 0;
    padding-bottom: 28px;
    background: var(--white);
}
.about-news-grid {
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: 30px;
    align-items: stretch;
}
.about-preview {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 26px;
    grid-column: span 1;
}
.about-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}
.about-preview h2 {
    position: relative;
    margin: 8px 0 16px;
    padding-bottom: 10px;
    color: #172233;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
}
.about-preview h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--gold);
}
.about-preview p {
    margin: 0 0 24px;
    color: #465364;
    font-size: 13px;
}
.news-panel {
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 6px;
}
.news-panel .section-head {
    margin-bottom: 8px;
}
.news-list {
    display: grid;
    gap: 0;
}
.news-mini {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    align-items: start;
    padding: 14px 0;
}
.news-mini + .news-mini { border-top: 1px solid var(--border); }
.news-thumb {
    width: 170px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}
.news-mini h3 {
    margin: 2px 0 5px;
    color: #111927;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}
.news-mini p {
    margin: 0;
    color: #5c6674;
    font-size: 13px;
    line-height: 1.38;
}

.placeholder {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}
.placeholder::before { content: ""; display: block; }
.ratio-4-3::before { padding-top: 75%; }
.ratio-16-9::before { padding-top: 56.25%; }
.placeholder span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-mid);
    font-weight: 700;
}

.page-hero {
    padding: 84px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    color: var(--white);
}
.page-hero span {
    display: block;
    width: 70px;
    height: 4px;
    margin-bottom: 18px;
    background: var(--gold);
}
.page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
}
.soft-bg { background: var(--gray-light); }
.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
}
.align-center { align-items: center; }
.timeline {
    position: relative;
    display: grid;
    gap: 26px;
    margin-top: 34px;
    padding-left: 32px;
}
.timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 2px;
    background: var(--gold);
}
.timeline div { position: relative; }
.timeline div::before {
    content: "";
    position: absolute;
    left: -31px;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
}
.timeline time {
    color: var(--gold);
    font-size: 20px;
}
.timeline p { margin: 6px 0 0; }
.motto-section {
    padding: 48px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}
.motto-section h2 {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}
.motto-section p {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 900;
}
.history-copy {
    max-width: 880px;
    margin-top: 28px;
}
.history-copy p,
.experience-note {
    color: #465364;
    font-size: 16px;
}
.history-copy p:last-child { margin-bottom: 0; }
.experience-note {
    max-width: 900px;
    margin: 28px 0 0;
}
.experience-grid, .service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.experience-grid article {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--white);
}
.experience-grid span {
    color: var(--gold);
    font-size: 22px;
    font-weight: 900;
}
.experience-grid h3 {
    margin: 0;
    color: var(--dark);
    font-size: 16px;
}
.team-total {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 4px;
    background: var(--gold);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
}
.staff-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.staff-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}
.staff-table th,
.staff-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 15px;
}
.staff-table th {
    background: #f7f7f7;
    color: #172233;
    font-weight: 900;
}
.staff-table th:first-child,
.staff-table td:first-child,
.staff-table th:last-child,
.staff-table td:last-child {
    width: 90px;
    text-align: center;
}
.staff-table tbody tr:last-child td { border-bottom: 0; }
.staff-table tbody tr:hover { background: #fffaf0; }
.vision-section { background: var(--dark); }
.vision-section article {
    padding: 36px;
    background: var(--dark-2);
    color: var(--white);
}
.vision-section h2 { margin-top: 0; color: var(--gold); }
.service-card {
    padding: 32px;
    border: 1px solid transparent;
}
.service-card:hover { border-color: var(--gold); }
.service-card > span {
    display: block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 46px;
}
.service-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--text);
}
.service-card li { margin-bottom: 6px; }
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}
.filter-buttons button {
    min-height: 42px;
    padding: 8px 18px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}
.filter-buttons button:hover, .filter-buttons button.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}
.filter-card.hidden { display: none; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.news-card p { color: var(--gray-mid); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info {
    display: grid;
    gap: 14px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}
.map-frame {
    width: 100%;
    min-height: 300px;
    border: 0;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}
.contact-form {
    display: grid;
    gap: 16px;
    padding: 32px;
}
.contact-form label {
    display: grid;
    gap: 6px;
    color: var(--dark);
    font-weight: 800;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    padding: 12px 14px;
    color: var(--text);
    outline: none;
    transition: 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.form-message {
    padding: 12px 14px;
    font-weight: 700;
}
.form-message.success { background: #edf8ee; color: #1d6d2e; }
.form-message.error { background: #fff0f0; color: #9c1f1f; }

.site-footer {
    background: var(--footer);
    color: var(--white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.15fr 1.35fr;
    gap: 40px;
    padding-top: 36px;
    padding-bottom: 34px;
}
.footer-grid > div:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 34px;
}
.footer-brand {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.05;
}
.footer-brand .brand-logo {
    width: 68px;
    min-width: 68px;
}
.site-footer p, .site-footer li, .site-footer a {
    color: rgba(255,255,255,0.82);
    font-size: 13px;
}
.site-footer h3 {
    margin: 0 0 17px;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
}
.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-footer a:hover { color: var(--gold-light); }
.socials {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}
.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
}
.footer-bottom {
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.72);
    font-size: 12px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 1120px) {
    .brand { min-width: 190px; font-size: 16px; }
    .brand-logo { width: 64px; min-width: 64px; }
    .main-nav { gap: 16px; }
    .main-nav a { font-size: 11px; }
    .phone-link { display: none; }
    .service-bar, .stats-grid, .project-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .service-bar article:nth-child(2)::after { display: none; }
    .stat-item:nth-child(2) { border-right: 0; }
    .stat-item:nth-child(-n+2) { padding-bottom: 24px; }
    .stat-item:nth-child(n+3) { padding-top: 24px; }
    .footer-grid > div { border-right: 0 !important; padding-right: 0 !important; }
    .about-news-grid, .about-preview { grid-template-columns: 1fr; }
    .experience-grid, .service-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .section { padding: 48px 0; }
    .nav-wrap {
        min-height: 76px;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .brand { min-width: 0; max-width: calc(100% - 60px); font-size: 14px; }
    .brand-logo { width: 52px; min-width: 52px; }
    .nav-toggle { display: block; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav, .nav-actions { display: none; width: 100%; }
    .main-nav.open, .nav-actions.open { display: grid; justify-content: stretch; }
    .main-nav {
        order: 3;
        gap: 0;
        border-top: 1px solid var(--border);
    }
    .main-nav a {
        min-height: 0;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }
    .main-nav a.active::after { display: none; }
    .nav-actions { order: 4; padding: 16px 0 20px; }
    .phone-link { display: inline-flex; }
    .nav-actions .btn { width: 100%; }
    .hero {
        min-height: 70vh;
        height: 70vh;
        background-attachment: scroll;
    }
    .hero::before { background: rgba(0,0,0,0.45); }
    .hero-slide { background-position: 62% center; }
    .hero-slide { background-attachment: scroll; }
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 16px; }
    .services-strip { margin-top: 0; }
    .services-bar { margin-top: -70px; }
    .service-bar, .stats-grid, .project-grid, .footer-grid, .two-col, .experience-grid, .service-card-grid, .news-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid { grid-template-columns: 1fr; }
    .service-bar article::after { display: none; }
    .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.18);
        padding: 20px 0;
    }
    .stat-item:last-child { border-bottom: 0; }
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .section-head h2, .title-line { font-size: 25px; }
    .news-mini { grid-template-columns: 96px 1fr; }
    .news-thumb { width: 96px; height: 76px; }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}
