:root {
    --color-ink: #222a31;
    --color-muted: #77828b;
    --color-line: #e7edf0;
    --color-soft: #f6f9fa;
    --color-navy: #162832;
    --color-navy-dark: #111b22;
    --color-cyan: #26c2c8;
    --color-red: #f15b5d;
    --color-gold: #f7c653;
    --content-width: 1140px;
    --shadow-card: 0 12px 28px rgba(18, 43, 62, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--color-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--color-cyan);
}

p {
    margin: 0 0 16px;
}

.topbar {
    background: #f5f6f7;
    border-bottom: 1px solid #eceff1;
    color: #8a959d;
    font-size: 13px;
}

.topbar__inner,
.brandbar__inner,
.section__inner,
.strip-cta__inner,
.news-band__inner,
.values-band__inner,
.testimonial-band__inner,
.counter-band__inner,
.footer-top__inner,
.footer-bottom__inner,
.content-list,
.archive-list,
.search-results,
.page-content,
.single-content,
.not-found,
.breadcrumb {
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
}

.topbar__inner,
.brandbar__inner,
.strip-cta__inner,
.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar p {
    margin: 0;
    padding: 9px 0;
}

.topbar__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.topbar__phone {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 18px;
    color: #e51f38;
    font-size: 13px;
    font-weight: 800;
}

.topbar__phone::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background: #d9e0e4;
    transform: translateY(-50%);
}

.topbar__phone-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    color: #e51f38;
    flex: 0 0 auto;
    overflow: hidden;
}

.topbar__phone-icon svg {
    display: block;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px;
    max-height: 16px;
    fill: currentColor;
}

.topbar__phone:hover .topbar__phone-icon {
    color: #c9182f;
}

.brandbar {
    background: #fff;
    position: relative;
    z-index: 40;
}

.brandbar__inner {
    min-height: 92px;
}

.site-branding img {
    width: 223px;
}

.site-nav ul,
.site-footer__nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav > div > ul,
.site-nav > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav li {
    position: relative;
}

.brandbar .site-nav a {
    position: relative;
    display: block;
    padding: 34px 19px;
    color: #26313a;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.brandbar .site-nav > div > ul > .menu-item-has-children > a,
.brandbar .site-nav > ul > .menu-item-has-children > a {
    padding-right: 34px;
}

.site-nav .menu-item-has-children > a::before {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-64%) rotate(45deg);
    opacity: 0.75;
}

.site-nav li:hover > a,
.site-nav .current-menu-item > a {
    color: var(--color-cyan);
}

.site-nav .current-menu-item > a::after,
.site-nav li:hover > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 3px;
    background: var(--color-cyan);
}

.site-nav .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 210px;
    background: #fff;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.18s ease;
    z-index: 80;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    transform: translateX(8px);
}

.site-nav .sub-menu li:hover > .sub-menu,
.site-nav .sub-menu li:focus-within > .sub-menu {
    transform: translateX(0);
}

.site-nav .sub-menu a {
    color: var(--color-muted);
    padding: 13px 18px;
    border-bottom: 1px solid #eef2f4;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.site-nav .sub-menu .menu-item-has-children > a {
    padding-right: 34px;
}

.site-nav .sub-menu .menu-item-has-children > a::before {
    right: 16px;
    transform: translateY(-50%) rotate(-45deg);
}

.site-nav .sub-menu a:hover {
    color: var(--color-navy);
    background: #f7f9fa;
}

.navrow__cta,
.button,
.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    background: var(--color-cyan);
    color: #fff;
    border: 1px solid var(--color-cyan);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.brandbar .navrow__cta {
    min-height: 46px;
    padding: 0 22px;
    flex: 0 0 auto;
}

.navrow__cta:hover,
.button:hover,
.footer-button:hover {
    background: #2fa5b8;
    color: #fff;
}

.button--light {
    background: #fff;
    border-color: #fff;
    color: var(--color-navy);
}

.button--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(15, 37, 53, 0.92), rgba(15, 37, 53, 0.58), rgba(15, 37, 53, 0.2)),
        url("../images/hero-slider-1.jpg") center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 16px;
    background: rgba(247, 198, 83, 0.72);
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
    padding: 104px 0 132px;
}

.hero__eyebrow {
    margin: 0 0 12px;
    color: #9bd7e2;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
}

.hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.strip-cta {
    background: var(--color-soft);
    border-top: 1px solid #edf1f3;
    border-bottom: 1px solid #edf1f3;
}

.strip-cta__inner {
    min-height: 72px;
}

.strip-cta p {
    margin: 0;
    color: var(--color-muted);
}

.section {
    padding: 58px 0;
}

.section--compact {
    padding-top: 24px;
}

.section--split {
    padding-top: 46px;
}

.section-heading {
    margin-bottom: 28px;
    text-align: center;
}

.section-heading--left {
    text-align: left;
}

.section-heading h2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--color-ink);
    font-size: 28px;
    line-height: 1.2;
}

.section-heading h2::after {
    content: "";
    width: 42px;
    height: 3px;
    background: var(--color-red);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-tile {
    position: relative;
    min-height: 132px;
    padding: 24px 72px 24px 24px;
    border: 1px solid var(--color-line);
    background: #fff;
    transition: 0.18s ease;
}

.service-tile:hover {
    border-color: var(--color-cyan);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.service-tile__icon {
    position: absolute;
    right: 22px;
    top: 24px;
    color: #c4cdd3;
    font-size: 32px;
    font-weight: 800;
}

.service-tile h3,
.advantage-card h3,
.consultant-card h3,
.news-card h3 {
    margin: 0 0 8px;
    color: var(--color-ink);
    font-size: 18px;
    line-height: 1.35;
}

.service-tile p,
.advantage-card p,
.consultant-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-card {
    background: #fff;
    box-shadow: var(--shadow-card);
}

.advantage-card__image,
.about-visual,
.consultant-card__photo,
.gallery-grid a {
    background:
        linear-gradient(135deg, rgba(23, 58, 82, 0.2), rgba(63, 182, 201, 0.2)),
        url("../images/core-values-bg.jpg") center / cover no-repeat;
}

.advantage-card__image {
    aspect-ratio: 3 / 2;
}

.advantage-card:nth-child(2) .advantage-card__image {
    background-image:
        linear-gradient(135deg, rgba(23, 58, 82, 0.18), rgba(247, 198, 83, 0.2)),
        url("../images/blured.jpg");
}

.advantage-card:nth-child(3) .advantage-card__image {
    background-image:
        linear-gradient(135deg, rgba(38, 194, 200, 0.16), rgba(17, 27, 34, 0.28)),
        url("../images/counter-bg.jpg");
}

.advantage-card:nth-child(4) .advantage-card__image {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(38, 194, 200, 0.16)),
        url("../images/widget-title-logo.png");
    background-size: cover, auto;
    background-repeat: no-repeat;
}

.advantage-card__body {
    padding: 18px;
}

.advantage-card a,
.read-more,
.news-list__more {
    display: inline-flex;
    margin-top: 12px;
    color: var(--color-cyan);
    font-weight: 700;
}

.news-band {
    padding: 56px 0;
    background:
        linear-gradient(rgba(16, 43, 62, 0.88), rgba(16, 43, 62, 0.88)),
        url("../images/blured.jpg") center / cover no-repeat;
}

.news-band__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 24px;
}

.news-card,
.news-list {
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.news-card {
    min-height: 152px;
    padding: 24px;
}

.news-card time {
    display: inline-flex;
    padding: 5px 9px;
    margin-bottom: 16px;
    background: var(--color-red);
    color: #fff;
    font-weight: 800;
}

.news-card span,
.news-list a {
    color: var(--color-muted);
    font-size: 13px;
}

.news-list {
    padding: 18px 22px;
}

.news-list a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid #edf1f3;
}

.values-band {
    padding: 76px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url("../images/core-values-bg.jpg") center / cover no-repeat;
    text-align: center;
}

.values-band h2 {
    margin: 0 0 6px;
    font-size: 36px;
}

.values-band__label {
    color: var(--color-cyan);
    font-size: 13px;
    font-weight: 800;
}

.values-band ul {
    display: grid;
    gap: 8px;
    max-width: 720px;
    margin: 26px auto 0;
    padding: 0;
    list-style: none;
    font-size: 17px;
    font-weight: 700;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.about-visual {
    min-height: 300px;
    background-image:
        linear-gradient(135deg, rgba(23, 58, 82, 0.14), rgba(38, 194, 200, 0.14)),
        url("../images/blured.jpg");
    box-shadow: var(--shadow-card);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.gallery-grid a {
    aspect-ratio: 4 / 3;
    transition: 0.18s ease;
}

.gallery-grid a:nth-child(2n) {
    background-image:
        linear-gradient(135deg, rgba(23, 58, 82, 0.25), rgba(183, 154, 91, 0.25)),
        url("../images/counter-bg.jpg");
}

.gallery-grid a:nth-child(3n) {
    background-image:
        linear-gradient(135deg, rgba(38, 194, 200, 0.2), rgba(255, 255, 255, 0.24)),
        url("../images/blured.jpg");
}

.gallery-grid a:nth-child(4n) {
    background-image:
        linear-gradient(135deg, rgba(23, 58, 82, 0.16), rgba(247, 198, 83, 0.18)),
        url("../images/core-values-bg.jpg");
}

.gallery-grid a:hover {
    transform: scale(1.02);
}

.faq__item {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
}

.faq__item summary {
    cursor: pointer;
    color: var(--color-ink);
    font-weight: 700;
}

.faq__item p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.consultant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.consultant-card {
    background: #fff;
}

.consultant-card__photo {
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
}

.consultant-card:nth-child(2) .consultant-card__photo {
    background-image:
        linear-gradient(135deg, rgba(23, 58, 82, 0.22), rgba(38, 194, 200, 0.18)),
        url("../images/blured.jpg");
}

.consultant-card:nth-child(3) .consultant-card__photo {
    background-image:
        linear-gradient(135deg, rgba(23, 58, 82, 0.16), rgba(247, 198, 83, 0.18)),
        url("../images/counter-bg.jpg");
}

.consultant-card__role {
    color: #9aa5ad;
    font-weight: 700;
}

.testimonial-band {
    padding: 56px 0;
    background: #eef1f3;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-grid blockquote {
    position: relative;
    margin: 0;
    padding: 24px 28px 24px 56px;
    background: #fff;
    color: var(--color-muted);
}

.testimonial-grid blockquote::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 28px;
    width: 18px;
    height: 18px;
    background: var(--color-cyan);
}

.testimonial-grid cite {
    display: block;
    margin-top: 14px;
    color: var(--color-ink);
    font-style: normal;
    font-weight: 700;
}

.section--partners {
    padding-bottom: 44px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--color-line);
    background: #fff;
}

.partner-grid span {
    display: grid;
    place-items: center;
    min-height: 76px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    color: #8c99a2;
    font-weight: 800;
}

.counter-band {
    padding: 54px 0;
    background:
        linear-gradient(rgba(20, 42, 56, 0.72), rgba(20, 42, 56, 0.72)),
        url("../images/counter-bg.jpg") center / cover no-repeat;
}

.counter-band__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.counter-item {
    display: grid;
    place-items: center;
    min-height: 112px;
    padding: 18px;
    border-right: 1px solid var(--color-line);
}

.counter-item strong {
    color: var(--color-red);
    font-size: 34px;
    line-height: 1;
}

.counter-item span {
    color: var(--color-muted);
    font-size: 13px;
}

.site-footer {
    background: var(--color-navy);
    color: #a9c0d1;
}

.footer-top {
    padding: 54px 0;
}

.footer-widgets-legacy {
    padding: 34px 0 0;
    background: var(--color-navy);
}

.footer-widgets-legacy__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
}

.footer-widgets-legacy .widget-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
}

.footer-top__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 34px;
}

.footer-about img {
    margin-bottom: 18px;
}

.footer-top h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 16px;
}

.footer-list,
.site-footer__nav ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav a {
    color: #a9c0d1;
}

.footer-button {
    margin-top: 8px;
}

.footer-bottom {
    background: var(--color-navy-dark);
    color: #6f8799;
    font-size: 13px;
}

.footer-bottom__inner {
    min-height: 58px;
}

.footer-bottom p {
    margin: 0;
}

.content-list,
.archive-list,
.search-results,
.page-content,
.single-content,
.not-found {
    padding: 42px 0;
}

.content-card,
.mineral-card {
    border-bottom: 1px solid var(--color-line);
    padding: 24px 0;
}

.mineral-card {
    display: grid;
    grid-template-columns: minmax(180px, 280px) 1fr;
    gap: 24px;
}

.breadcrumb {
    padding: 18px 0;
    color: var(--color-muted);
    font-size: 13px;
}

.page-hero {
    background: var(--color-gold);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.page-hero__inner {
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
    padding: 42px 0 38px;
}

.page-hero h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 300px;
    gap: 48px;
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
    padding: 46px 0 72px;
}

.content-layout__main {
    min-width: 0;
}

.service-sidebar {
    display: grid;
    align-content: start;
    gap: 28px;
}

.sidebar-consult {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.sidebar-consult__avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    background:
        linear-gradient(135deg, rgba(63, 182, 201, 0.26), rgba(207, 47, 62, 0.14)),
        url("../images/core-values-bg.jpg") center / cover no-repeat;
}

.sidebar-consult strong,
.sidebar-consult span {
    display: block;
}

.sidebar-consult strong {
    color: var(--color-ink);
}

.sidebar-consult span {
    color: var(--color-muted);
    font-size: 13px;
}

.sidebar-menu {
    background: #1c222b;
}

.sidebar-menu h2,
.sidebar-cta h2 {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.sidebar-menu h2 {
    padding: 14px 18px;
    background: #171d25;
    color: #fff;
}

.sidebar-menu a {
    display: block;
    padding: 15px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
}

.sidebar-menu a:hover,
.sidebar-menu a[aria-current="page"] {
    background: var(--color-cyan);
    color: #fff;
}

.sidebar-cta {
    padding: 26px;
    background: var(--color-cyan);
    color: #fff;
    border-top: 0;
    box-shadow: none;
}

.sidebar-cta p {
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.sidebar-cta a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin-top: 8px;
    padding: 0 16px;
    background: #fff;
    color: var(--color-ink);
    font-weight: 800;
}

.sidebar-related {
    padding: 20px 18px;
    border-top: 3px solid var(--color-cyan);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.sidebar-related h2 {
    margin: 0 0 14px;
    color: var(--color-ink);
    font-size: 15px;
    line-height: 1.4;
}

.sidebar-related ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-related li {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-line);
}

.sidebar-related li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar-related a {
    display: block;
    color: #3e4a53;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.sidebar-related a:hover {
    color: var(--color-cyan);
}

.sidebar-related time {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 12px;
}

.page-content,
.single-content,
.archive-list,
.content-list {
    padding: 0;
}

.service-page-content,
.article-content {
    color: #33424c;
    font-size: 15px;
}

.service-page-content h2,
.article-content h2 {
    position: relative;
    margin: 32px 0 16px;
    padding-left: 18px;
    color: #1b2730;
    font-size: 20px;
    line-height: 1.45;
}

.service-page-content h2::before,
.article-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.24em;
    width: 4px;
    height: 1.15em;
    border-radius: 2px;
    background: var(--color-cyan);
}

.service-page-content h3,
.article-content h3 {
    margin: 28px 0 12px;
    color: #26313a;
    font-size: 18px;
}

.service-page-content p,
.article-content p {
    margin-bottom: 18px;
}

.service-page-content img,
.article-content img {
    margin: 20px auto;
    box-shadow: 0 8px 22px rgba(18, 43, 62, 0.08);
}

.service-page-content ul,
.service-page-content ol,
.article-content ul,
.article-content ol {
    padding-left: 1.4em;
}

.service-page-content table,
.article-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border: 1px solid var(--color-line);
    color: #33424c;
    font-size: 14px;
    line-height: 1.65;
}

.service-page-content caption,
.article-content caption {
    margin-bottom: 10px;
    color: var(--color-muted);
    font-size: 13px;
    text-align: left;
}

.service-page-content th,
.service-page-content td,
.article-content th,
.article-content td {
    padding: 12px 14px;
    border: 1px solid var(--color-line);
    vertical-align: top;
}

.service-page-content th,
.article-content th {
    background: #eefafa;
    color: var(--color-ink);
    font-weight: 800;
    text-align: left;
}

.service-page-content tbody tr:nth-child(even),
.article-content tbody tr:nth-child(even) {
    background: #fbfdfd;
}

.service-page-content tbody tr:hover,
.article-content tbody tr:hover {
    background: #f2fbfb;
}

.post-list {
    display: grid;
    gap: 58px;
}

.post-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 0 42px 48px;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--color-line);
    box-shadow: none;
}

.post-card__date {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 38px;
    min-height: 56px;
    background: var(--color-cyan);
    color: #fff;
    line-height: 1;
}

.post-card__date span {
    padding-top: 7px;
    font-size: 11px;
    font-weight: 700;
}

.post-card__date strong {
    padding-bottom: 8px;
    font-size: 18px;
}

.post-card__image {
    display: block;
    width: min(100%, 620px);
    background: var(--color-soft);
}

.post-card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.post-card__meta,
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #9ca7ad;
    font-size: 12px;
}

.post-card h2 {
    max-width: 640px;
    margin: 2px 0 10px;
    color: var(--color-ink);
    font-size: 20px;
    line-height: 1.35;
}

.post-card__excerpt {
    max-width: 680px;
    color: var(--color-muted);
    font-size: 14px;
}

.post-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    margin-top: 8px;
    padding: 0 14px;
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    font-size: 12px;
    font-weight: 800;
}

.post-card__more:hover {
    background: var(--color-cyan);
    color: #fff;
}

.archive-sidebar {
    display: grid;
    align-content: start;
    gap: 28px;
}

.archive-sidebar .search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid var(--color-line);
}

.archive-sidebar .search-field {
    min-width: 0;
    border: 0;
    padding: 10px 12px;
}

.archive-sidebar .search-submit {
    border: 0;
    padding: 0 14px;
    background: var(--color-cyan);
    color: #fff;
    font-weight: 700;
}

.archive-widget {
    border-top: 3px solid var(--color-cyan);
    padding-top: 14px;
}

.archive-widget h2 {
    margin: 0 0 14px;
    color: var(--color-ink);
    font-size: 15px;
}

.archive-widget__posts {
    display: grid;
    gap: 11px;
}

.archive-widget__posts a {
    display: block;
    color: #4d5961;
    font-size: 13px;
    line-height: 1.55;
}

.archive-widget--cta {
    padding: 22px;
    border-top: 0;
    background: var(--color-cyan);
    color: #fff;
}

.archive-widget--cta h2,
.archive-widget--cta p,
.archive-widget--cta a {
    color: #fff;
}

.archive-widget--cta p {
    font-size: 13px;
}

.archive-widget--cta a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    margin-top: 6px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 800;
}

.archive-categories {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.archive-categories a {
    color: var(--color-muted);
    font-size: 13px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-cloud a {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 9px;
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    font-size: 12px;
}

.tag-cloud a:hover {
    background: var(--color-cyan);
    color: #fff;
}

.entry-meta {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-line);
}

.article-content {
    max-width: 760px;
}

.single-featured-image {
    margin-bottom: 24px;
}

.single-featured-image img {
    width: 100%;
    height: auto;
}

.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    color: var(--color-muted);
}

.single-footer {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--color-line);
}

.single-tags a {
    display: inline-flex;
    margin: 0 8px 8px 0;
    padding: 6px 10px;
    background: #1b222b;
    color: #fff;
    font-size: 13px;
}

.comments-area {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--color-line);
}

.comments-title,
.comment-reply-title {
    margin: 0 0 18px;
    color: var(--color-ink);
    font-size: 20px;
}

.comment-list {
    display: grid;
    gap: 18px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.comment-body {
    padding: 18px;
    background: var(--color-soft);
}

.comment-form {
    display: grid;
    gap: 14px;
}

.comment-form input,
.comment-form textarea,
.search-form input[type="search"] {
    width: 100%;
    border: 1px solid var(--color-line);
    padding: 10px 12px;
}

.comment-form .submit {
    width: auto;
    border: 0;
    padding: 12px 20px;
    background: var(--color-cyan);
    color: #fff;
    font-weight: 700;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid var(--color-line);
    color: var(--color-muted);
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    color: #fff;
}

.entry-content {
    position: relative;
}

.entry-content h2 {
    scroll-margin-top: 104px;
}

.toc-wrapper {
    max-width: 420px;
    margin: 8px 0 34px;
}

.toc-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid #eceef1;
    border-radius: 12px;
    background: #f7f7f8;
    box-shadow: none;
}

.toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px 10px;
}

.toc-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-ink);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.toc-title__icon {
    position: relative;
    width: 20px;
    height: 18px;
    flex: 0 0 auto;
}

.toc-title__icon::before,
.toc-title__icon::after {
    content: "";
    position: absolute;
    top: 3px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-cyan);
}

.toc-title__icon::before {
    left: 7px;
    width: 12px;
    box-shadow: 0 6px 0 var(--color-cyan), 0 12px 0 var(--color-cyan);
}

.toc-title__icon::after {
    left: 1px;
    width: 3px;
    box-shadow: 0 6px 0 var(--color-cyan), 0 12px 0 var(--color-cyan);
}

.toc-toggle {
    position: relative;
    min-width: 72px;
    min-height: 32px;
    flex: 0 0 auto;
    padding: 0 24px 0 11px;
    border: 1px solid var(--color-cyan);
    border-radius: 4px;
    background: #fff;
    color: var(--color-cyan);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.toc-toggle::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-62%) rotate(45deg);
    transition: transform 0.18s ease;
}

.toc-container.is-expanded .toc-toggle::before {
    transform: translateY(-38%) rotate(-135deg);
}

.toc-content {
    padding: 6px 20px 18px;
}

.toc-hidden {
    display: none;
}

.toc-list {
    position: relative;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 2px 0 0 34px;
    list-style: none;
}

.toc-list::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 13px;
    bottom: 13px;
    width: 2px;
    background: #d8eff0;
}

.toc-list li {
    position: relative;
}

.toc-list li::before {
    content: "";
    position: absolute;
    left: -31px;
    top: 50%;
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border: 3px solid #b9dfe2;
    border-radius: 50%;
    background: #f7f7f8;
    transform: translateY(-50%);
}

.toc-list a {
    display: block;
    overflow: hidden;
    padding: 8px 0;
    color: #4a4f55;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--color-cyan);
}

@media (max-width: 980px) {
    .topbar__inner,
    .brandbar__inner,
    .strip-cta__inner,
    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .brandbar .navrow__cta {
        order: 3;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 40px;
        padding: 0 12px;
        border: 1px solid var(--color-line);
        background: #fff;
        color: var(--color-ink);
        font-weight: 700;
    }

    .nav-toggle i,
    .nav-toggle i::before,
    .nav-toggle i::after {
        display: block;
        width: 18px;
        height: 2px;
        background: currentColor;
        content: "";
    }

    .nav-toggle i {
        position: relative;
    }

    .nav-toggle i::before,
    .nav-toggle i::after {
        position: absolute;
        left: 0;
    }

    .nav-toggle i::before {
        top: -6px;
    }

    .nav-toggle i::after {
        top: 6px;
    }

    .site-nav {
        display: none;
        order: 4;
        width: 100%;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav > div > ul,
    .site-nav > ul {
        display: block;
    }

    .brandbar .site-nav a {
        padding: 13px 0;
        border-bottom: 1px solid var(--color-line);
    }

    .brandbar .site-nav > div > ul > .menu-item-has-children > a,
    .brandbar .site-nav > ul > .menu-item-has-children > a {
        padding-right: 24px;
    }

    .site-nav .menu-item-has-children > a::before,
    .site-nav .sub-menu .menu-item-has-children > a::before {
        right: 4px;
        transform: translateY(-64%) rotate(45deg);
    }

    .site-nav .sub-menu {
        position: static;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f7fafb;
    }

    .site-nav .sub-menu a {
        color: var(--color-muted);
        border-bottom-color: var(--color-line);
        padding-left: 30px;
    }

    .service-grid,
    .advantage-grid,
    .news-band__inner,
    .split-grid,
    .consultant-grid,
    .testimonial-grid,
    .footer-top__inner,
    .footer-widgets-legacy__inner,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .counter-band__inner,
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .toc-container {
        position: static;
        width: 100%;
        margin-bottom: 24px;
    }

    .service-sidebar,
    .archive-sidebar {
        order: -1;
    }

    .service-page-content table,
    .article-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 640px) {
    .topbar__links,
    .hero__actions {
        display: grid;
        width: 100%;
    }

    .topbar__phone {
        padding-left: 0;
    }

    .topbar__phone::before {
        display: none;
    }

    .brandbar__inner {
        min-height: 0;
        padding: 18px 0;
    }

    .hero {
        min-height: 0;
    }

    .hero__inner {
        padding: 72px 0 88px;
    }

    .section {
        padding: 42px 0;
    }

    .service-tile {
        padding-right: 24px;
    }

    .service-tile__icon {
        position: static;
        margin-bottom: 12px;
    }

    .counter-band__inner,
    .partner-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .content-layout {
        padding-top: 32px;
    }

    .post-card {
        padding: 0 0 34px 48px;
    }

    .post-card__image {
        width: 100%;
    }
}
