:root {
    --color-primary: #0b5fe8;
    --color-primary-dark: #004bc4;
    --color-dark: #101a2d;
    --color-dark-2: #14213a;
    --color-white: #ffffff;
    --color-text: #101a2d;
    --color-text-soft: #607089;
    --color-border: #dce7f5;
    --color-background: #f7faff;
    --color-surface: #ffffff;
    --color-surface-soft: #f3f7fd;
    --color-accent: #0f5eff;
    --color-warm: #b45309;
    --shadow-soft: 0 10px 25px rgba(15, 31, 67, 0.08);
    --radius-md: 12px;
    --radius-lg: 18px;
    --container-width: 1320px;
}

body {
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.6;
}

.container {
    width: min(100% - 32px, var(--container-width));
    margin-left: auto;
    margin-right: auto;
}

.section-space {
    padding: 56px 0;
}

.section-white {
    background: #ffffff;
}

.section-dark,
.section-dark-accent,
.section-dark-stats,
.site-footer,
.hero-home,
.page-hero {
    background-color: var(--color-dark);
    color: #ffffff;
}

.site-topbar {
    background: #04101f;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
}

.site-topbar__inner,
.site-header-main__inner,
.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-topbar__inner {
    min-height: 36px;
}

.site-topbar__right {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.site-header-main {
    background: #08172e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-main__inner {
    min-height: 90px;
}

.site-logo img {
    max-height: 52px;
    width: auto;
}

/* Modern global shell */
body {
    background: #f7faff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92) !important;
    border-bottom: 1px solid rgba(220, 231, 245, .92) !important;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06) !important;
    backdrop-filter: blur(16px);
}

.site-header-main {
    background: transparent !important;
    border-bottom: 0 !important;
}

.site-header-main__inner {
    min-height: 74px !important;
    gap: 28px;
}

.site-logo__image {
    max-height: 46px;
}

.main-navigation {
    flex: 1 1 auto;
}

.main-navigation .menu,
.main-navigation ul {
    align-items: center;
    gap: 8px;
}

.main-navigation a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 14px !important;
    color: #17233a !important;
    font-size: 14px !important;
    font-weight: 850 !important;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    background: transparent !important;
    color: #0b5fe8 !important;
}

.header-actions {
    gap: 10px;
}

.header-search {
    width: 46px !important;
    height: 46px;
    border: 1px solid #dce7f5 !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
    overflow: hidden;
}

.header-search input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.header-search button {
    width: 46px !important;
    height: 46px !important;
    border-radius: 999px !important;
    background: transparent !important;
}

.header-search button::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid #0b5fe8;
    border-radius: 50%;
    position: absolute;
    left: 14px;
    top: 13px;
}

.header-search button::after {
    content: "";
    width: 8px;
    height: 2px;
    background: #0b5fe8;
    border-radius: 999px;
    position: absolute;
    left: 27px;
    top: 28px;
    transform: rotate(45deg);
}

.header-actions .button,
.header-actions .button--primary {
    min-height: 46px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #0b5fe8, #004bc4) !important;
    color: #fff !important;
    box-shadow: 0 14px 26px rgba(11, 95, 232, .18) !important;
    border: 0 !important;
}

.floating-contact {
    right: 22px !important;
    bottom: 22px !important;
    gap: 8px !important;
}

.floating-contact a {
    width: 54px !important;
    height: 54px !important;
    border-radius: 999px !important;
    background: #0b5fe8 !important;
    color: #fff !important;
    box-shadow: 0 16px 34px rgba(11, 95, 232, .24) !important;
    font-size: 0 !important;
}

.floating-contact a:first-child::before {
    content: "☎";
    font-size: 21px;
    line-height: 1;
}

.floating-contact a:not(:first-child) {
    display: none !important;
}

footer.site-footer.site-footer--modern {
    margin-top: 0 !important;
    clip-path: none !important;
    background: #f8fbff !important;
    color: #101a2d !important;
    border-top: 1px solid #dce7f5 !important;
    overflow: hidden !important;
}

footer.site-footer.site-footer--modern::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .site-footer__inner {
    padding-top: 42px;
    padding-bottom: 26px;
}

footer.site-footer.site-footer--modern .site-footer__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 30px;
    border: 1px solid #dce7f5;
    border-radius: 28px;
    background: linear-gradient(135deg, #eaf2ff, #fff);
    box-shadow: 0 22px 60px rgba(15, 23, 42, .07);
    margin-bottom: 34px;
}

footer.site-footer.site-footer--modern .site-footer__cta span {
    display: inline-flex;
    margin-bottom: 9px;
    color: #0b5fe8;
    font-weight: 950;
}

footer.site-footer.site-footer--modern .site-footer__cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -.035em;
    color: #101a2d;
}

footer.site-footer.site-footer--modern .site-footer__cta p {
    max-width: 700px;
    margin: 12px 0 0;
    color: #607089;
    line-height: 1.65;
}

footer.site-footer.site-footer--modern .site-footer__cta-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b5fe8, #004bc4);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 16px 30px rgba(11, 95, 232, .18);
}

footer.site-footer.site-footer--modern .site-footer__grid {
    display: grid !important;
    grid-template-columns: 1.4fr .9fr .9fr 1.05fr !important;
    gap: 34px !important;
    align-items: start !important;
}

footer.site-footer.site-footer--modern .site-footer__brand-col,
footer.site-footer.site-footer--modern .site-footer__col {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

footer.site-footer.site-footer--modern .footer-brand__logo {
    display: inline-flex;
}

footer.site-footer.site-footer--modern .footer-brand__logo img {
    width: 220px !important;
    max-width: 100% !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-description,
footer.site-footer.site-footer--modern .site-footer__col > p {
    color: #607089 !important;
    line-height: 1.7 !important;
}

footer.site-footer.site-footer--modern .footer-description {
    max-width: 380px;
    margin: 18px 0 !important;
}

footer.site-footer.site-footer--modern .site-footer__title {
    position: relative;
    margin: 0 0 15px !important;
    padding: 0 0 10px !important;
    color: #101a2d !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: normal !important;
}

footer.site-footer.site-footer--modern .site-footer__title::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .site-footer__title::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 34px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #0b5fe8 !important;
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-link-list,
footer.site-footer.site-footer--modern .footer-contact-list {
    display: grid;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a,
footer.site-footer.site-footer--modern .footer-contact-list,
footer.site-footer.site-footer--modern .footer-contact-list a {
    color: #41516a !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    line-height: 1.45 !important;
    white-space: normal !important;
}

footer.site-footer.site-footer--modern .footer-menu a::before,
footer.site-footer.site-footer--modern .footer-link-list a::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .footer-contact-list li {
    display: grid !important;
    gap: 3px !important;
    color: #41516a !important;
}

footer.site-footer.site-footer--modern .footer-contact-list span {
    color: #0b5fe8 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 8px !important;
    padding: 8px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 16px !important;
    background: #fff !important;
}

footer.site-footer.site-footer--modern .footer-newsletter input {
    min-height: 44px !important;
    border: 0 !important;
    padding: 0 10px !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-newsletter button {
    min-height: 44px !important;
    border: 0 !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    background: #0b5fe8 !important;
    color: #fff !important;
    font-weight: 950 !important;
}

footer.site-footer.site-footer--modern .site-footer__bottom {
    margin-top: 34px !important;
    padding-top: 18px !important;
    border-top: 1px solid #dce7f5 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .site-footer__bottom,
footer.site-footer.site-footer--modern .site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

footer.site-footer.site-footer--modern .copyright,
footer.site-footer.site-footer--modern .footer-bottom-links a {
    color: #607089 !important;
}

footer.site-footer.site-footer--modern .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 1020px) {
    .site-header-main__inner {
        min-height: 68px !important;
    }

    .header-actions {
        display: none !important;
    }

    footer.site-footer.site-footer--modern .site-footer__cta,
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 700px) {
    .site-logo__image {
        max-height: 40px;
    }

    footer.site-footer.site-footer--modern .site-footer__inner {
        padding-top: 28px;
    }

    footer.site-footer.site-footer--modern .site-footer__cta,
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
    }

    footer.site-footer.site-footer--modern .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Footer final overrides */
footer.site-footer.site-footer--modern {
    position: relative;
    overflow: hidden;
    color: #d9e8ee;
    background:
        radial-gradient(circle at 12% -8%, rgba(15, 94, 255, .22), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(47, 128, 255, .18), transparent 28%),
        linear-gradient(135deg, #07111d 0%, #092333 48%, #073f3b 100%);
}

footer.site-footer.site-footer--modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
    pointer-events: none;
}

footer.site-footer.site-footer--modern .site-footer__top {
    position: relative;
    z-index: 1;
    padding: 0 0 42px;
}

footer.site-footer.site-footer--modern .footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin: 0 0 38px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-top: 0;
    border-radius: 0 0 28px 28px;
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 255, 255, .2), transparent 24%),
        linear-gradient(135deg, rgba(15, 94, 255, .96), rgba(8, 145, 178, .92));
    box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

footer.site-footer.site-footer--modern .footer-cta span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #eaf2ff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

footer.site-footer.site-footer--modern .footer-cta h2 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

footer.site-footer.site-footer--modern .footer-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

footer.site-footer.site-footer--modern .footer-cta__primary,
footer.site-footer.site-footer--modern .footer-cta__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 15px;
    font-weight: 900;
    white-space: nowrap;
}

footer.site-footer.site-footer--modern .footer-cta__primary {
    color: #0f172a;
    background: #fff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, .18);
}

footer.site-footer.site-footer--modern .footer-cta__secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .1);
}

footer.site-footer.site-footer--modern .site-footer__grid {
    display: grid;
    grid-template-columns: 1.55fr .9fr 1.12fr .9fr 1.12fr;
    gap: 22px;
    align-items: start;
}

footer.site-footer.site-footer--modern .site-footer__brand-col {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
}

footer.site-footer.site-footer--modern .footer-brand__logo img {
    width: 230px;
    max-width: 100%;
    height: auto;
}

footer.site-footer.site-footer--modern .footer-description,
footer.site-footer.site-footer--modern .site-footer__col > p {
    color: rgba(226, 242, 247, .82);
}

footer.site-footer.site-footer--modern .footer-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

footer.site-footer.site-footer--modern .footer-capabilities span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: #bff8ec;
    background: rgba(15, 94, 255, .12);
    border: 1px solid rgba(45, 212, 191, .18);
    font-size: 12px;
    font-weight: 850;
}

footer.site-footer.site-footer--modern .site-footer__title {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

footer.site-footer.site-footer--modern .site-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2dd4bf, #2f80ff);
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-contact-list,
footer.site-footer.site-footer--modern .footer-link-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer.site-footer.site-footer--modern .footer-menu li,
footer.site-footer.site-footer--modern .footer-contact-list li,
footer.site-footer.site-footer--modern .footer-link-list li {
    margin: 0;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(226, 242, 247, .82);
    font-weight: 700;
}

footer.site-footer.site-footer--modern .footer-menu a::before,
footer.site-footer.site-footer--modern .footer-link-list a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: rgba(45, 212, 191, .8);
    transform: rotate(45deg);
}

footer.site-footer.site-footer--modern .footer-contact-list li {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
    color: rgba(226, 242, 247, .84);
}

footer.site-footer.site-footer--modern .footer-contact-list span {
    color: #86efac;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

footer.site-footer.site-footer--modern .footer-contact-list a {
    color: #fff;
    font-weight: 850;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    display: grid;
    gap: 10px;
}

footer.site-footer.site-footer--modern .footer-newsletter input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .075);
}

footer.site-footer.site-footer--modern .footer-newsletter button {
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    color: #0f172a;
    background: linear-gradient(135deg, #eaf2ff, #ffffff);
    font-weight: 950;
}

footer.site-footer.site-footer--modern .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

footer.site-footer.site-footer--modern .footer-social a {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    font-size: 13px;
    font-weight: 950;
}

footer.site-footer.site-footer--modern .site-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: rgba(2, 8, 23, .22);
}

footer.site-footer.site-footer--modern .copyright,
footer.site-footer.site-footer--modern .footer-bottom-links a {
    color: rgba(226, 242, 247, .72);
}

@media (max-width: 1180px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    footer.site-footer.site-footer--modern .site-footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    footer.site-footer.site-footer--modern .footer-cta {
        grid-template-columns: 1fr;
    }

    footer.site-footer.site-footer--modern .footer-cta__actions {
        justify-content: flex-start;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    footer.site-footer.site-footer--modern .footer-cta,
    footer.site-footer.site-footer--modern .footer-cta__actions,
    footer.site-footer.site-footer--modern .footer-cta__primary,
    footer.site-footer.site-footer--modern .footer-cta__secondary {
        width: 100%;
    }

footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* Footer redesign: clean light corporate layout */
footer.site-footer.site-footer--modern {
    overflow: hidden;
    color: #334155;
    background:
        linear-gradient(180deg, #ffffff 0%, #f4fafb 100%) !important;
    border-top: 1px solid #dbe8f0;
}

footer.site-footer.site-footer--modern::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .site-footer__top {
    padding: 46px 0 38px !important;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    grid-template-columns: 1.35fr .95fr 1.12fr .98fr 1.05fr !important;
    gap: 36px !important;
    align-items: start;
}

footer.site-footer.site-footer--modern .site-footer__brand-col {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-brand__logo {
    display: inline-flex;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-brand__logo img {
    width: 230px !important;
    max-width: 100%;
    height: auto;
    filter: none !important;
}

footer.site-footer.site-footer--modern .footer-description {
    max-width: 360px;
    margin: 18px 0 16px;
    color: #52657a !important;
    font-size: 15px;
    line-height: 1.7;
}

footer.site-footer.site-footer--modern .footer-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

footer.site-footer.site-footer--modern .footer-capabilities span {
    padding: 7px 10px;
    border: 1px solid #bfe9e2;
    border-radius: 999px;
    color: #0f5eff;
    background: #ecfdf8;
    font-size: 12px;
    font-weight: 850;
}

footer.site-footer.site-footer--modern .site-footer__title {
    margin: 0 0 16px !important;
    padding: 0 0 10px !important;
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 950;
    letter-spacing: .03em;
    line-height: 1.3;
    text-transform: uppercase;
}

footer.site-footer.site-footer--modern .site-footer__title::after {
    width: 34px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #0f5eff, #2f80ff) !important;
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-contact-list,
footer.site-footer.site-footer--modern .footer-link-list {
    display: grid;
    gap: 9px !important;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer.site-footer.site-footer--modern .footer-menu li,
footer.site-footer.site-footer--modern .footer-contact-list li,
footer.site-footer.site-footer--modern .footer-link-list li {
    margin: 0 !important;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a,
footer.site-footer.site-footer--modern .footer-contact-list,
footer.site-footer.site-footer--modern .footer-contact-list li {
    color: #52657a !important;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}

footer.site-footer.site-footer--modern .footer-menu a::before,
footer.site-footer.site-footer--modern .footer-link-list a::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .footer-menu a:hover,
footer.site-footer.site-footer--modern .footer-link-list a:hover,
footer.site-footer.site-footer--modern .footer-contact-list a:hover {
    color: #0f5eff !important;
}

footer.site-footer.site-footer--modern .footer-contact-list li {
    display: grid;
    gap: 2px;
    padding: 0 0 10px !important;
    border: 0 !important;
    border-bottom: 1px solid #e2edf3 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-contact-list span {
    color: #0f5eff !important;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

footer.site-footer.site-footer--modern .footer-contact-list a {
    color: #0f172a !important;
    font-weight: 850;
}

footer.site-footer.site-footer--modern .site-footer__col > p {
    max-width: 280px;
    margin: 0 0 14px;
    color: #52657a !important;
    font-size: 14px;
    line-height: 1.6;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    display: grid;
    gap: 10px;
    max-width: 290px;
}

footer.site-footer.site-footer--modern .footer-newsletter input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #cfe0ea !important;
    border-radius: 12px;
    color: #0f172a !important;
    background: #ffffff !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

footer.site-footer.site-footer--modern .footer-newsletter input::placeholder {
    color: #8a9aac;
}

footer.site-footer.site-footer--modern .footer-newsletter button {
    min-height: 46px;
    border: 0 !important;
    border-radius: 12px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #0f5eff, #2f80ff) !important;
    font-weight: 900;
}

footer.site-footer.site-footer--modern .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

footer.site-footer.site-footer--modern .footer-social a {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0 !important;
    border: 1px solid #cfe0ea !important;
    border-radius: 50% !important;
    color: #0f5eff !important;
    background: #ffffff !important;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}

footer.site-footer.site-footer--modern .site-footer__bottom {
    padding: 16px 0 !important;
    border-top: 1px solid #dbe8f0 !important;
    background: #071827 !important;
}

footer.site-footer.site-footer--modern .site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

footer.site-footer.site-footer--modern .copyright,
footer.site-footer.site-footer--modern .footer-bottom-links a {
    color: rgba(226, 242, 247, .78) !important;
    font-size: 13px;
}

footer.site-footer.site-footer--modern .footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

footer.site-footer.site-footer--modern .footer-bottom-links a::before {
    display: none !important;
}

@media (max-width: 1180px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer width correction: use available desktop space */
footer.site-footer.site-footer--modern .site-footer__top > .container,
footer.site-footer.site-footer--modern .site-footer__bottom > .container,
footer.site-footer.site-footer--modern .site-footer__grid,
footer.site-footer.site-footer--modern .site-footer__bottom-inner {
    width: min(100% - 72px, 1760px) !important;
    max-width: 1760px !important;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    grid-template-columns:
        minmax(430px, 1.22fr)
        minmax(300px, .82fr)
        minmax(330px, .9fr)
        minmax(380px, 1fr) !important;
    gap: clamp(56px, 5vw, 112px) !important;
    justify-content: stretch !important;
}

footer.site-footer.site-footer--modern .site-footer__title {
    max-width: none !important;
    white-space: nowrap !important;
    font-size: 18px !important;
    letter-spacing: .01em !important;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a {
    white-space: nowrap !important;
}

footer.site-footer.site-footer--modern .footer-description,
footer.site-footer.site-footer--modern .footer-brand-contact,
footer.site-footer.site-footer--modern .footer-capabilities {
    max-width: 430px !important;
}

footer.site-footer.site-footer--modern .site-footer__col > p,
footer.site-footer.site-footer--modern .footer-newsletter {
    max-width: 380px !important;
}

@media (max-width: 1500px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns:
            minmax(390px, 1.15fr)
            minmax(250px, .82fr)
            minmax(290px, .9fr)
            minmax(320px, 1fr) !important;
        gap: 42px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__title {
        font-size: 17px !important;
    }
}

@media (max-width: 1200px) {
    footer.site-footer.site-footer--modern .site-footer__top > .container,
    footer.site-footer.site-footer--modern .site-footer__bottom > .container,
    footer.site-footer.site-footer--modern .site-footer__grid,
    footer.site-footer.site-footer--modern .site-footer__bottom-inner {
        width: min(100% - 48px, 1120px) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 38px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__title,
    footer.site-footer.site-footer--modern .footer-menu a,
    footer.site-footer.site-footer--modern .footer-link-list a {
        white-space: normal !important;
    }
}

@media (max-width: 680px) {
    footer.site-footer.site-footer--modern .site-footer__top > .container,
    footer.site-footer.site-footer--modern .site-footer__bottom > .container,
    footer.site-footer.site-footer--modern .site-footer__grid,
    footer.site-footer.site-footer--modern .site-footer__bottom-inner {
        width: min(100% - 28px, 1120px) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer hard reset: balanced 4-column composition */
footer.site-footer.site-footer--modern {
    margin-top: 48px !important;
    clip-path: polygon(0 44px, 100% 0, 100% 100%, 0 100%) !important;
    background:
        linear-gradient(135deg, #071522 0%, #09263b 54%, #082f36 100%) !important;
}

footer.site-footer.site-footer--modern .site-footer__top {
    padding: 112px 0 44px !important;
}

footer.site-footer.site-footer--modern .site-footer__top > .container,
footer.site-footer.site-footer--modern .site-footer__bottom > .container,
footer.site-footer.site-footer--modern .site-footer__grid,
footer.site-footer.site-footer--modern .site-footer__bottom-inner {
    width: min(100% - 72px, 1320px) !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    display: grid !important;
    grid-template-columns: 1.22fr .9fr 1fr 1fr !important;
    gap: 46px !important;
    align-items: start !important;
}

footer.site-footer.site-footer--modern .site-footer__brand-col,
footer.site-footer.site-footer--modern .site-footer__col {
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

footer.site-footer.site-footer--modern .footer-brand__logo img {
    width: 236px !important;
    padding: 9px 13px !important;
    border-radius: 16px !important;
}

footer.site-footer.site-footer--modern .footer-description {
    max-width: 360px !important;
    margin: 20px 0 18px !important;
    font-size: 15px !important;
    line-height: 1.68 !important;
}

footer.site-footer.site-footer--modern .footer-capabilities {
    max-width: 360px !important;
    margin-bottom: 18px !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact {
    max-width: 360px !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact li {
    padding-left: 24px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

footer.site-footer.site-footer--modern .site-footer__title {
    margin: 0 0 20px !important;
    padding-left: 14px !important;
    font-size: 19px !important;
    line-height: 1.22 !important;
    white-space: normal !important;
}

footer.site-footer.site-footer--modern .site-footer__title::before {
    top: 1px !important;
    height: 30px !important;
    width: 4px !important;
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-link-list {
    gap: 13px !important;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a {
    font-size: 15px !important;
    line-height: 1.38 !important;
    font-weight: 700 !important;
}

footer.site-footer.site-footer--modern .site-footer__col > p {
    max-width: 300px !important;
    margin-bottom: 16px !important;
    font-size: 15px !important;
    line-height: 1.58 !important;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    max-width: 300px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-newsletter input,
footer.site-footer.site-footer--modern .footer-newsletter button {
    min-height: 48px !important;
    border-radius: 14px !important;
}

footer.site-footer.site-footer--modern .footer-social {
    gap: 9px !important;
}

footer.site-footer.site-footer--modern .footer-social__item {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
}

footer.site-footer.site-footer--modern .site-footer__bottom {
    padding: 16px 0 !important;
}

@media (max-width: 1100px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 38px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__brand-col {
        grid-column: auto !important;
    }
}

@media (max-width: 640px) {
    footer.site-footer.site-footer--modern {
        clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__top {
        padding-top: 72px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__top > .container,
    footer.site-footer.site-footer--modern .site-footer__bottom > .container,
    footer.site-footer.site-footer--modern .site-footer__grid,
    footer.site-footer.site-footer--modern .site-footer__bottom-inner {
        width: min(100% - 28px, 1320px) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer four-column layout */
footer.site-footer.site-footer--modern .site-footer__grid {
    grid-template-columns:
        minmax(420px, 1.55fr)
        minmax(240px, .9fr)
        minmax(260px, .95fr)
        minmax(340px, 1.05fr) !important;
    gap: clamp(42px, 4.2vw, 86px) !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact {
    display: grid;
    gap: 9px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

footer.site-footer.site-footer--modern .footer-brand-contact li {
    position: relative;
    padding-left: 28px;
    color: rgba(216, 230, 239, .78);
    font-size: 14px;
    line-height: 1.5;
}

footer.site-footer.site-footer--modern .footer-brand-contact li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .25em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #2dd4bf 0 3px, transparent 4px),
        rgba(45, 212, 191, .12);
    border: 1px solid rgba(45, 212, 191, .28);
}

footer.site-footer.site-footer--modern .footer-brand-contact a {
    color: #ffffff !important;
    font-weight: 850;
}

footer.site-footer.site-footer--modern .footer-social {
    gap: 10px !important;
}

footer.site-footer.site-footer--modern .footer-social__item {
    position: relative;
    width: 42px !important;
    height: 42px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 14px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .08) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 30px rgba(0, 0, 0, .16) !important;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

footer.site-footer.site-footer--modern .footer-social__item::before {
    content: "";
    position: absolute;
    inset: auto auto -18px -18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    opacity: .9;
    transition: transform .18s ease;
}

footer.site-footer.site-footer--modern .footer-social__item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .28) !important;
}

footer.site-footer.site-footer--modern .footer-social__item:hover::before {
    transform: scale(1.7);
}

footer.site-footer.site-footer--modern .footer-social__item--facebook::before {
    background: #2563eb;
}

footer.site-footer.site-footer--modern .footer-social__item--zalo::before {
    background: #2f80ff;
}

footer.site-footer.site-footer--modern .footer-social__item--youtube::before {
    background: #ef4444;
}

footer.site-footer.site-footer--modern .footer-social__item--tiktok::before {
    background: #14b8a6;
}

@media (max-width: 1280px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer repair: wider layout, no crushed columns */
footer.site-footer.site-footer--modern .site-footer__top > .container,
footer.site-footer.site-footer--modern .site-footer__bottom > .container {
    width: min(100% - 80px, 1640px) !important;
    max-width: none !important;
}

footer.site-footer.site-footer--modern .site-footer__top {
    padding: 118px 0 58px !important;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns:
        minmax(360px, 1.45fr)
        minmax(210px, .78fr)
        minmax(340px, 1.08fr)
        minmax(280px, .92fr)
        minmax(340px, 1.05fr) !important;
    gap: clamp(34px, 3.6vw, 72px) !important;
    align-items: start !important;
}

footer.site-footer.site-footer--modern .site-footer__title {
    margin-bottom: 22px !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
    white-space: nowrap;
}

footer.site-footer.site-footer--modern .footer-description {
    max-width: 410px !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-link-list {
    gap: 16px !important;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a {
    font-size: 15px !important;
    line-height: 1.35 !important;
}

footer.site-footer.site-footer--modern .footer-contact-list {
    gap: 16px !important;
}

footer.site-footer.site-footer--modern .footer-contact-list li {
    padding-left: 26px !important;
    max-width: 330px;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

footer.site-footer.site-footer--modern .site-footer__col > p {
    max-width: 340px !important;
    font-size: 15px !important;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    width: 100%;
    max-width: 340px !important;
    padding: 18px !important;
}

footer.site-footer.site-footer--modern .footer-newsletter input,
footer.site-footer.site-footer--modern .footer-newsletter button {
    width: 100% !important;
}

footer.site-footer.site-footer--modern .site-footer__bottom-inner {
    width: 100% !important;
}

@media (max-width: 1500px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns:
            minmax(330px, 1.35fr)
            minmax(190px, .75fr)
            minmax(300px, 1fr)
            minmax(240px, .85fr)
            minmax(300px, 1fr) !important;
        gap: 34px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__title {
        font-size: 17px !important;
    }
}

@media (max-width: 1280px) {
    footer.site-footer.site-footer--modern .site-footer__top > .container,
    footer.site-footer.site-footer--modern .site-footer__bottom > .container {
        width: min(100% - 48px, 1180px) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 36px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    footer.site-footer.site-footer--modern .site-footer__top > .container,
    footer.site-footer.site-footer--modern .site-footer__bottom > .container {
        width: min(100% - 28px, 1180px) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer final visual direction: full-width slanted dark section */
footer.site-footer.site-footer--modern {
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    color: #d8e6ef;
    background:
        radial-gradient(circle at 76% 38%, rgba(15, 94, 255, .12), transparent 28%),
        linear-gradient(135deg, #061322 0%, #082b49 58%, #06233b 100%) !important;
    border-top: 0 !important;
    clip-path: polygon(0 72px, 100% 0, 100% 100%, 0 100%);
}

footer.site-footer.site-footer--modern::before {
    display: block !important;
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 58% 58%, transparent 0 52%, rgba(255, 255, 255, .06) 52.2%, transparent 52.8%),
        radial-gradient(ellipse at 62% 66%, transparent 0 48%, rgba(255, 255, 255, .045) 48.2%, transparent 48.8%);
    opacity: .75;
    pointer-events: none;
}

footer.site-footer.site-footer--modern .site-footer__top {
    position: relative;
    z-index: 1;
    padding: 140px 0 56px !important;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    width: min(100% - 56px, 1480px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.42fr .82fr .92fr .92fr 1.2fr !important;
    gap: clamp(34px, 4vw, 74px) !important;
    align-items: start;
}

footer.site-footer.site-footer--modern .site-footer__brand-col,
footer.site-footer.site-footer--modern .site-footer__col {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-brand__logo {
    padding: 0 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-brand__logo img {
    width: 245px !important;
    padding: 10px 14px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

footer.site-footer.site-footer--modern .footer-description {
    max-width: 380px;
    margin: 26px 0 22px;
    color: rgba(216, 230, 239, .82) !important;
    font-size: 16px;
    line-height: 1.8;
}

footer.site-footer.site-footer--modern .footer-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

footer.site-footer.site-footer--modern .footer-capabilities span {
    padding: 7px 11px;
    border: 1px solid rgba(45, 212, 191, .24);
    border-radius: 999px;
    color: #eaf2ff;
    background: rgba(15, 94, 255, .12);
    font-size: 12px;
    font-weight: 850;
}

footer.site-footer.site-footer--modern .site-footer__title {
    position: relative;
    margin: 0 0 28px !important;
    padding: 0 0 0 18px !important;
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
}

footer.site-footer.site-footer--modern .site-footer__title::after {
    display: none !important;
}

footer.site-footer.site-footer--modern .site-footer__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2dd4bf, #16a34a);
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-link-list {
    display: grid;
    gap: 20px !important;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a {
    color: rgba(216, 230, 239, .84) !important;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.35;
}

footer.site-footer.site-footer--modern .footer-menu a:hover,
footer.site-footer.site-footer--modern .footer-link-list a:hover {
    color: #ffffff !important;
}

footer.site-footer.site-footer--modern .footer-menu a::before,
footer.site-footer.site-footer--modern .footer-link-list a::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .footer-contact-list {
    display: grid;
    gap: 18px !important;
}

footer.site-footer.site-footer--modern .footer-contact-list li {
    position: relative;
    padding: 0 0 0 30px !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(216, 230, 239, .86) !important;
    font-size: 16px;
    line-height: 1.55;
}

footer.site-footer.site-footer--modern .footer-contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .35em;
    width: 12px;
    height: 12px;
    border: 3px solid #16a34a;
    border-radius: 50%;
}

footer.site-footer.site-footer--modern .footer-contact-list span {
    display: none;
}

footer.site-footer.site-footer--modern .footer-contact-list a {
    color: rgba(216, 230, 239, .9) !important;
    font-weight: 700;
}

footer.site-footer.site-footer--modern .site-footer__col > p {
    max-width: 360px;
    margin: 0 0 22px;
    color: rgba(216, 230, 239, .78) !important;
    font-size: 16px;
    line-height: 1.65;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    max-width: none;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
}

footer.site-footer.site-footer--modern .footer-newsletter input {
    min-height: 52px;
    border: 0 !important;
    border-radius: 12px;
    color: #0f172a !important;
    background: rgba(255, 255, 255, .95) !important;
}

footer.site-footer.site-footer--modern .footer-newsletter button {
    min-height: 52px;
    border-radius: 12px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f5eff, #16a34a) !important;
}

footer.site-footer.site-footer--modern .footer-social {
    gap: 14px;
}

footer.site-footer.site-footer--modern .footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 13px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, .08) !important;
    box-shadow: none;
}

footer.site-footer.site-footer--modern .site-footer__bottom {
    position: relative;
    z-index: 1;
    padding: 22px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .14) !important;
    background: rgba(2, 8, 23, .18) !important;
}

footer.site-footer.site-footer--modern .site-footer__bottom-inner {
    width: min(100% - 56px, 1480px);
}

footer.site-footer.site-footer--modern .copyright,
footer.site-footer.site-footer--modern .footer-bottom-links a {
    color: rgba(216, 230, 239, .7) !important;
}

@media (max-width: 1180px) {
    footer.site-footer.site-footer--modern {
        clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
    }

    footer.site-footer.site-footer--modern .site-footer__top {
        padding-top: 100px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    footer.site-footer.site-footer--modern .site-footer__grid,
    footer.site-footer.site-footer--modern .site-footer__bottom-inner {
        width: min(100% - 28px, 1480px);
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Footer without CTA banner */
footer.site-footer.site-footer--modern .site-footer__top {
    padding: 38px 0 32px;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    grid-template-columns: 1.32fr 1fr 1.12fr 1fr 1.08fr;
    gap: 34px;
}

footer.site-footer.site-footer--modern .footer-description {
    max-width: 380px;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    max-width: 320px;
}

@media (max-width: 1180px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* Header final override - must stay at end */
body .main-navigation .menu > li > a,
body.is-front-page .main-navigation .menu > li > a {
    position: relative !important;
    min-height: 46px !important;
    padding: 0 13px !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #17233a !important;
}

body .main-navigation .menu > li > a:hover,
body .main-navigation .current-menu-item > a,
body .main-navigation .current-menu-ancestor > a,
body .main-navigation .current_page_item > a,
body.is-front-page .main-navigation .current-menu-item > a {
    background: transparent !important;
    color: #0f5eff !important;
}

body .main-navigation .menu > li,
body .main-navigation .menu > li::before,
body .main-navigation .menu > li::after,
body .main-navigation .menu > li > a::before {
    background: transparent !important;
    box-shadow: none !important;
}

body .main-navigation .menu > li > a::after,
body.is-front-page .main-navigation .menu > li > a::after {
    left: 13px !important;
    right: 13px !important;
    bottom: 0 !important;
    width: auto !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #0f5eff !important;
    transform: scaleX(0) !important;
    transform-origin: left center !important;
}

body .main-navigation .menu > li > a:hover::after,
body .main-navigation .current-menu-item > a::after,
body .main-navigation .current-menu-ancestor > a::after,
body .main-navigation .current_page_item > a::after {
    transform: scaleX(1) !important;
}

body .header-search {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 360px !important;
    height: 48px !important;
    padding: 0 !important;
    border: 1px solid #cfe0ef !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .055) !important;
    overflow: visible !important;
}

body .header-search input,
body .header-search input[type="search"] {
    position: static !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    height: 46px !important;
    min-width: 0 !important;
    padding: 0 54px 0 16px !important;
    border: 0 !important;
    border-radius: 14px !important;
    outline: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent !important;
    color: #101a2d !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

body .header-search input::placeholder,
body .header-search input[type="search"]::placeholder {
    color: #7b8aa0 !important;
}

body .header-search:focus-within {
    border-color: rgba(15, 94, 255, .65) !important;
    box-shadow: 0 0 0 4px rgba(15, 94, 255, .1), 0 12px 28px rgba(15, 23, 42, .07) !important;
}

body .header-search button {
    position: absolute !important;
    right: 5px !important;
    top: 5px !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 11px !important;
    background: #f3f8fc !important;
    box-shadow: none !important;
}

body .header-search button::before {
    content: "" !important;
    position: absolute !important;
    left: 10px !important;
    top: 9px !important;
    width: 13px !important;
    height: 13px !important;
    border: 2px solid #0f5eff !important;
    border-radius: 50% !important;
}

body .header-search button::after {
    content: "" !important;
    position: absolute !important;
    left: 22px !important;
    top: 23px !important;
    width: 8px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #0f5eff !important;
    transform: rotate(45deg) !important;
}

@media (max-width: 1180px) {
    body .header-search {
        width: 280px !important;
    }
}

/* Final modern shell overrides */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    background: rgba(255, 255, 255, .93) !important;
    border-bottom: 1px solid rgba(220, 231, 245, .95) !important;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06) !important;
    backdrop-filter: blur(16px) !important;
}

.site-header-main {
    background: transparent !important;
    border-bottom: 0 !important;
}

.site-header-main__inner {
    min-height: 74px !important;
    gap: 28px !important;
}

.site-logo__image,
.site-logo img {
    max-height: 46px !important;
}

.main-navigation {
    flex: 1 1 auto !important;
}

.main-navigation .menu,
.main-navigation ul {
    align-items: center !important;
    gap: 8px !important;
}

.main-navigation a {
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    border-radius: 999px !important;
    padding: 0 14px !important;
    color: #17233a !important;
    font-size: 14px !important;
    font-weight: 850 !important;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    background: #eaf2ff !important;
    color: #0b5fe8 !important;
}

.header-actions {
    gap: 10px !important;
}

.header-search {
    width: 300px !important;
    height: 46px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05) !important;
    overflow: hidden !important;
    display: grid !important;
    grid-template-columns: 1fr 46px !important;
    align-items: center !important;
}

.header-search input {
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    padding: 0 0 0 16px !important;
    border: 0 !important;
    background: transparent !important;
    color: #101a2d !important;
    font-size: 14px !important;
    outline: none !important;
}

.header-search button {
    width: 46px !important;
    height: 46px !important;
    border-radius: 12px !important;
    background: transparent !important;
    position: relative !important;
}

.header-search button::before {
    content: "" !important;
    width: 15px !important;
    height: 15px !important;
    border: 2px solid #0b5fe8 !important;
    border-radius: 50% !important;
    position: absolute !important;
    left: 13px !important;
    top: 13px !important;
}

.header-search button::after {
    content: "" !important;
    width: 8px !important;
    height: 2px !important;
    background: #0b5fe8 !important;
    border-radius: 999px !important;
    position: absolute !important;
    left: 26px !important;
    top: 28px !important;
    transform: rotate(45deg) !important;
}

.header-actions .button,
.header-actions .button--primary {
    min-height: 46px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #0b5fe8, #004bc4) !important;
    color: #fff !important;
    box-shadow: 0 14px 26px rgba(11, 95, 232, .18) !important;
    border: 0 !important;
}

footer.site-footer.site-footer--modern {
    margin-top: 0 !important;
    clip-path: none !important;
    background: #f8fbff !important;
    color: #101a2d !important;
    border-top: 1px solid #dce7f5 !important;
    overflow: hidden !important;
}

footer.site-footer.site-footer--modern::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .site-footer__inner {
    padding-top: 42px !important;
    padding-bottom: 26px !important;
}

footer.site-footer.site-footer--modern .site-footer__cta {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 28px !important;
    align-items: center !important;
    padding: 30px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 28px !important;
    background: linear-gradient(135deg, #eaf2ff, #fff) !important;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .07) !important;
    margin-bottom: 34px !important;
}

footer.site-footer.site-footer--modern .site-footer__cta span {
    display: inline-flex !important;
    margin-bottom: 9px !important;
    color: #0b5fe8 !important;
    font-weight: 950 !important;
}

footer.site-footer.site-footer--modern .site-footer__cta h2 {
    max-width: 760px !important;
    margin: 0 !important;
    font-size: clamp(26px, 3vw, 40px) !important;
    line-height: 1.1 !important;
    letter-spacing: -.035em !important;
    color: #101a2d !important;
}

footer.site-footer.site-footer--modern .site-footer__cta p {
    max-width: 700px !important;
    margin: 12px 0 0 !important;
    color: #607089 !important;
    line-height: 1.65 !important;
}

footer.site-footer.site-footer--modern .site-footer__cta-button {
    min-height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #0b5fe8, #004bc4) !important;
    color: #fff !important;
    font-weight: 950 !important;
    box-shadow: 0 16px 30px rgba(11, 95, 232, .18) !important;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    display: grid !important;
    grid-template-columns: 1.4fr .9fr .9fr 1.05fr !important;
    gap: 34px !important;
    align-items: start !important;
}

footer.site-footer.site-footer--modern .site-footer__brand-col,
footer.site-footer.site-footer--modern .site-footer__col {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

footer.site-footer.site-footer--modern .footer-brand__logo img {
    width: 220px !important;
    max-width: 100% !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-description,
footer.site-footer.site-footer--modern .site-footer__col > p {
    color: #607089 !important;
    line-height: 1.7 !important;
}

footer.site-footer.site-footer--modern .site-footer__title {
    margin: 0 0 15px !important;
    padding: 0 0 10px !important;
    color: #101a2d !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: normal !important;
}

footer.site-footer.site-footer--modern .site-footer__title::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .site-footer__title::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 34px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #0b5fe8 !important;
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-link-list,
footer.site-footer.site-footer--modern .footer-contact-list {
    display: grid !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a,
footer.site-footer.site-footer--modern .footer-contact-list,
footer.site-footer.site-footer--modern .footer-contact-list a {
    color: #41516a !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    line-height: 1.45 !important;
    white-space: normal !important;
}

footer.site-footer.site-footer--modern .footer-menu a::before,
footer.site-footer.site-footer--modern .footer-link-list a::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .footer-contact-list li {
    display: grid !important;
    gap: 3px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #41516a !important;
}

footer.site-footer.site-footer--modern .footer-contact-list span {
    color: #0b5fe8 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 8px !important;
    padding: 8px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 16px !important;
    background: #fff !important;
}

footer.site-footer.site-footer--modern .footer-newsletter input {
    width: 100% !important;
    min-height: 44px !important;
    border: 0 !important;
    padding: 0 10px !important;
    color: #101a2d !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .footer-newsletter button {
    width: auto !important;
    min-height: 44px !important;
    border: 0 !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    background: #0b5fe8 !important;
    color: #fff !important;
    font-weight: 950 !important;
}

footer.site-footer.site-footer--modern .site-footer__bottom {
    margin-top: 34px !important;
    padding-top: 18px !important;
    border-top: 1px solid #dce7f5 !important;
    background: transparent !important;
}

footer.site-footer.site-footer--modern .site-footer__bottom,
footer.site-footer.site-footer--modern .site-footer__bottom-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
}

footer.site-footer.site-footer--modern .copyright,
footer.site-footer.site-footer--modern .footer-bottom-links a {
    color: #607089 !important;
}

footer.site-footer.site-footer--modern .footer-bottom-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
}

@media (max-width: 1020px) {
    .header-actions {
        display: none !important;
    }

    footer.site-footer.site-footer--modern .site-footer__cta,
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 700px) {
    .site-logo__image,
    .site-logo img {
        max-height: 40px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__cta,
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
    }

    footer.site-footer.site-footer--modern .site-footer__bottom {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
}

/* Demo-style clean footer */
.tkg-footer {
    margin: 0 !important;
    padding: 0 0 18px !important;
    background: #f7faff !important;
    color: #101a2d !important;
    border: 0 !important;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif !important;
}

.tkg-footer * {
    box-sizing: border-box;
}

.tkg-footer a {
    text-decoration: none;
}

.tkg-footer-quote {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 34px 0 22px;
    padding: 28px 34px;
    border: 1px solid #dce7f5;
    border-radius: 28px;
    background:
        radial-gradient(circle at 6% 50%, rgba(11, 95, 232, .1), transparent 24%),
        linear-gradient(135deg, #eaf2ff 0%, #ffffff 62%, #f8fbff 100%);
    box-shadow: 0 22px 60px rgba(15, 23, 42, .07);
}

.tkg-footer-quote__icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: #fff;
    color: #0b5fe8;
    font-size: 30px;
    font-weight: 950;
    box-shadow: 0 16px 36px rgba(11, 95, 232, .12);
}

.tkg-footer-quote h2 {
    max-width: 720px;
    margin: 0 0 8px;
    color: #101a2d;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.14;
    letter-spacing: -.03em;
}

.tkg-footer-quote p {
    max-width: 740px;
    margin: 0;
    color: #607089;
    line-height: 1.65;
}

.tkg-footer-quote > a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b5fe8, #004bc4);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 16px 30px rgba(11, 95, 232, .18);
    white-space: nowrap;
}

.tkg-footer-main {
    display: grid;
    grid-template-columns: 1.28fr .85fr .95fr 1.08fr 1.02fr;
    gap: 34px;
    padding: 32px 30px;
    border: 1px solid #dce7f5;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .055);
}

.tkg-footer-logo {
    display: inline-flex;
}

.tkg-footer-logo img {
    width: 218px;
    max-width: 100%;
    height: auto;
}

.tkg-footer-brand p,
.tkg-footer-app p,
.tkg-footer-contact p {
    margin: 16px 0 0;
    color: #607089;
    line-height: 1.68;
}

.tkg-footer-col,
.tkg-footer-contact,
.tkg-footer-app {
    min-width: 0;
}

.tkg-footer h3 {
    position: relative;
    margin: 0 0 16px;
    padding-bottom: 10px;
    color: #101a2d;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.tkg-footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: #0b5fe8;
}

.tkg-footer-col a {
    display: block;
    margin-top: 10px;
    color: #41516a;
    font-size: 15px;
    font-weight: 760;
    line-height: 1.45;
}

.tkg-footer-col a:hover,
.tkg-footer-contact a:hover,
.tkg-footer-bottom a:hover {
    color: #0b5fe8;
}

.tkg-footer-contact p {
    display: grid;
    gap: 2px;
}

.tkg-footer-contact span {
    color: #0b5fe8;
    font-size: 12px;
    font-weight: 950;
}

.tkg-footer-contact a {
    color: #101a2d;
    font-weight: 850;
}

.tkg-footer-social {
    display: flex;
    gap: 9px;
    margin-top: 16px;
}

.tkg-footer-social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eaf2ff;
    color: #0b5fe8;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.tkg-footer-qr {
    position: relative;
    width: 106px;
    height: 106px;
    margin: 16px 0 12px;
    border: 8px solid #fff;
    border-radius: 18px;
    background:
        linear-gradient(90deg, #101a2d 10px, transparent 10px) 0 0/22px 22px,
        linear-gradient(#101a2d 10px, transparent 10px) 0 0/22px 22px,
        #eef5ff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.tkg-footer-qr span {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 5px solid #0b5fe8;
    background: #fff;
}

.tkg-footer-qr span:nth-child(1) {
    left: 8px;
    top: 8px;
}

.tkg-footer-qr span:nth-child(2) {
    right: 8px;
    top: 8px;
}

.tkg-footer-qr span:nth-child(3) {
    left: 8px;
    bottom: 8px;
}

.tkg-footer-qr span:nth-child(4) {
    right: 14px;
    bottom: 18px;
    width: 14px;
    height: 14px;
    border-width: 4px;
}

.tkg-footer-app > a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    background: #101a2d;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.tkg-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 2px 0;
    color: #607089;
    font-size: 14px;
}

.tkg-footer-bottom p {
    margin: 0;
}

.tkg-footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tkg-footer-bottom a {
    color: #607089;
    font-weight: 750;
}

@media (max-width: 1180px) {
    .tkg-footer-main {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .tkg-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .tkg-footer-quote {
        grid-template-columns: 1fr;
    }

    .tkg-footer-quote > a {
        justify-self: start;
    }

    .tkg-footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .tkg-footer-quote,
    .tkg-footer-main {
        padding: 22px;
        border-radius: 22px;
    }

    .tkg-footer-main {
        grid-template-columns: 1fr;
    }

    .tkg-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Full-page footer matching the clean demo layout */
.tkg-footer {
    width: 100% !important;
    padding: 0 !important;
    background: #fff !important;
    border-top: 1px solid #e2ebf6 !important;
    box-shadow: 0 -12px 38px rgba(15, 23, 42, .035) !important;
}

.tkg-footer > .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 28px !important;
}

.tkg-footer-quote {
    display: none !important;
}

.tkg-footer-main {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1.28fr .78fr .92fr 1.05fr 1.02fr !important;
    gap: clamp(24px, 3vw, 58px) !important;
    align-items: start !important;
    margin: 0 !important;
    padding: 30px 0 24px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.tkg-footer-logo img {
    width: 235px !important;
}

.tkg-footer-brand p {
    max-width: 350px !important;
    margin-top: 12px !important;
    color: #41516a !important;
    font-size: 15px !important;
    line-height: 1.62 !important;
}

.tkg-footer h3 {
    margin-bottom: 13px !important;
    padding-bottom: 0 !important;
    color: #101a2d !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    letter-spacing: .03em !important;
    text-transform: uppercase !important;
}

.tkg-footer h3::after {
    display: none !important;
}

.tkg-footer-col a {
    margin-top: 8px !important;
    color: #41516a !important;
    font-size: 14px !important;
    font-weight: 720 !important;
    line-height: 1.45 !important;
}

.tkg-footer-contact p {
    position: relative !important;
    margin: 9px 0 0 !important;
    padding-left: 24px !important;
    color: #41516a !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.tkg-footer-contact p::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 4px !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 4px !important;
    background: #0b5fe8 !important;
    opacity: .9 !important;
}

.tkg-footer-contact span {
    display: none !important;
}

.tkg-footer-contact a {
    color: #41516a !important;
    font-weight: 760 !important;
}

.tkg-footer-social {
    margin-top: 14px !important;
}

.tkg-footer-social a {
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: #0b5fe8 !important;
    color: #fff !important;
    font-size: 10px !important;
}

.tkg-footer-app {
    display: grid !important;
    grid-template-columns: 110px minmax(0, 1fr) !important;
    column-gap: 18px !important;
    align-items: center !important;
    min-height: 170px !important;
    margin: -8px 0 -8px !important;
    padding: 22px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .055) !important;
}

.tkg-footer-app h3,
.tkg-footer-app p {
    grid-column: 1 / -1 !important;
}

.tkg-footer-app h3 {
    margin: 0 0 4px !important;
}

.tkg-footer-app p {
    margin: 0 0 12px !important;
    color: #607089 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.tkg-footer-qr {
    width: 104px !important;
    height: 104px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    border-width: 6px !important;
}

.tkg-footer-store {
    display: grid !important;
    gap: 8px !important;
}

.tkg-footer-store a {
    min-height: 42px !important;
    display: grid !important;
    align-content: center !important;
    padding: 5px 14px !important;
    border-radius: 8px !important;
    background: #050b16 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
}

.tkg-footer-store small {
    display: block !important;
    color: rgba(255, 255, 255, .72) !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
}

.tkg-footer-app > a {
    display: none !important;
}

.tkg-footer-bottom {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 0 14px !important;
    border-top: 1px solid #e6eef8 !important;
    color: #607089 !important;
    font-size: 13px !important;
}

@media (max-width: 1180px) {
    .tkg-footer-main {
        grid-template-columns: 1.2fr 1fr 1fr !important;
    }

    .tkg-footer-app {
        grid-column: span 2 !important;
    }
}

@media (max-width: 760px) {
    .tkg-footer > .container {
        padding: 0 18px !important;
    }

    .tkg-footer-main {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .tkg-footer-app {
        grid-column: auto !important;
    }
}

/* Footer rebuilt from tiemdien style */
#tkgd-footer {
    --tkgd-blue: #075fea;
    --tkgd-navy: #0a1833;
    --tkgd-navy-lt: #1a2d55;
    --tkgd-yellow: #facc15;
    --tkgd-border: rgba(255, 255, 255, .08);
    width: 100%;
    padding: 64px 0 0;
    background: var(--tkgd-navy);
    color: #fff;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

#tkgd-footer * {
    box-sizing: border-box;
}

#tkgd-footer a {
    text-decoration: none;
}

.tkgd-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.tkgd-foot-grid {
    display: grid;
    grid-template-columns: 230px repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 52px;
}

.tkgd-foot-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 10px;
    border-radius: 14px;
    background: #fff;
}

.tkgd-foot-logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
}

.tkgd-foot-desc {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .50);
    font-size: 13px;
    line-height: 1.8;
}

.tkgd-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tkgd-socials a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    font-size: 12.5px;
    font-weight: 800;
    transition: all .2s;
}

.tkgd-socials a:hover {
    background: var(--tkgd-blue);
    color: #fff;
    transform: translateY(-2px);
}

.tkgd-foot-col h4 {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .9);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    line-height: 1.35;
    text-transform: uppercase;
}

.tkgd-foot-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tkgd-foot-links a {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.45;
    transition: all .2s;
}

.tkgd-foot-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.tkgd-foot-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tkgd-fci {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.6;
}

.tkgd-fci i {
    width: 14px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--tkgd-blue);
    font-style: normal;
    text-align: center;
}

.tkgd-fci a {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.tkgd-fci a:hover {
    color: #fff;
}

.tkgd-fci small {
    color: rgba(255, 255, 255, .35);
    font-size: 11.5px;
}

.tkgd-app-note {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .45);
    font-size: 12.5px;
    line-height: 1.7;
}

.tkgd-apps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.tkgd-apps a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    transition: all .2s;
}

.tkgd-apps a:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .12);
}

.tkgd-apps i {
    color: #fff;
    font-size: 20px;
    font-style: normal;
}

.tkgd-apps small {
    display: block;
    color: rgba(255, 255, 255, .45);
    font-size: 9.5px;
    line-height: 1.2;
}

.tkgd-apps strong {
    display: block;
    color: #fff;
    font-size: 12.5px;
    line-height: 1.2;
}

.tkgd-foot-bot {
    padding: 18px 0;
    border-top: 1px solid var(--tkgd-border);
    color: rgba(255, 255, 255, .4);
    font-size: 12.5px;
    text-align: center;
}

@media (max-width: 1200px) {
    .tkgd-foot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    #tkgd-footer {
        padding-top: 44px;
    }

    .tkgd-wrap {
        padding: 0 16px;
    }

    .tkgd-foot-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 40px;
    }
}

/* Full-page footer pass */
#tkgd-footer {
    padding-top: 78px !important;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(135deg, #07162f 0%, #0a1833 48%, #061226 100%) !important;
    background-size: 84px 84px, auto !important;
}

#tkgd-footer .tkgd-wrap {
    max-width: 1540px !important;
    width: min(1540px, calc(100% - 56px)) !important;
    padding: 0 !important;
}

#tkgd-footer .tkgd-foot-grid {
    grid-template-columns: minmax(260px, 1.25fr) minmax(170px, .85fr) minmax(220px, 1fr) minmax(260px, 1.12fr) minmax(260px, 1fr) !important;
    gap: 46px !important;
    padding-bottom: 66px !important;
}

#tkgd-footer .tkgd-foot-logo {
    margin-bottom: 22px !important;
    padding: 10px 14px !important;
    border-radius: 16px !important;
}

#tkgd-footer .tkgd-foot-logo img {
    width: 220px !important;
}

#tkgd-footer .tkgd-foot-desc,
#tkgd-footer .tkgd-app-note {
    color: rgba(226, 238, 255, .72) !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

#tkgd-footer .tkgd-foot-col h4 {
    margin-bottom: 20px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    letter-spacing: 1.1px !important;
}

#tkgd-footer .tkgd-foot-links {
    gap: 13px !important;
}

#tkgd-footer .tkgd-foot-links a,
#tkgd-footer .tkgd-fci,
#tkgd-footer .tkgd-fci span,
#tkgd-footer .tkgd-fci a {
    color: rgba(226, 238, 255, .76) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

#tkgd-footer .tkgd-foot-links a:hover,
#tkgd-footer .tkgd-fci a:hover {
    color: #ffffff !important;
}

#tkgd-footer .tkgd-fci {
    gap: 12px !important;
}

#tkgd-footer .tkgd-fci i {
    width: 20px !important;
    color: #4d8cff !important;
    font-size: 15px !important;
}

#tkgd-footer .tkgd-fci small {
    color: rgba(226, 238, 255, .55) !important;
    font-size: 13px !important;
}

#tkgd-footer .tkgd-socials a {
    width: 42px !important;
    height: 42px !important;
    border-radius: 11px !important;
    color: #dbeafe !important;
    background: rgba(255, 255, 255, .1) !important;
    font-size: 14px !important;
}

#tkgd-footer .tkgd-apps {
    gap: 12px !important;
}

#tkgd-footer .tkgd-apps a {
    min-height: 66px !important;
    padding: 12px 18px !important;
    border-color: rgba(255, 255, 255, .16) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, .075) !important;
}

#tkgd-footer .tkgd-apps small {
    font-size: 11px !important;
}

#tkgd-footer .tkgd-apps strong {
    font-size: 15px !important;
}

#tkgd-footer .tkgd-foot-bot {
    padding: 22px 0 !important;
    color: rgba(226, 238, 255, .62) !important;
    font-size: 14px !important;
}

@media (max-width: 1200px) {
    #tkgd-footer .tkgd-foot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 700px) {
    #tkgd-footer {
        padding-top: 46px !important;
    }

    #tkgd-footer .tkgd-wrap {
        width: min(100% - 28px, 1540px) !important;
    }

    #tkgd-footer .tkgd-foot-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Footer contact row */
#tkgd-footer .tkgd-foot-contact-row {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: 230px minmax(0, 1fr) !important;
    gap: 28px !important;
    align-items: center !important;
    margin-top: 6px !important;
    padding-top: 18px !important;
}

#tkgd-footer .tkgd-foot-contact-row h4 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    letter-spacing: 1.4px !important;
}

#tkgd-footer .tkgd-foot-contact-row .tkgd-foot-contacts {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
    align-items: center !important;
}

#tkgd-footer .tkgd-foot-contact-row .tkgd-fci {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

#tkgd-footer .tkgd-foot-contact-row .tkgd-fci i {
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #0f5eff, #0b4ed8) !important;
    color: #ffffff !important;
    font-size: 17px !important;
    box-shadow: 0 14px 28px rgba(15, 94, 255, .26) !important;
}

#tkgd-footer .tkgd-foot-contact-row .tkgd-fci:nth-child(2) i {
    background: linear-gradient(135deg, #16a34a, #087443) !important;
    box-shadow: 0 14px 28px rgba(22, 163, 74, .22) !important;
}

#tkgd-footer .tkgd-foot-contact-row .tkgd-fci:nth-child(3) i {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    box-shadow: 0 14px 28px rgba(245, 158, 11, .22) !important;
}

#tkgd-footer .tkgd-foot-contact-row .tkgd-fci a,
#tkgd-footer .tkgd-foot-contact-row .tkgd-fci span {
    color: #eaf2ff !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}

#tkgd-footer .tkgd-foot-contact-row .tkgd-fci small {
    color: rgba(226, 238, 255, .62) !important;
    font-size: 13px !important;
    font-weight: 650 !important;
}

@media (max-width: 1000px) {
    #tkgd-footer .tkgd-foot-contact-row {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    #tkgd-footer .tkgd-foot-contact-row .tkgd-foot-contacts {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
}

/* Final header cleanup */
.main-navigation .menu > li > a,
body.is-front-page .main-navigation .menu > li > a {
    position: relative !important;
    min-height: 46px !important;
    padding: 0 13px !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: #17233a !important;
}

.main-navigation .menu > li > a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
body.is-front-page .main-navigation .current-menu-item > a {
    background: transparent !important;
    color: #0f5eff !important;
}

.main-navigation .menu > li,
.main-navigation .menu > li::before,
.main-navigation .menu > li::after,
.main-navigation .menu > li > a::before {
    background: transparent !important;
    box-shadow: none !important;
}

.main-navigation .menu > li > a::after,
body.is-front-page .main-navigation .menu > li > a::after {
    left: 13px !important;
    right: 13px !important;
    bottom: 0 !important;
    width: auto !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #0f5eff !important;
    transform: scaleX(0) !important;
    transform-origin: left center !important;
}

.main-navigation .menu > li > a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current-menu-ancestor > a::after,
.main-navigation .current_page_item > a::after {
    transform: scaleX(1) !important;
}

.header-search {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 360px !important;
    height: 48px !important;
    padding: 0 !important;
    border: 1px solid #cfe0ef !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .055) !important;
    overflow: visible !important;
}

.header-search input,
.header-search input[type="search"] {
    position: static !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    height: 46px !important;
    min-width: 0 !important;
    padding: 0 54px 0 16px !important;
    border: 0 !important;
    border-radius: 14px !important;
    outline: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent !important;
    color: #101a2d !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.header-search input::placeholder,
.header-search input[type="search"]::placeholder {
    color: #7b8aa0 !important;
}

.header-search input:focus,
.header-search input[type="search"]:focus {
    border: 0 !important;
    box-shadow: none !important;
}

.header-search:focus-within {
    border-color: rgba(15, 94, 255, .65) !important;
    box-shadow: 0 0 0 4px rgba(15, 94, 255, .1), 0 12px 28px rgba(15, 23, 42, .07) !important;
}

.header-search button {
    position: absolute !important;
    right: 5px !important;
    top: 5px !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 11px !important;
    background: #f3f8fc !important;
    box-shadow: none !important;
}

.header-search button:hover {
    background: #e8f3f1 !important;
}

.header-search button::before {
    content: "" !important;
    position: absolute !important;
    left: 10px !important;
    top: 9px !important;
    width: 13px !important;
    height: 13px !important;
    border: 2px solid #0f5eff !important;
    border-radius: 50% !important;
}

.header-search button::after {
    content: "" !important;
    position: absolute !important;
    left: 22px !important;
    top: 23px !important;
    width: 8px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #0f5eff !important;
    transform: rotate(45deg) !important;
}

@media (max-width: 1180px) {
    .header-search {
        width: 280px !important;
    }
}

/* Article TOC visual pass: warm, editorial, less rigid. */
body.single-post .article-toc {
    margin: 4px 0 30px;
    padding: 26px 30px;
    border: 1px solid #f0d8c8;
    border-radius: 18px;
    background: #fffaf6;
    box-shadow: none;
}

body.single-post .article-toc__eyebrow {
    margin: 0 0 18px;
    color: #c5311f;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.single-post .article-toc__eyebrow::before {
    width: 18px;
    height: 18px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    content: "☰";
    color: #d43a25;
    font-size: 17px;
    line-height: 1;
}

body.single-post .article-toc__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.single-post .article-toc__item a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #101827;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
}

body.single-post .article-toc__item a::before {
    content: "›";
    flex: 0 0 auto;
    color: #d43a25;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.05;
}

body.single-post .article-toc__item a:hover {
    color: #c5311f;
    background: transparent;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

body.single-post .article-toc__item--h3 {
    margin-left: 26px;
}

body.single-post .article-toc__item--h3 a {
    padding: 5px 0;
    color: #647089;
    font-size: 16px;
    font-weight: 700;
}

body.single-post .article-toc__item--h3 a::before {
    content: "-";
    color: #b8957f;
    font-size: 18px;
    line-height: 1.2;
}

body.single-post .single-article-widget .widget-title {
    font-size: 22px;
}

body.single-post .single-article-cats {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.single-post .single-article-cats li + li {
    margin-top: 8px;
}

body.single-post .single-article-cats a {
    display: block;
    padding: 10px 12px;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f3f86;
    font-weight: 800;
    text-decoration: none;
}

body.single-post .single-article-cats a:hover {
    border-color: #bcd0e7;
    background: #eef6ff;
}

/* Final article overrides: keep single posts polished after demo/theme overrides. */
body.single-post .single-news-entry,
body.single-post .single-entry {
    border-radius: 18px;
    border-color: #dbe4ef;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

@media (max-width: 991px) {
    .article-toc__list {
        grid-template-columns: 1fr;
    }

    body.single-post .sidebar,
    body.single-post .widget-area {
        position: static;
    }
}

@media (max-width: 767px) {
    body.single-post .single-news-entry,
    body.single-post .single-entry {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .single-news-entry__title,
    .single-entry__title {
        font-size: 30px;
        line-height: 1.18;
    }

    .single-news-entry__content,
    .single-entry__content {
        font-size: 16px;
        line-height: 1.75;
    }

    .entry-content h2 {
        font-size: 23px;
        line-height: 1.3;
    }

    .entry-content h3 {
        font-size: 20px;
    }

    .entry-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Single article final polish: cohesive TOC and related posts. */
body.single-post .article-toc {
    margin: 6px 0 30px;
    padding: 22px 24px;
    border: 1px solid #cfe1ea;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fcfd 0%, #ffffff 100%);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

body.single-post .article-toc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

body.single-post .article-toc__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #0f5eff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.single-post .article-toc__eyebrow::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0f5eff, #2f80ff);
    box-shadow: inset 0 0 0 5px rgba(255,255,255,.55);
}

body.single-post .article-toc__toggle {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #b9d6dc;
    border-radius: 999px;
    background: #ffffff;
    color: #0f5eff;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

body.single-post .article-toc__toggle:hover {
    border-color: #0f5eff;
    background: #ecfdf5;
}

body.single-post .article-toc__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: none;
    overflow: hidden;
    transition: max-height .24s ease;
}

body.single-post .article-toc.is-collapsed .article-toc__list {
    max-height: 214px;
}

body.single-post .article-toc.is-expanded .article-toc__list {
    max-height: 1200px;
}

body.single-post .article-toc__item:nth-child(n+7) {
    opacity: 1;
}

body.single-post .article-toc.is-collapsed .article-toc__item:nth-child(n+7) {
    display: none;
}

body.single-post .article-toc__item a {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: #172033;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.45;
    text-decoration: none;
}

body.single-post .article-toc__item a::before {
    content: "›";
    color: #0f5eff;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.08;
}

body.single-post .article-toc__item a:hover {
    color: #0f5eff;
    text-decoration: underline;
    text-underline-offset: 4px;
    background: transparent;
}

body.single-post .article-toc__item--h3 {
    margin-left: 28px;
}

body.single-post .article-toc__item--h3 a {
    padding: 5px 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 750;
}

body.single-post .article-toc__item--h3 a::before {
    content: "-";
    color: #94a3b8;
    font-size: 18px;
}

body.single-post .single-news-related {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

body.single-post .single-news-related h3 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.15;
}

body.single-post .single-news-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.single-post .related-article-card {
    overflow: hidden;
    border: 1px solid #dbe6ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.single-post .related-article-card:hover {
    transform: translateY(-3px);
    border-color: #9fd5ce;
    box-shadow: 0 18px 42px rgba(15, 94, 255, 0.11);
}

body.single-post .related-article-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #dfe8f1;
    overflow: hidden;
}

body.single-post .related-article-card__image,
body.single-post .related-article-card__fallback {
    display: block;
    width: 100%;
    height: 100%;
}

body.single-post .related-article-card__image {
    object-fit: cover;
}

body.single-post .related-article-card__fallback {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .76), rgba(15, 94, 255, .58)),
        url("../images/demo/hero-products.jpg");
    background-size: cover;
    background-position: center;
}

body.single-post .related-article-card__body {
    padding: 14px 14px 16px;
}

body.single-post .related-article-card__cat {
    display: inline-flex;
    margin-bottom: 9px;
    color: #0f5eff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
}

body.single-post .related-article-card h4 {
    margin: 0 0 9px;
    font-size: 17px;
    line-height: 1.35;
}

body.single-post .related-article-card h4 a {
    color: #0f172a;
    text-decoration: none;
}

body.single-post .related-article-card h4 a:hover {
    color: #0f5eff;
}

body.single-post .related-article-card time {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

body.single-post .sidebar-area .single-article-widget {
    border-radius: 14px;
    border-color: #dbe6ef;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

body.single-post .sidebar-area .mini-post-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
}

body.single-post .sidebar-area .mini-post-thumb img,
body.single-post .sidebar-area .mini-post-thumb .placeholder-box {
    height: 64px;
    border-radius: 10px;
}

body.single-post .sidebar-area .mini-post-thumb .placeholder-box {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .72), rgba(15, 94, 255, .55)),
        url("../images/demo/hero-products.jpg");
    background-size: cover;
    background-position: center;
}

@media (max-width: 991px) {
    body.single-post .single-news-related__grid {
        grid-template-columns: 1fr;
    }

    body.single-post .related-article-card {
        display: grid;
        grid-template-columns: 150px minmax(0, 1fr);
    }

    body.single-post .related-article-card__media {
        aspect-ratio: auto;
        min-height: 150px;
    }
}

@media (max-width: 560px) {
    body.single-post .article-toc {
        padding: 18px;
    }

    body.single-post .article-toc__head {
        align-items: flex-start;
        flex-direction: column;
    }

    body.single-post .related-article-card {
        grid-template-columns: 1fr;
    }

    body.single-post .related-article-card__media {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
}

/* Single post redesign v2: focused reading layout. */
body.single-post {
    background: #f4f7f8;
    color: #0f172a;
}

body.single-post .page-hero {
    min-height: 150px;
    padding: 34px 0 30px;
    background-position: center;
}

body.single-post .page-hero::before {
    background: linear-gradient(90deg, rgba(8, 20, 34, .95) 0%, rgba(8, 20, 34, .76) 58%, rgba(8, 20, 34, .36) 100%);
}

body.single-post .page-hero__title {
    max-width: 980px;
    margin: 0 0 12px;
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 1.08;
    letter-spacing: 0;
}

body.single-post .breadcrumb-wrap {
    color: rgba(255,255,255,.78);
}

body.single-post .breadcrumb-wrap a {
    color: rgba(255,255,255,.88);
}

body.single-post .single-content-wrap {
    padding: 42px 0 58px;
    background: linear-gradient(180deg, #f4f7f8 0%, #ffffff 100%);
}

body.single-post .single-post-layout {
    display: block;
    max-width: 1120px;
}

body.single-post .main-content-area {
    width: 100%;
}

body.single-post .single-news-entry,
body.single-post .single-entry {
    max-width: 100%;
    padding: clamp(24px, 4vw, 54px);
    border: 1px solid #d8e4ea;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

body.single-post .single-news-entry__header,
body.single-post .single-entry__header {
    max-width: 900px;
    margin: 0 auto 24px;
    padding: 0 0 22px;
    border-bottom: 1px solid #e3ebf0;
    text-align: left;
}

body.single-post .single-news-entry__title,
body.single-post .single-entry__title {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 1.03;
    letter-spacing: 0;
}

body.single-post .single-news-entry__meta,
body.single-post .single-entry__meta {
    gap: 8px;
}

body.single-post .single-news-entry__meta span,
body.single-post .single-entry__meta span {
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid #d8e4ea;
    border-radius: 999px;
    background: #f8fafc;
    color: #52677a;
    font-size: 13px;
    font-weight: 800;
}

body.single-post .article-toc {
    max-width: 900px;
    margin: 0 auto 34px;
    padding: 22px 24px;
    border: 1px solid #c9dde4;
    border-radius: 18px;
    background: #f8fcfd;
    box-shadow: none;
}

body.single-post .article-toc__head {
    padding-bottom: 12px;
    border-bottom: 1px solid #dce8ee;
}

body.single-post .article-toc__eyebrow {
    color: #0f5eff;
    font-size: 14px;
    letter-spacing: .08em;
}

body.single-post .article-toc__eyebrow::before {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #0f5eff;
    box-shadow: inset 0 0 0 8px rgba(255,255,255,.22);
}

body.single-post .article-toc__list {
    padding-top: 10px;
}

body.single-post .article-toc__item a {
    padding: 9px 0;
    color: #162235;
    font-size: 16px;
    font-weight: 850;
}

body.single-post .article-toc__item a::before {
    color: #0f5eff;
}

body.single-post .article-toc__item--h3 a {
    color: #64748b;
    font-size: 15px;
}

body.single-post .article-toc__toggle {
    border-color: #b7d4d3;
    color: #0f5eff;
    background: #ffffff;
}

body.single-post .single-news-entry__content,
body.single-post .single-entry__content {
    max-width: 900px;
    margin: 0 auto;
    color: #172033;
    font-size: 18px;
    line-height: 1.82;
}

body.single-post .entry-content h2 {
    margin-top: 46px;
    color: #0f172a;
    font-size: 30px;
}

body.single-post .entry-content h2::before {
    background: #0f5eff;
}

body.single-post .entry-content table {
    border-color: #d6e3ea;
    border-radius: 16px;
    box-shadow: none;
}

body.single-post .entry-content table th {
    background: #0f172a;
}

body.single-post .entry-content ul > li::before {
    background: #0f5eff;
    box-shadow: 0 0 0 4px #eaf2ff;
}

body.single-post .single-news-related {
    max-width: 900px;
    margin: 46px auto 0;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

body.single-post .single-news-related h3 {
    margin-bottom: 18px;
    font-size: 26px;
}

body.single-post .single-news-related__grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

body.single-post .related-article-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: stretch;
    border-radius: 14px;
    box-shadow: none;
}

body.single-post .related-article-card__media {
    aspect-ratio: auto;
    min-height: 118px;
}

body.single-post .related-article-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 18px;
}

body.single-post .related-article-card h4 {
    max-width: 620px;
    font-size: 18px;
}

@media (max-width: 700px) {
    body.single-post .page-hero {
        min-height: 130px;
        padding: 28px 0;
    }

    body.single-post .single-news-entry,
    body.single-post .single-entry {
        padding: 22px 16px;
        border-radius: 14px;
    }

    body.single-post .single-news-entry__title,
    body.single-post .single-entry__title {
        font-size: 34px;
    }

    body.single-post .single-news-entry__content,
    body.single-post .single-entry__content {
        font-size: 16px;
        line-height: 1.75;
    }

    body.single-post .related-article-card {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    body.single-post .related-article-card__media {
        min-height: 118px;
    }
}

/* Single post redesign v3: clean editorial article. */
body.single-post {
    --article-bg: #f3f7f7;
    --article-panel: #ffffff;
    --article-text: #111827;
    --article-muted: #64748b;
    --article-line: #d9e6ea;
    --article-primary: #0f5eff;
    --article-primary-soft: #e7f6f3;
    background: var(--article-bg);
}

body.single-post .single-content-wrap {
    padding: 42px 0 70px;
    background:
        radial-gradient(circle at 12% 0%, rgba(15, 94, 255, .09), transparent 28%),
        linear-gradient(180deg, #f8fbfb 0%, var(--article-bg) 100%);
}

body.single-post .single-post-layout {
    max-width: 1180px;
}

body.single-post .single-news-entry,
body.single-post .single-entry {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.single-post .single-news-entry__header,
body.single-post .single-entry__header {
    max-width: 980px;
    margin: 0 auto 26px;
    padding: 36px 42px;
    border: 1px solid var(--article-line);
    border-radius: 24px;
    background: var(--article-panel);
    box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
}

body.single-post .single-news-entry__cat {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 18px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--article-primary-soft);
    color: var(--article-primary);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

body.single-post .single-news-entry__title,
body.single-post .single-entry__title {
    max-width: 920px;
    margin: 0;
    color: var(--article-text);
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: 0;
}

body.single-post .single-news-entry__meta,
body.single-post .single-entry__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    color: var(--article-muted);
}

body.single-post .single-news-entry__meta span,
body.single-post .single-entry__meta span {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--article-muted);
    font-size: 14px;
    font-weight: 800;
}

body.single-post .single-news-entry__meta span + span::before,
body.single-post .single-entry__meta span + span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 12px 2px 0;
    border-radius: 50%;
    background: #94a3b8;
}

body.single-post .single-news-entry__lead {
    max-width: 760px;
    margin: 18px 0 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
}

body.single-post .article-toc {
    max-width: 980px;
    margin: 0 auto 26px;
    padding: 0;
    border: 1px solid var(--article-line);
    border-radius: 20px;
    background: var(--article-panel);
    box-shadow: 0 14px 44px rgba(15, 23, 42, .05);
    overflow: hidden;
}

body.single-post .article-toc__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 18px 22px;
    border-bottom: 1px solid #e3edf0;
    background: #fbfdfd;
}

body.single-post .article-toc__eyebrow {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.single-post .article-toc__eyebrow::before {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--article-primary), #2f80ff);
}

body.single-post .article-toc__toggle {
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid #bad6d6;
    border-radius: 999px;
    background: #ffffff;
    color: var(--article-primary);
    font-size: 13px;
    font-weight: 950;
}

body.single-post .article-toc__list {
    padding: 12px 22px 16px;
}

body.single-post .article-toc.is-collapsed .article-toc__list {
    max-height: 196px;
}

body.single-post .article-toc__item a {
    padding: 7px 0;
    color: #1f2937;
    font-size: 16px;
    font-weight: 850;
}

body.single-post .article-toc__item a::before {
    color: var(--article-primary);
}

body.single-post .article-toc__item--h3 {
    margin-left: 25px;
}

body.single-post .article-toc__item--h3 a {
    color: #64748b;
    font-size: 15px;
    font-weight: 750;
}

body.single-post .single-news-entry__content,
body.single-post .single-entry__content {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid var(--article-line);
    border-radius: 24px;
    background: var(--article-panel);
    color: #1f2937;
    font-size: 18px;
    line-height: 1.82;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

body.single-post .entry-content > *:first-child {
    margin-top: 0;
}

body.single-post .entry-content h2 {
    margin: 44px 0 16px;
    padding-top: 0;
    color: #0f172a;
    font-size: 30px;
    line-height: 1.25;
}

body.single-post .entry-content h2::before {
    display: none;
}

body.single-post .entry-content h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--article-primary);
}

body.single-post .entry-content h3 {
    color: #172033;
}

body.single-post .entry-content p {
    margin-bottom: 18px;
}

body.single-post .entry-content table {
    border-radius: 16px;
    border-color: #d7e4ea;
    box-shadow: none;
}

body.single-post .entry-content table th {
    background: #102033;
}

body.single-post .entry-content ul > li::before {
    background: var(--article-primary);
    box-shadow: 0 0 0 4px #d9f4ef;
}

body.single-post .single-news-related {
    max-width: 980px;
    margin: 30px auto 0;
    padding: 28px;
    border: 1px solid var(--article-line);
    border-radius: 24px;
    background: var(--article-panel);
    box-shadow: 0 16px 52px rgba(15, 23, 42, .05);
}

body.single-post .single-news-related h3 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.15;
}

body.single-post .single-news-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.single-post .related-article-card {
    display: block;
    overflow: hidden;
    border: 1px solid #dce8ed;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
}

body.single-post .related-article-card:hover {
    transform: translateY(-3px);
    border-color: #9fd4cf;
    box-shadow: 0 16px 38px rgba(15, 94, 255, .11);
}

body.single-post .related-article-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
}

body.single-post .related-article-card__body {
    padding: 14px 15px 16px;
}

body.single-post .related-article-card__cat {
    color: var(--article-primary);
}

body.single-post .related-article-card h4 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.36;
}

body.single-post .single-news-entry__footer {
    max-width: 980px;
    margin: 18px auto 0;
}

@media (max-width: 900px) {
    body.single-post .single-news-entry__header,
    body.single-post .single-news-entry__content,
    body.single-post .single-entry__header,
    body.single-post .single-entry__content,
    body.single-post .article-toc,
    body.single-post .single-news-related {
        max-width: 100%;
    }

    body.single-post .single-news-related__grid {
        grid-template-columns: 1fr;
    }

    body.single-post .related-article-card {
        display: grid;
        grid-template-columns: 145px minmax(0, 1fr);
    }

    body.single-post .related-article-card__media {
        aspect-ratio: auto;
        min-height: 140px;
    }
}

@media (max-width: 640px) {
    body.single-post .single-content-wrap {
        padding: 24px 0 46px;
    }

    body.single-post .single-news-entry__header,
    body.single-post .single-news-entry__content,
    body.single-post .single-entry__header,
    body.single-post .single-entry__content,
    body.single-post .single-news-related {
        padding: 20px;
        border-radius: 18px;
    }

    body.single-post .single-news-entry__title,
    body.single-post .single-entry__title {
        font-size: 34px;
    }

    body.single-post .article-toc__head {
        align-items: flex-start;
        flex-direction: column;
    }

    body.single-post .related-article-card {
        grid-template-columns: 1fr;
    }

    body.single-post .related-article-card__media {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }
}

/* Single post redesign v4: Vietnamese blog style, clean and readable. */
body.single-post {
    background: #f5f6f7;
}

body.single-post .site-main {
    background: #f5f6f7;
}

body.single-post .single-content-wrap {
    padding: 34px 0 64px;
    background: #f5f6f7;
}

body.single-post .single-post-layout {
    max-width: 1100px;
}

body.single-post .single-news-entry,
body.single-post .single-entry {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.single-post .single-news-entry__header,
body.single-post .single-entry__header,
body.single-post .article-toc,
body.single-post .single-news-entry__content,
body.single-post .single-entry__content,
body.single-post .single-news-related {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e0e5e8;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(15, 23, 42, .045);
}

body.single-post .single-news-entry__header,
body.single-post .single-entry__header {
    padding: 34px 38px 30px;
    margin-bottom: 18px;
    border-radius: 12px;
}

body.single-post .single-news-entry__cat {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 14px;
    border-radius: 4px;
    background: #eef7f5;
    color: #0f5eff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

body.single-post .single-news-entry__title,
body.single-post .single-entry__title {
    margin: 0;
    color: #101828;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
}

body.single-post .single-news-entry__meta,
body.single-post .single-entry__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    color: #667085;
}

body.single-post .single-news-entry__meta span,
body.single-post .single-entry__meta span {
    padding: 0;
    border: 0;
    background: transparent;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
}

body.single-post .single-news-entry__lead {
    max-width: 780px;
    margin: 18px 0 0;
    color: #475467;
    font-size: 18px;
    line-height: 1.7;
}

body.single-post .article-toc {
    padding: 0;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
}

body.single-post .article-toc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid #e5ecef;
    background: #f8fbfb;
}

body.single-post .article-toc__eyebrow {
    margin: 0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}

body.single-post .article-toc__eyebrow::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #0f5eff;
    box-shadow: inset 0 0 0 5px rgba(255,255,255,.26);
}

body.single-post .article-toc__toggle {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #c9d8dc;
    border-radius: 6px;
    background: #ffffff;
    color: #0f5eff;
    font-size: 13px;
    font-weight: 800;
}

body.single-post .article-toc__list {
    padding: 12px 22px 16px;
}

body.single-post .article-toc.is-collapsed .article-toc__list {
    max-height: 205px;
}

body.single-post .article-toc__item a {
    padding: 7px 0;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

body.single-post .article-toc__item a::before {
    content: "›";
    color: #0f5eff;
    font-size: 21px;
}

body.single-post .article-toc__item--h3 {
    margin-left: 24px;
}

body.single-post .article-toc__item--h3 a {
    color: #667085;
    font-size: 15px;
    font-weight: 600;
}

body.single-post .article-toc__item--h3 a::before {
    content: "-";
    color: #98a2b3;
}

body.single-post .single-news-entry__content,
body.single-post .single-entry__content {
    padding: 34px 38px;
    border-radius: 12px;
    color: #1d2939;
    font-size: 18px;
    line-height: 1.85;
}

body.single-post .entry-content h2 {
    margin: 42px 0 14px;
    padding: 0;
    color: #101828;
    font-size: 28px;
    line-height: 1.28;
}

body.single-post .entry-content h2::before {
    display: none;
}

body.single-post .entry-content h2::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin-top: 9px;
    border-radius: 999px;
    background: #0f5eff;
}

body.single-post .entry-content h3 {
    margin: 28px 0 10px;
    color: #1d2939;
    font-size: 22px;
}

body.single-post .entry-content p {
    margin: 0 0 18px;
}

body.single-post .entry-content table {
    border: 1px solid #d9e4e8;
    border-radius: 10px;
    box-shadow: none;
}

body.single-post .entry-content table th {
    background: #0f172a;
}

body.single-post .entry-content table th,
body.single-post .entry-content table td {
    padding: 12px 14px;
}

body.single-post .entry-content ul > li::before {
    background: #0f5eff;
    box-shadow: 0 0 0 4px #d9f4ef;
}

body.single-post .single-news-related {
    margin-top: 22px;
    padding: 26px;
    border-radius: 12px;
}

body.single-post .single-news-related__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

body.single-post .single-news-related h3 {
    margin: 0;
    color: #101828;
    font-size: 26px;
    line-height: 1.2;
}

body.single-post .single-news-related__head span {
    color: #667085;
    font-size: 14px;
    font-weight: 600;
}

body.single-post .single-news-related__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.single-post .related-article-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 116px;
    border: 1px solid #e1e7eb;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: none;
}

body.single-post .related-article-card:hover {
    transform: none;
    border-color: #bad7d5;
    box-shadow: 0 8px 22px rgba(15, 94, 255, .08);
}

body.single-post .related-article-card__media {
    aspect-ratio: auto;
    min-height: 116px;
    background: #e8eef2;
}

body.single-post .related-article-card__image,
body.single-post .related-article-card__fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.single-post .related-article-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 14px;
}

body.single-post .related-article-card__cat {
    margin-bottom: 6px;
    color: #0f5eff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

body.single-post .related-article-card h4 {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.35;
}

body.single-post .related-article-card h4 a {
    color: #101828;
}

body.single-post .related-article-card time {
    color: #667085;
    font-size: 13px;
}

@media (max-width: 760px) {
    body.single-post .single-content-wrap {
        padding: 22px 0 44px;
    }

    body.single-post .single-news-entry__header,
    body.single-post .single-entry__header,
    body.single-post .single-news-entry__content,
    body.single-post .single-entry__content,
    body.single-post .single-news-related {
        padding: 20px;
        border-radius: 10px;
    }

    body.single-post .single-news-entry__title,
    body.single-post .single-entry__title {
        font-size: 34px;
    }

    body.single-post .article-toc__head {
        align-items: flex-start;
        flex-direction: column;
    }

    body.single-post .single-news-related__head {
        align-items: flex-start;
        flex-direction: column;
    }

    body.single-post .single-news-related__grid {
        grid-template-columns: 1fr;
    }
}

/* Policy, about and contact page upgrades */
.policy-page-wrap {
    background:
        radial-gradient(circle at 12% 0%, rgba(15,94,255,.12), transparent 28%),
        linear-gradient(180deg, #f7fbfd, #fff);
}

.policy-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.policy-sidebar,
.policy-content-card {
    border: 1px solid #dbe8f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .06);
}

.policy-sidebar {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.policy-sidebar h2 {
    margin: 8px 0 18px;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.12;
}

.policy-nav {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.policy-nav a,
.policy-related-links a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid #dbe8f0;
    border-radius: 14px;
    color: #0f172a;
    background: #f8fbfd;
    font-weight: 850;
}

.policy-nav a::after,
.policy-related-links a::after {
    content: ">";
    color: #0f5eff;
}

.policy-help-box {
    padding: 18px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #0f5eff, #2f80ff);
}

.policy-help-box p {
    color: rgba(255,255,255,.84);
}

.policy-content-card {
    padding: clamp(24px, 4vw, 46px);
}

.policy-header {
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e2edf3;
}

.policy-header span {
    color: #0f5eff;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.policy-header h1 {
    margin: 10px 0 12px;
    color: #0f172a;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.policy-header p,
.policy-entry p {
    color: #52657a;
    font-size: 16px;
    line-height: 1.78;
}

.policy-entry h2 {
    margin-top: 30px;
    color: #0f172a;
    font-size: 26px;
}

.policy-entry a {
    color: #0f5eff;
    font-weight: 850;
}

.policy-related-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid #e2edf3;
}

.about-link-section {
    background: #f5fafc;
}

.about-link-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: center;
}

.about-link-intro h2 {
    margin: 8px 0 12px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.about-link-intro p {
    color: #52657a;
}

.about-link-cards,
.contact-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-link-cards a,
.contact-link-grid a {
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: 20px;
    border: 1px solid #dbe8f0;
    border-radius: 20px;
    color: #0f172a;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15,23,42,.05);
}

.about-link-cards strong,
.contact-link-grid strong {
    font-size: 20px;
}

.about-link-cards span,
.contact-link-grid span {
    color: #52657a;
}

.contact-link-section {
    padding-top: 18px;
}

.contact-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-template-page-lien-he .contact-info-grid .feature-box {
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, #f8fbfd);
}

@media (max-width: 980px) {
    .policy-layout,
    .about-link-grid {
        grid-template-columns: 1fr;
    }

    .policy-sidebar {
        position: static;
    }

    .policy-related-links,
    .contact-link-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-link-cards {
        grid-template-columns: 1fr;
    }
}

/* Footer contact icons */
footer.site-footer.site-footer--modern .footer-brand-contact {
    gap: 12px !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact li {
    position: relative;
    min-height: 34px;
    padding-left: 48px !important;
    display: flex;
    align-items: center;
    color: rgba(216, 230, 239, .86) !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact li::before {
    left: 0 !important;
    top: 0 !important;
    width: 34px !important;
    height: 34px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #0f5eff, #10b981) !important;
    box-shadow: 0 12px 26px rgba(16, 185, 129, .18), inset 0 1px 0 rgba(255, 255, 255, .16);
}

footer.site-footer.site-footer--modern .footer-brand-contact li::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 9px;
    width: 14px;
    height: 14px;
    z-index: 1;
}

footer.site-footer.site-footer--modern .footer-brand-contact li:nth-child(1)::before {
    background: linear-gradient(135deg, #0f5eff, #22c55e) !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact li:nth-child(1)::after {
    width: 13px;
    height: 13px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 4px;
    transform: rotate(-45deg);
}

footer.site-footer.site-footer--modern .footer-brand-contact li:nth-child(2)::before {
    background: linear-gradient(135deg, #2f80ff, #38bdf8) !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact li:nth-child(2)::after {
    left: 9px;
    top: 10px;
    width: 16px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 3px;
    background:
        linear-gradient(135deg, transparent 47%, #fff 48% 53%, transparent 54%),
        linear-gradient(45deg, transparent 47%, #fff 48% 53%, transparent 54%);
}

footer.site-footer.site-footer--modern .footer-brand-contact li:nth-child(3)::before {
    background: linear-gradient(135deg, #2f80ff, #facc15) !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact li:nth-child(3)::after {
    left: 11px;
    top: 8px;
    width: 12px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 9px 9px 9px 0;
    transform: rotate(-45deg);
}

footer.site-footer.site-footer--modern .footer-brand-contact li:nth-child(3)::after {
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .35);
}

/* FINAL ACTIVE FOOTER GRID - matches 4 equal drawn zones. */
footer.site-footer.site-footer--modern .site-footer__top > .container,
footer.site-footer.site-footer--modern .site-footer__bottom > .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 44px !important;
    padding-right: 44px !important;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

footer.site-footer.site-footer--modern .site-footer__brand-col,
footer.site-footer.site-footer--modern .site-footer__col {
    grid-column: auto !important;
    padding-right: clamp(22px, 2.4vw, 44px) !important;
}

footer.site-footer.site-footer--modern .site-footer__title {
    font-size: clamp(22px, 1.55vw, 29px) !important;
    white-space: nowrap !important;
    line-height: 1.12 !important;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a {
    white-space: nowrap !important;
}

footer.site-footer.site-footer--modern .footer-description,
footer.site-footer.site-footer--modern .footer-capabilities,
footer.site-footer.site-footer--modern .footer-brand-contact {
    max-width: 430px !important;
}

footer.site-footer.site-footer--modern .site-footer__col > p,
footer.site-footer.site-footer--modern .footer-newsletter {
    max-width: 430px !important;
}

@media (max-width: 1280px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__title,
    footer.site-footer.site-footer--modern .footer-menu a,
    footer.site-footer.site-footer--modern .footer-link-list a {
        white-space: normal !important;
    }
}

@media (max-width: 680px) {
    footer.site-footer.site-footer--modern .site-footer__top > .container,
    footer.site-footer.site-footer--modern .site-footer__bottom > .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
    }
}

/* FINAL footer layout: four equal zones across the full footer. */
footer.site-footer.site-footer--modern {
    margin-top: 56px !important;
    clip-path: polygon(0 52px, 100% 0, 100% 100%, 0 100%) !important;
    background:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(135deg, #071522 0%, #09263b 55%, #082f36 100%) !important;
    background-size: 64px 64px, 64px 64px, auto !important;
}

footer.site-footer.site-footer--modern .site-footer__top {
    padding: 128px 0 58px !important;
}

footer.site-footer.site-footer--modern .site-footer__top > .container,
footer.site-footer.site-footer--modern .site-footer__bottom > .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 46px !important;
    padding-right: 46px !important;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: start !important;
}

footer.site-footer.site-footer--modern .site-footer__brand-col,
footer.site-footer.site-footer--modern .site-footer__col {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 34px 0 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

footer.site-footer.site-footer--modern .site-footer__brand-col {
    grid-column: auto !important;
}

footer.site-footer.site-footer--modern .footer-brand__logo img {
    width: 300px !important;
    max-width: 100% !important;
    padding: 10px 14px !important;
    border-radius: 16px !important;
    background: #fff !important;
}

footer.site-footer.site-footer--modern .footer-description,
footer.site-footer.site-footer--modern .footer-capabilities,
footer.site-footer.site-footer--modern .footer-brand-contact {
    max-width: 420px !important;
}

footer.site-footer.site-footer--modern .footer-description {
    margin: 24px 0 18px !important;
    color: rgba(216, 230, 239, .82) !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
}

footer.site-footer.site-footer--modern .site-footer__title {
    max-width: none !important;
    margin: 0 0 28px !important;
    padding: 0 0 0 18px !important;
    color: #fff !important;
    font-size: clamp(22px, 1.65vw, 30px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
}

footer.site-footer.site-footer--modern .site-footer__title::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
    width: 5px !important;
    height: 42px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #2dd4bf, #16a34a) !important;
}

footer.site-footer.site-footer--modern .site-footer__title::after {
    display: none !important;
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-link-list {
    gap: 20px !important;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a {
    color: rgba(216, 230, 239, .82) !important;
    font-size: 17px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

footer.site-footer.site-footer--modern .footer-menu a::before,
footer.site-footer.site-footer--modern .footer-link-list a::before {
    display: none !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact {
    gap: 10px !important;
    margin: 0 0 22px !important;
}

footer.site-footer.site-footer--modern .footer-brand-contact li {
    padding-left: 28px !important;
    color: rgba(216, 230, 239, .8) !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

footer.site-footer.site-footer--modern .site-footer__col > p {
    max-width: 420px !important;
    color: rgba(216, 230, 239, .78) !important;
    font-size: 17px !important;
    line-height: 1.58 !important;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    max-width: 430px !important;
    padding: 22px !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .055) !important;
}

footer.site-footer.site-footer--modern .footer-newsletter input,
footer.site-footer.site-footer--modern .footer-newsletter button {
    width: 100% !important;
    min-height: 54px !important;
    border-radius: 14px !important;
}

footer.site-footer.site-footer--modern .footer-social__item {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
}

footer.site-footer.site-footer--modern .site-footer__bottom-inner {
    width: 100% !important;
    max-width: none !important;
}

@media (max-width: 1280px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 42px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__title,
    footer.site-footer.site-footer--modern .footer-menu a,
    footer.site-footer.site-footer--modern .footer-link-list a {
        white-space: normal !important;
    }
}

@media (max-width: 680px) {
    footer.site-footer.site-footer--modern {
        clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%) !important;
    }

    footer.site-footer.site-footer--modern .site-footer__top {
        padding-top: 76px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__top > .container,
    footer.site-footer.site-footer--modern .site-footer__bottom > .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer compact polish */
footer.site-footer.site-footer--modern {
    background:
        radial-gradient(circle at 18% -18%, rgba(45, 212, 191, .18), transparent 30%),
        linear-gradient(135deg, #07111d 0%, #0a1f2e 58%, #082f33 100%);
}

footer.site-footer.site-footer--modern .site-footer__top {
    padding-bottom: 30px;
}

footer.site-footer.site-footer--modern .footer-cta {
    width: min(100% - 32px, 1180px);
    margin: 0 auto 30px;
    padding: 22px 28px;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 0 0 22px 22px;
    background:
        linear-gradient(135deg, rgba(15, 94, 255, .98), rgba(14, 116, 144, .96));
    box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

footer.site-footer.site-footer--modern .footer-cta span {
    margin-bottom: 6px;
    font-size: 11px;
}

footer.site-footer.site-footer--modern .footer-cta h2 {
    max-width: 720px;
    font-size: clamp(24px, 2.35vw, 34px);
    line-height: 1.14;
    letter-spacing: -.03em;
}

footer.site-footer.site-footer--modern .footer-cta__primary,
footer.site-footer.site-footer--modern .footer-cta__secondary {
    min-height: 44px;
    padding-inline: 18px;
    border-radius: 13px;
}

footer.site-footer.site-footer--modern .site-footer__grid {
    grid-template-columns: 1.25fr .88fr 1fr .95fr 1fr;
    gap: 28px;
}

footer.site-footer.site-footer--modern .site-footer__brand-col {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

footer.site-footer.site-footer--modern .footer-brand__logo {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
}

footer.site-footer.site-footer--modern .footer-brand__logo img {
    width: 205px;
}

footer.site-footer.site-footer--modern .footer-description {
    max-width: 330px;
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.65;
}

footer.site-footer.site-footer--modern .footer-capabilities {
    gap: 7px;
    margin-bottom: 16px;
}

footer.site-footer.site-footer--modern .footer-capabilities span {
    padding: 6px 9px;
    font-size: 11px;
}

footer.site-footer.site-footer--modern .site-footer__title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 1.35;
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-link-list {
    gap: 11px;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a {
    font-size: 14px;
    line-height: 1.35;
    color: rgba(226, 242, 247, .76);
}

footer.site-footer.site-footer--modern .footer-menu a::before,
footer.site-footer.site-footer--modern .footer-link-list a::before {
    width: 6px;
    height: 6px;
}

footer.site-footer.site-footer--modern .footer-contact-list {
    gap: 8px;
}

footer.site-footer.site-footer--modern .footer-contact-list li {
    padding: 0 0 10px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    border-radius: 0;
    background: transparent;
    line-height: 1.45;
}

footer.site-footer.site-footer--modern .footer-contact-list span {
    font-size: 10px;
}

footer.site-footer.site-footer--modern .site-footer__col > p {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.55;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    max-width: 270px;
}

footer.site-footer.site-footer--modern .footer-newsletter input,
footer.site-footer.site-footer--modern .footer-newsletter button {
    min-height: 44px;
    border-radius: 13px;
}

footer.site-footer.site-footer--modern .footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 12px;
}

footer.site-footer.site-footer--modern .site-footer__bottom {
    padding: 14px 0;
}

@media (max-width: 1180px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    footer.site-footer.site-footer--modern .site-footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    footer.site-footer.site-footer--modern .footer-cta {
        grid-template-columns: 1fr;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* Modern footer */
.site-footer--modern {
    position: relative;
    overflow: hidden;
    color: #d9e8ee;
    background:
        radial-gradient(circle at 12% -8%, rgba(15, 94, 255, .22), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(47, 128, 255, .18), transparent 28%),
        linear-gradient(135deg, #07111d 0%, #092333 48%, #073f3b 100%);
}

.site-footer--modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
    pointer-events: none;
}

.site-footer--modern .site-footer__top,
.site-footer--modern .site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer--modern .site-footer__top {
    padding: 0 0 42px;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin: 0 0 38px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-top: 0;
    border-radius: 0 0 28px 28px;
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 255, 255, .2), transparent 24%),
        linear-gradient(135deg, rgba(15, 94, 255, .96), rgba(8, 145, 178, .92));
    box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

.footer-cta span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #eaf2ff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-cta h2 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.footer-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-cta__primary,
.footer-cta__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.site-footer--modern .footer-cta__primary {
    color: #0f172a;
    background: #fff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, .18);
}

.site-footer--modern .footer-cta__secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .1);
}

.site-footer--modern .site-footer__grid {
    display: grid;
    grid-template-columns: 1.55fr .9fr 1.12fr .9fr 1.12fr;
    gap: 22px;
    align-items: start;
}

.site-footer--modern .site-footer__col {
    min-width: 0;
}

.site-footer--modern .site-footer__brand-col {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.site-footer--modern .footer-brand__logo img {
    width: 230px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .18));
}

.site-footer--modern .footer-description {
    margin: 18px 0;
    color: rgba(226, 242, 247, .86);
    font-size: 15px;
    line-height: 1.72;
}

.footer-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-capabilities span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: #bff8ec;
    background: rgba(15, 94, 255, .12);
    border: 1px solid rgba(45, 212, 191, .18);
    font-size: 12px;
    font-weight: 850;
}

.site-footer--modern .site-footer__title {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer--modern .site-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2dd4bf, #2f80ff);
}

.site-footer--modern .footer-menu,
.site-footer--modern .footer-contact-list,
.site-footer--modern .footer-link-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer--modern .footer-menu li,
.site-footer--modern .footer-contact-list li,
.site-footer--modern .footer-link-list li {
    margin: 0;
}

.site-footer--modern .footer-menu a,
.site-footer--modern .footer-link-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(226, 242, 247, .82);
    font-weight: 700;
}

.site-footer--modern .footer-menu a::before,
.site-footer--modern .footer-link-list a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: rgba(45, 212, 191, .8);
    transform: rotate(45deg);
}

.site-footer--modern .footer-menu a:hover,
.site-footer--modern .footer-link-list a:hover,
.site-footer--modern .footer-contact-list a:hover,
.site-footer--modern .footer-bottom-links a:hover {
    color: #fff;
}

.site-footer--modern .footer-contact-list li {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
    color: rgba(226, 242, 247, .84);
}

.site-footer--modern .footer-contact-list span {
    color: #86efac;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer--modern .footer-contact-list a {
    color: #fff;
    font-weight: 850;
}

.site-footer--modern .site-footer__col > p {
    margin: 0 0 14px;
    color: rgba(226, 242, 247, .78);
    font-size: 14px;
    line-height: 1.65;
}

.site-footer--modern .footer-newsletter {
    display: grid;
    gap: 10px;
}

.site-footer--modern .footer-newsletter input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .075);
    outline: none;
}

.site-footer--modern .footer-newsletter input::placeholder {
    color: rgba(226, 242, 247, .56);
}

.site-footer--modern .footer-newsletter button {
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    color: #0f172a;
    background: linear-gradient(135deg, #eaf2ff, #ffffff);
    font-weight: 950;
    cursor: pointer;
}

.site-footer--modern .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer--modern .footer-social a {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    font-size: 13px;
    font-weight: 950;
}

.site-footer--modern .footer-social a:hover {
    border-color: rgba(45, 212, 191, .44);
    background: rgba(15, 94, 255, .18);
}

.site-footer--modern .site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: rgba(2, 8, 23, .22);
    padding: 18px 0;
}

.site-footer--modern .site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-footer--modern .copyright {
    margin: 0;
    color: rgba(226, 242, 247, .68);
    font-size: 13px;
}

.site-footer--modern .footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer--modern .footer-bottom-links a {
    color: rgba(226, 242, 247, .72);
    font-size: 13px;
    font-weight: 750;
}

@media (max-width: 1180px) {
    .site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer--modern .site-footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .footer-cta {
        grid-template-columns: 1fr;
    }

    .footer-cta__actions {
        justify-content: flex-start;
    }

    .site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer--modern .site-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .footer-cta {
        padding: 22px;
        border-radius: 0 0 22px 22px;
    }

    .footer-cta__actions,
    .footer-cta__primary,
    .footer-cta__secondary {
        width: 100%;
    }

    .site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* Header brand polish: single-row menu, larger bitmap logo, no promotional topbar. */
.site-topbar {
    display: none !important;
}

.site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(209, 226, 238, .95);
    box-shadow: 0 14px 34px rgba(12, 25, 42, .07);
    backdrop-filter: blur(18px);
}

.site-header-main,
body.post-type-archive-product .site-header-main,
body.tax-product_cat .site-header-main,
body.is-front-page .site-header-main {
    min-height: 76px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,255,.96));
    border-bottom: 1px solid rgba(211, 226, 238, .95);
    box-shadow: none;
}

.site-header-main__inner,
body.post-type-archive-product .site-header-main__inner,
body.tax-product_cat .site-header-main__inner,
body.is-front-page .site-header-main__inner {
    min-height: 76px;
    gap: 26px;
}

.site-logo--bitmap,
body.post-type-archive-product .site-logo--bitmap,
body.tax-product_cat .site-logo--bitmap {
    min-width: 306px;
}

.site-logo--bitmap .site-logo__image,
body.post-type-archive-product .site-logo--bitmap .site-logo__image,
body.tax-product_cat .site-logo--bitmap .site-logo__image {
    width: 306px;
    max-width: min(306px, 56vw);
    max-height: 72px;
}

.main-navigation .menu,
body.post-type-archive-product .main-navigation .menu,
body.tax-product_cat .main-navigation .menu {
    gap: 26px;
}

.main-navigation .menu a,
body.post-type-archive-product .main-navigation .menu a,
body.tax-product_cat .main-navigation .menu a,
body.is-front-page .main-navigation .menu a {
    padding: 26px 0 22px;
    color: #132238;
    font-size: 15px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: none;
}

.main-navigation .menu a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
body.post-type-archive-product .main-navigation .menu a:hover,
body.post-type-archive-product .main-navigation .current-menu-item > a,
body.post-type-archive-product .main-navigation .current-menu-ancestor > a,
body.tax-product_cat .main-navigation .menu a:hover,
body.tax-product_cat .main-navigation .current-menu-item > a,
body.tax-product_cat .main-navigation .current-menu-ancestor > a {
    color: #0f5eff;
}

.main-navigation .menu a::after,
body.is-front-page .main-navigation .menu a::after {
    bottom: 14px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f5eff, #12b8c8 52%, #2f80ff);
}

.header-actions .button,
body.post-type-archive-product .header-actions .button,
body.tax-product_cat .header-actions .button,
body.is-front-page .header-actions .button {
    min-height: 46px;
    padding-inline: 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f5eff, #2f80ff);
    box-shadow: 0 14px 26px rgba(14, 116, 144, .18);
}

.header-action-icon {
    color: #132238;
}

.site-logo--bitmap {
    display: inline-flex;
    align-items: center;
    min-width: 218px;
}

.site-logo--bitmap .site-logo__image {
    display: block;
    width: 258px;
    max-width: min(258px, 54vw);
    height: auto;
    max-height: 62px;
    object-fit: contain;
}

.site-logo--bitmap .site-logo__mark,
.site-logo--bitmap .site-logo__copy {
    display: none !important;
}

.footer-brand__logo {
    display: inline-flex;
    align-items: center;
    width: 238px;
    max-width: 100%;
    padding: 7px 9px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.footer-brand__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.main-navigation .menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .menu a {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.main-navigation .menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--color-primary);
    transition: transform 0.22s ease;
}

.main-navigation .menu a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current-menu-ancestor > a::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    padding: 9px 8px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin-bottom: 6px;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

.menu-toggle .screen-reader-text {
    background: transparent;
    margin: 0;
}

body.menu-open {
    overflow: hidden;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-action-icon {
    color: #ffffff;
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.header-action-icon__circle,
.header-action-icon__cart {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
}

.header-action-icon__circle::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    left: 9px;
    top: 8px;
}

.header-action-icon__circle::after {
    content: "";
    width: 6px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 20px;
    top: 20px;
    transform: rotate(45deg);
}

.header-action-icon__cart {
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.25s ease;
    cursor: pointer;
}

.button--primary {
    color: #ffffff;
    background: var(--color-primary);
}

.button--outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

.button--ghost,
.button--small {
    min-height: 40px;
    padding: 10px 18px;
}

.button--full {
    width: 100%;
}

.hero-home {
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-home__inner,
.page-hero__content {
    position: relative;
    z-index: 2;
}

.hero-home__content {
    max-width: 620px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #4fa3ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-home__title,
.page-hero__title {
    margin: 0 0 18px;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-home__description,
.page-hero__desc {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.hero-home__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-feature-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.hero-feature-item,
.feature-box,
.stat-box,
.quote-side-box,
.pricing-table-box,
.category-card,
.product-card,
.post-card,
.inox-widget,
.page-entry,
.single-entry,
.error-404-box {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.hero-feature-item {
    padding: 18px 16px;
    color: var(--color-text);
    font-weight: 700;
}

.page-hero {
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 52px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 22, 45, 0.92), rgba(7, 22, 45, 0.6));
}

.page-hero__text {
    max-width: 780px;
}

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.breadcrumb-wrap a {
    color: #ffffff;
}

.breadcrumb-strip {
    background: #091a33;
    padding: 12px 0;
}

.breadcrumb-strip .breadcrumb-wrap {
    color: rgba(255, 255, 255, 0.84);
}

.breadcrumb-strip .breadcrumb-wrap a {
    color: #ffffff;
}

.floating-contact {
    position: fixed;
    right: 8px;
    top: 50%;
    z-index: 100;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.floating-contact a {
    display: block;
    min-width: 88px;
    padding: 11px 12px;
    color: var(--color-primary-dark);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.floating-contact a:last-child {
    border-bottom: 0;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading--center {
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.15;
    text-transform: uppercase;
}

.section-heading p {
    margin: 0;
    color: var(--color-text-soft);
}

.section-dark .section-heading p,
.section-dark-accent .section-heading p,
.section-dark-stats .section-heading p {
    color: rgba(255, 255, 255, 0.82);
}

.category-card-grid,
.product-grid,
.post-grid,
.stats-grid,
.feature-strip-grid {
    display: grid;
    gap: 24px;
}

.six-columns {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.five-columns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.four-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.product-card,
.post-card {
    overflow: hidden;
}

.category-card {
    padding: 18px;
    text-align: center;
}

.category-card h3,
.product-card__title,
.post-card__title {
    margin: 14px 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

.category-card a,
.post-card__link {
    color: var(--color-primary);
    font-weight: 700;
}

.placeholder-box {
    min-height: 180px;
    background: linear-gradient(135deg, #eef3fb, #dae5f7);
}

.product-card__content,
.post-card__body {
    padding: 18px;
}

.product-card__meta,
.post-card__meta,
.post-card__date {
    color: var(--color-text-soft);
    font-size: 14px;
}

.post-card__cat {
    display: inline-flex;
    padding: 4px 9px;
    background: #eaf1fd;
    color: var(--color-primary-dark);
    border-radius: 999px;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 700;
}

.product-card__price {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 24px;
    margin: 10px 0 16px;
}

.feature-strip-grid {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    align-items: stretch;
}

.feature-strip-lead {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(10, 33, 74, 0.95), rgba(8, 23, 46, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-strip-lead h2 {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.18;
    text-transform: uppercase;
}

.feature-strip-lead ul {
    margin: 0;
    padding-left: 18px;
}

.feature-box {
    padding: 26px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
}

.pricing-home-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.pricing-table-box,
.quote-side-box {
    padding: 24px;
}

.table-pricing {
    width: 100%;
    border-collapse: collapse;
}

.table-pricing th,
.table-pricing td {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    text-align: left;
    background: #ffffff;
    color: var(--color-text);
}

.table-pricing th {
    background: #eaf1fd;
    color: var(--color-primary-dark);
}

.section-blue-form {
    background: linear-gradient(135deg, #0b2c69, #0f5eff);
    color: #ffffff;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: center;
}

.quote-form {
    background: #ffffff;
    color: var(--color-text);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--color-text);
    font-size: 15px;
}

textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 16px;
}

.stats-grid {
    align-items: stretch;
}

.stat-box {
    padding: 22px;
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
}

.main-content-area {
    min-width: 0;
}

.sidebar-area {
    min-width: 0;
}

.inox-widget {
    padding: 22px;
    margin-bottom: 24px;
}

.widget-title {
    margin: 0 0 16px;
    font-size: 20px;
}

.archive-toolbar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.archive-tab {
    padding: 14px 20px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 700;
}

.archive-tab.is-active {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.archive-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.archive-tab.is-active:hover {
    color: #ffffff;
}

.post-list {
    display: grid;
    gap: 24px;
}

.post-list--large .post-card {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: stretch;
}

.post-card__thumb,
.post-card__thumb-link .placeholder-box {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-entry,
.page-entry {
    padding: 28px;
}

.single-entry__title,
.page-entry__title {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.15;
}

.single-entry__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--color-text-soft);
    margin-bottom: 14px;
}

.single-entry__thumbnail,
.page-entry__thumbnail {
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 12px;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}

.entry-content table th,
.entry-content table td {
    border: 1px solid var(--color-border);
    padding: 12px 14px;
}

.entry-content ul,
.entry-content ol {
    padding-left: 22px;
}

.pagination-wrap {
    margin-top: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-links .page-numbers {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: #ffffff;
}

.nav-links .current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.error-404-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 28px;
    text-align: center;
}

.error-404-box h1 {
    margin: 0 0 12px;
    font-size: 92px;
    line-height: 1;
    color: var(--color-primary);
}

.site-footer__top {
    padding: 56px 0 24px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr;
    gap: 26px;
}

.site-footer__title {
    margin: 0 0 16px;
    font-size: 20px;
    color: #ffffff;
}

.footer-description,
.footer-contact-list,
.footer-link-list,
.footer-newsletter,
.footer-menu,
.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-menu,
.footer-contact-list,
.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li,
.footer-contact-list li,
.footer-link-list li {
    margin-bottom: 10px;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.footer-newsletter button {
    min-width: 108px;
    border: 0;
    border-radius: 10px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.screen-reader-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

.product-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
}

.product-filter-sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
}

.filter-box {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.filter-box h3 {
    margin: 0 0 14px;
    font-size: 22px;
}

.filter-group h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.filter-range-group input {
    width: calc(50% - 4px);
    min-height: 40px;
    margin-bottom: 8px;
    font-size: 14px;
}

.filter-reset-btn {
    margin-top: 10px;
    width: 100%;
}

.filter-menu,
.filter-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-menu li {
    margin-bottom: 8px;
}

.filter-menu a {
    display: block;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 9px 10px;
}

.product-main-area {
    min-width: 0;
}

.product-archive-head {
    margin-bottom: 22px;
}

.product-archive-head h1 {
    margin: 0 0 8px;
    font-size: 46px;
    line-height: 1.1;
    text-transform: uppercase;
}

.product-archive-head p {
    margin: 0;
    color: var(--color-text-soft);
}

.product-sort-form {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-sort-form label {
    font-weight: 700;
}

.product-sort-form select {
    width: auto;
    min-width: 190px;
    min-height: 42px;
}

.inox-product-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
}

.inox-product-card__thumb-wrap {
    display: block;
    aspect-ratio: 4 / 3;
    background: #f3f7ff;
}

.inox-product-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inox-product-card__body {
    padding: 14px;
}

.inox-product-card__title {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

.inox-product-card__title a {
    color: var(--color-text);
}

.inox-product-card__spec {
    margin: 0 0 8px;
    color: var(--color-text-soft);
    font-size: 14px;
}

.inox-product-card__price {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 800;
}

.inox-product-card__actions {
    display: flex;
    gap: 8px;
}

.icon-cart-btn {
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.single-product-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 26px;
    margin-bottom: 24px;
}

.single-product-main-image {
    width: 100%;
    min-height: 380px;
    border-radius: 12px;
    object-fit: cover;
}

.single-product-summary {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
}

.single-product-title {
    margin: 0 0 12px;
    font-size: 52px;
}

.single-product-rating {
    display: flex;
    gap: 10px;
    color: #f2b300;
    margin-bottom: 14px;
}

.single-product-price {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-size: 46px;
    font-weight: 800;
}

.single-product-stock {
    margin: 0 0 12px;
    color: #1f9f50;
    font-weight: 700;
}

.single-product-excerpt {
    margin: 0 0 18px;
    color: var(--color-text-soft);
}

.single-product-actions {
    display: flex;
    gap: 12px;
}

.single-product-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
}

.single-product-content,
.single-product-sidebox {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 22px;
}

.single-product-sidebox h3 {
    margin-top: 0;
    font-size: 28px;
}

.single-product-sidebox ul {
    margin: 0 0 16px;
    padding-left: 20px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

.about-intro-media img,
.about-intro-media .placeholder-box {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 14px;
}

.about-intro-content h1 {
    margin: 0 0 12px;
    font-size: 54px;
    line-height: 1.1;
}

.about-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.about-core-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.contact-info-grid {
    margin-top: 20px;
}

.contact-info-grid .feature-box {
    min-height: 140px;
}

.contact-info-grid .feature-box strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 22px;
}

.contact-map-card,
.contact-route-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 18px;
}

.contact-map-placeholder {
    min-height: 340px;
}

.contact-route-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.contact-route-card ul {
    margin: 0;
    padding-left: 20px;
}

.news-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
}

.news-tab-full {
    margin-bottom: 20px;
}

.news-tab-full .archive-tab {
    min-width: 190px;
    text-align: center;
}

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

.mini-post-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.mini-post-thumb img,
.mini-post-thumb .placeholder-box {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.mini-post-body h4 {
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 1.35;
}

.mini-post-body h4 a {
    color: var(--color-text);
}

.mini-post-body span {
    color: var(--color-text-soft);
    font-size: 12px;
}

.single-news-entry {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
}

.single-news-entry__title {
    margin: 0 0 10px;
    font-size: 48px;
    line-height: 1.12;
}

.single-news-entry__meta {
    display: flex;
    gap: 14px;
    color: var(--color-text-soft);
    margin-bottom: 14px;
}

.single-news-entry__thumb {
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
}

.single-news-entry__thumb img {
    width: 100%;
}

.single-news-tags a {
    margin-right: 8px;
}

.single-news-related {
    margin-top: 24px;
}

.single-news-related h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

/* Modern article reading experience */
body.single-post .single-content-wrap {
    background:
        linear-gradient(180deg, #f5f7fb 0%, #ffffff 360px),
        #ffffff;
}

body.single-post .content-with-sidebar {
    align-items: flex-start;
    gap: 36px;
}

body.single-post .main-content-area {
    min-width: 0;
}

.single-news-entry,
.single-entry {
    border: 1px solid #dbe4ef;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.single-news-entry__header,
.single-entry__header {
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid #e6edf5;
}

.single-news-entry__title,
.single-entry__title {
    max-width: 980px;
    margin-bottom: 14px;
    color: #111827;
    letter-spacing: 0;
}

.single-news-entry__meta,
.single-entry__meta {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    color: #53657d;
    font-size: 15px;
}

.single-news-entry__meta span,
.single-entry__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid #e1e8f0;
    border-radius: 999px;
    background: #f8fafc;
}

.article-toc {
    margin: 0 0 28px;
    padding: 18px;
    border: 1px solid #d7e2ee;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.article-toc__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.article-toc__eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #1d4ed8;
}

.article-toc__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-toc__item a {
    display: block;
    position: relative;
    padding: 9px 10px 9px 14px;
    border-radius: 9px;
    color: #334155;
    line-height: 1.35;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid transparent;
}

.article-toc__item a:hover {
    color: #0f3f86;
    border-color: #c9d8ea;
    background: #f2f7ff;
}

.article-toc__item--h3 a {
    padding-left: 24px;
    color: #5b6b80;
    font-size: 15px;
}

.single-news-entry__content,
.single-entry__content {
    color: #102033;
    font-size: 18px;
    line-height: 1.8;
}

.entry-content p {
    margin: 0 0 20px;
}

.entry-content h2,
.entry-content h3 {
    scroll-margin-top: 110px;
    color: #0f172a;
    letter-spacing: 0;
}

.entry-content h2 {
    position: relative;
    margin: 42px 0 16px;
    padding-top: 8px;
    font-size: 30px;
    line-height: 1.25;
}

.entry-content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 4px;
    border-radius: 999px;
    background: #1d4ed8;
}

.entry-content h3 {
    margin: 30px 0 12px;
    font-size: 23px;
    line-height: 1.35;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 24px;
    padding-left: 0;
    list-style: none;
}

.entry-content li {
    position: relative;
    margin: 9px 0;
    padding-left: 30px;
}

.entry-content ul > li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1d4ed8;
    box-shadow: 0 0 0 4px #dbeafe;
}

.entry-content ol {
    counter-reset: article-counter;
}

.entry-content ol > li {
    counter-increment: article-counter;
}

.entry-content ol > li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.entry-content table {
    display: table;
    width: 100%;
    margin: 26px 0;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #d8e2ee;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.entry-content table th {
    background: #0f2f57;
    color: #ffffff;
    font-weight: 800;
}

.entry-content table th,
.entry-content table td {
    padding: 14px 16px;
    border: 0;
    border-bottom: 1px solid #e5edf6;
    vertical-align: top;
}

.entry-content table tr:last-child th,
.entry-content table tr:last-child td {
    border-bottom: 0;
}

.entry-content table tbody tr:nth-child(even) td {
    background: #f8fafc;
}

.entry-content a {
    color: #0f55b8;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.entry-content blockquote {
    margin: 28px 0;
    padding: 20px 22px;
    border-left: 5px solid #1d4ed8;
    border-radius: 12px;
    background: #f3f7fd;
    color: #1e293b;
}

body.single-post .sidebar,
body.single-post .widget-area {
    position: sticky;
    top: 96px;
}

.three-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-notice {
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
}

.form-notice--success {
    color: #05603a;
    background: #d9fbe8;
    border: 1px solid #96e8be;
}

.form-notice--error {
    color: #952b2b;
    background: #ffe8e8;
    border: 1px solid #ffc7c7;
}

.cta-banner-inline {
    border-radius: 14px;
    background: linear-gradient(135deg, #081d3e, #0f5eff);
    color: #ffffff;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-banner-inline h2 {
    margin: 0 0 6px;
    font-size: 34px;
    line-height: 1.15;
}

.cta-banner-inline p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1199px) {
    .six-columns,
    .five-columns,
    .four-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-strip-grid,
    .pricing-home-grid,
    .quote-form-grid,
    .site-footer__grid,
    .content-with-sidebar,
    .product-layout,
    .single-product-head,
    .single-product-body,
    .about-intro-grid,
    .about-core-grid,
    .contact-map-grid,
    .news-layout-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .floating-contact {
        display: none;
    }
}

@media (max-width: 991px) {
    .site-topbar__inner,
    .site-header-main__inner,
    .site-footer__bottom-inner,
    .footer-newsletter,
    .post-list--large .post-card {
        flex-direction: column;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .site-header-main__inner {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 50;
        background: #08172e;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px;
        display: none;
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .header-actions {
        margin-left: auto;
        justify-content: flex-end;
    }

    .hero-home__title,
    .page-hero__title,
    .single-entry__title,
    .page-entry__title {
        font-size: 36px;
    }

    .single-product-title,
    .single-news-entry__title,
    .about-intro-content h1,
    .product-archive-head h1 {
        font-size: 36px;
    }

    .form-grid-2,
    .site-footer__grid,
    .hero-feature-list,
    .three-columns,
    .six-columns,
    .five-columns,
    .four-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 40px 0;
    }

    .container {
        width: min(100% - 24px, var(--container-width));
    }

    .hero-home,
    .page-hero {
        padding: 48px 0;
    }

    .hero-home__title,
    .page-hero__title,
    .single-entry__title,
    .page-entry__title {
        font-size: 28px;
    }

    .single-product-title,
    .single-news-entry__title,
    .about-intro-content h1,
    .product-archive-head h1 {
        font-size: 28px;
    }

    .section-heading h2,
    .feature-strip-lead h2 {
        font-size: 26px;
    }

    .form-grid-2,
    .site-footer__grid,
    .hero-feature-list,
    .three-columns,
    .six-columns,
    .five-columns,
    .four-columns {
        grid-template-columns: 1fr;
    }

    .site-topbar__right,
    .hero-home__buttons,
    .footer-bottom-links,
    .single-product-actions,
    .product-sort-form {
        flex-direction: column;
        align-items: flex-start;
    }

    .button,
    .footer-newsletter button {
        width: 100%;
    }

    .footer-newsletter {
        flex-direction: column;
    }
}

/* Demo alignment overrides */
:root {
    --color-primary: #1261e8;
    --color-primary-dark: #063a87;
    --color-dark: #061321;
    --color-dark-2: #0b1d31;
    --color-text: #142033;
    --color-text-soft: #647082;
    --color-border: #dfe6f2;
    --color-background: #f5f8fc;
    --shadow-soft: 0 8px 24px rgba(8, 24, 49, 0.07);
    --radius-md: 8px;
    --radius-lg: 8px;
    --container-width: 1180px;
}

body {
    background: #f6f8fb;
    color: var(--color-text);
    font-size: 14px;
}

.section-space {
    padding: 38px 0;
}

.site-topbar {
    background: #061321;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
}

.site-topbar__inner {
    min-height: 32px;
}

.site-header-main {
    background: rgba(6, 13, 24, 0.96);
}

body:not(.is-front-page) .site-header-main {
    background: #ffffff;
}

.site-header-main__inner {
    min-height: 74px;
}

.site-logo--text,
.footer-brand__text {
    display: inline-flex;
    flex-direction: column;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

body:not(.is-front-page) .site-logo--text {
    color: #081526;
}

.site-logo__title,
.footer-brand__text {
    font-size: 30px;
}

.site-header .site-logo__title,
.site-header .site-logo__tagline {
    color: #fff;
}

.site-logo__title::before,
.footer-brand__text::before {
    content: "\2022";
    display: inline-block;
    margin-right: 8px;
    color: currentColor;
    font-size: 25px;
    vertical-align: 2px;
}

.site-logo__tagline {
    margin-left: 39px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.site-logo__tagline:empty::before {
    content: "PREMIUM QUALITY";
}

.main-navigation .menu {
    gap: 28px;
}

.main-navigation .menu a {
    color: #fff;
    font-size: 13px;
    padding: 28px 0 15px;
}

.main-navigation .menu a::after {
    bottom: 8px;
}

body:not(.is-front-page) .main-navigation .menu a,
body:not(.is-front-page) .header-action-icon {
    color: #081526;
}

body:not(.is-front-page) .header-action-icon__circle::before {
    border-color: #081526;
}

body:not(.is-front-page) .header-action-icon__circle::after {
    background: #081526;
}

.header-action-icon {
    border: 0;
}

.button {
    min-height: 42px;
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 13px;
}

.hero-home {
    min-height: 360px;
    padding: 76px 0 42px;
    background-image: linear-gradient(90deg, rgba(3, 12, 24, 0.96) 0%, rgba(5, 16, 31, 0.84) 38%, rgba(5, 16, 31, 0.12) 100%), url("../images/demo/hero-home.jpg");
    background-size: cover;
    background-position: center top;
}

.hero-home__content {
    max-width: 560px;
}

.section-kicker {
    color: #2e86ff;
    letter-spacing: 0;
}

.hero-home__title,
.page-hero__title {
    font-size: clamp(34px, 4vw, 50px);
    letter-spacing: 0;
}

.hero-home__description,
.page-hero__desc {
    max-width: 560px;
    font-size: 15px;
}

input[type="checkbox"],
input[type="radio"] {
    width: 16px;
    min-height: 16px;
    height: 16px;
    padding: 0;
    margin: 0 8px 0 0;
    vertical-align: -3px;
    accent-color: var(--color-primary);
}

.hero-feature-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 620px;
}

.hero-feature-item {
    min-height: 58px;
    padding: 8px 14px;
    color: #fff;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.2);
    border-radius: 0;
    box-shadow: none;
    font-size: 13px;
}

.page-hero {
    min-height: 190px;
    padding: 48px 0;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    background: linear-gradient(90deg, rgba(4, 17, 32, 0.94) 0%, rgba(4, 17, 32, 0.72) 43%, rgba(4, 17, 32, 0.14) 100%);
}

.breadcrumb-wrap {
    font-size: 13px;
}

.section-heading {
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 26px;
    letter-spacing: 0;
}

.section-heading h2::after,
.archive-title::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 8px;
    background: var(--color-primary);
    border-radius: 99px;
}

.section-heading--center h2::after {
    margin-left: auto;
    margin-right: auto;
}

.category-card-grid,
.product-grid,
.post-grid,
.stats-grid,
.contact-info-grid {
    gap: 20px;
}

.category-card,
.product-card,
.inox-product-card,
.post-card,
.feature-box,
.filter-box,
.single-product-card,
.contact-route-card,
.contact-map-card,
.inox-widget,
.page-entry,
.single-entry {
    border-radius: 6px;
    box-shadow: none;
}

.category-card {
    padding: 10px;
    text-align: left;
}

.category-card__image,
.product-card__image,
.inox-product-card__thumb {
    width: 100%;
    height: 155px;
    object-fit: contain;
    background: #fff;
}

.category-card__image {
    height: 112px;
}

.category-card h3,
.product-card__title,
.post-card__title,
.inox-product-card__title {
    font-size: 15px;
    font-weight: 800;
}

.category-card a,
.post-card__link {
    font-size: 12px;
}

.feature-strip-grid {
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 16px;
}

.section-dark-accent {
    background-image: linear-gradient(90deg, rgba(5, 18, 33, .98), rgba(10, 31, 55, .94)), url("../images/demo/hero-products.jpg");
    background-size: cover;
    background-position: center;
}

.feature-strip-lead {
    padding: 20px 0;
    background: transparent;
    border: 0;
}

.feature-strip-lead h2 {
    font-size: 22px;
}

.feature-box {
    padding: 22px 18px;
    color: var(--color-text);
}

.pricing-home-grid {
    grid-template-columns: minmax(0, 2.1fr) 310px;
}

.section-dark {
    background-image: linear-gradient(90deg, rgba(5, 18, 33, .98), rgba(8, 25, 45, .94)), url("../images/demo/hero-coil.jpg");
    background-size: cover;
}

.pricing-table-box,
.quote-side-box {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.pricing-table-box .section-heading h2,
.pricing-table-box .section-heading p {
    color: #fff;
}

.table-pricing th {
    color: #fff;
    background: var(--color-primary);
}

.table-pricing th,
.table-pricing td {
    padding: 10px 12px;
}

.section-blue-form {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    padding: 28px 0;
    border-radius: 8px;
    background-image: linear-gradient(90deg, rgba(12, 70, 166, .96), rgba(18, 97, 232, .9)), url("../images/demo/hero-home.jpg");
    background-size: cover;
}

.quote-form {
    border-radius: 8px;
}

.section-dark-stats {
    padding: 18px 0;
    background: #10243b;
}

.stat-box {
    color: #fff;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.14);
    border-radius: 0;
    box-shadow: none;
}

.stat-box strong {
    font-size: 30px;
}

.product-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 30px;
}

.product-filter-sidebar {
    min-width: 0;
}

.filter-box {
    margin-bottom: 18px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--color-border);
}

.filter-box h3 {
    margin: 0 0 15px;
    font-size: 17px;
    text-transform: uppercase;
}

.filter-menu,
.filter-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.filter-menu a,
.filter-menu li {
    display: block;
    color: var(--color-text);
    font-weight: 700;
}

.filter-menu a {
    padding: 10px 12px;
    border-radius: 5px;
}

.filter-menu .current-cat > a,
.filter-menu a:hover {
    color: var(--color-primary);
    background: #eef4ff;
}

.filter-group {
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid var(--color-border);
}

.filter-group h4 {
    margin: 0 0 10px;
    font-size: 13px;
    text-transform: uppercase;
}

.filter-group label {
    display: block;
    margin: 8px 0;
    color: var(--color-text-soft);
}

.filter-range-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.filter-range-group h4 {
    grid-column: 1 / -1;
}

.product-archive-head {
    position: relative;
    margin-bottom: 24px;
    padding-right: 220px;
}

.archive-title {
    margin: 0 0 10px;
    font-size: 28px;
    text-transform: uppercase;
}

.product-sort-form {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-sort-form label {
    color: var(--color-text-soft);
}

.product-sort-form select {
    min-width: 150px;
}

.inox-product-card {
    overflow: hidden;
    background: #fff;
}

.inox-product-card__thumb-wrap {
    display: block;
    padding: 12px;
    background: #fff;
}

.inox-product-card__body {
    padding: 0 14px 14px;
}

.inox-product-card__title {
    margin: 0 0 6px;
}

.inox-product-card__title a {
    color: var(--color-text);
}

.inox-product-card__spec {
    min-height: 22px;
    margin: 0 0 8px;
    color: var(--color-text-soft);
    font-size: 13px;
}

.inox-product-card__price {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 900;
}

.inox-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 36px;
    gap: 8px;
}

.button--ghost,
.icon-cart-btn {
    color: var(--color-primary);
    background: #fff;
    border-color: #6aa0ff;
}

.icon-cart-btn {
    display: grid;
    place-items: center;
    min-height: 36px;
    border: 1px solid #6aa0ff;
    border-radius: 5px;
    font-weight: 900;
}

.single-product-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: 44px;
    align-items: start;
}

.single-product-main-image {
    width: 100%;
    min-height: 360px;
    object-fit: contain;
    background: #f7f8fb;
    border-radius: 6px;
}

.single-product-title {
    margin: 0 0 10px;
    font-size: 34px;
    text-transform: uppercase;
}

.single-product-price {
    color: var(--color-primary);
    font-size: 28px;
    font-weight: 900;
}

.single-product-stock {
    color: #16a34a;
    font-weight: 800;
}

.single-product-body {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 360px;
    gap: 28px;
    margin-top: 34px;
}

.single-product-sidebox {
    padding: 24px;
    background: #eef5ff;
    border-radius: 6px;
}

.about-intro-grid,
.contact-map-grid,
.news-layout-grid {
    display: grid;
    gap: 32px;
}

.about-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
}

.about-intro-media img,
.contact-map-placeholder {
    width: 100%;
    border-radius: 8px;
}

.about-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.about-core-grid,
.contact-info-grid {
    display: grid;
}

.about-core-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-map-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, .9fr);
}

.contact-info-grid .feature-box {
    display: grid;
    gap: 6px;
    text-align: center;
}

.contact-info-grid .feature-box span {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 900;
}

.news-layout-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
}

.post-list--large .post-card {
    grid-template-columns: 240px minmax(0, 1fr);
}

.post-card__thumb,
.post-card__thumb-link .placeholder-box {
    min-height: 170px;
    object-fit: cover;
}

.site-footer {
    background: #071827;
}

.site-footer__top {
    padding: 42px 0 22px;
}

.site-footer__grid {
    grid-template-columns: 1.25fr 1fr 1.25fr 1fr 1.1fr;
}

.footer-social a {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 11px;
}

.footer-newsletter button {
    border-radius: 5px;
}

@media (max-width: 1100px) {
    .six-columns,
    .five-columns,
    .four-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-layout,
    .single-product-head,
    .single-product-body,
    .pricing-home-grid,
    .quote-form-grid,
    .about-intro-grid,
    .contact-map-grid,
    .news-layout-grid {
        grid-template-columns: 1fr;
    }

    .product-archive-head {
        padding-right: 0;
    }

    .product-sort-form {
        position: static;
        margin-top: 16px;
    }
}

@media (max-width: 780px) {
    .site-header-main__inner {
        min-height: 66px;
    }

    .hero-home {
        padding: 56px 0 32px;
    }

    .hero-feature-list,
    .six-columns,
    .five-columns,
    .four-columns,
    .about-feature-list,
    .about-core-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .post-list--large .post-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero-feature-list,
    .six-columns,
    .five-columns,
    .four-columns,
    .about-feature-list,
    .about-core-grid,
    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        display: none;
    }
}

/* Product archive demo pass */
html,
body {
    overflow-x: hidden;
}

body.page-template-page-san-pham .site-header-main,
body.post-type-archive-product .site-header-main,
body.tax-product_cat .site-header-main {
    background: #07111f;
}

body.page-template-page-san-pham .main-navigation .menu a,
body.post-type-archive-product .main-navigation .menu a,
body.tax-product_cat .main-navigation .menu a,
body.page-template-page-san-pham .header-action-icon,
body.post-type-archive-product .header-action-icon,
body.tax-product_cat .header-action-icon {
    color: #fff;
}

body.page-template-page-san-pham .header-action-icon__circle::before,
body.post-type-archive-product .header-action-icon__circle::before,
body.tax-product_cat .header-action-icon__circle::before {
    border-color: #fff;
}

body.page-template-page-san-pham .header-action-icon__circle::after,
body.post-type-archive-product .header-action-icon__circle::after,
body.tax-product_cat .header-action-icon__circle::after {
    background: #fff;
}

.page-hero {
    min-height: 150px;
    padding: 36px 0;
}

.page-hero__title {
    margin-bottom: 10px;
    font-size: 34px;
}

.page-hero__desc {
    margin-bottom: 12px;
    font-size: 14px;
}

.product-archive-wrap {
    padding-top: 30px;
    background: #fff;
}

.product-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.product-main-area,
.product-grid {
    min-width: 0;
}

.product-filter-sidebar {
    display: grid;
    gap: 0;
}

.filter-box {
    margin: 0;
    padding: 18px 16px;
    border-radius: 0;
    border-color: #e1e8f2;
    box-shadow: none;
}

.filter-box:first-child {
    border-radius: 4px 4px 0 0;
}

.filter-box:last-child {
    border-radius: 0 0 4px 4px;
}

.filter-box h3 {
    margin-bottom: 16px;
    font-size: 15px;
}

.filter-menu a {
    position: relative;
    padding: 10px 34px 10px 12px;
    color: #142033;
    font-size: 13px;
    border-radius: 4px;
}

.filter-menu a::after {
    content: "›";
    position: absolute;
    right: 12px;
    color: #7b8797;
}

.filter-menu .current-cat > a,
.filter-menu a:hover {
    color: var(--color-primary);
    background: #eef4ff;
}

.filter-group {
    margin-top: 14px;
    padding-top: 14px;
}

.filter-group h4 {
    font-size: 12px;
}

.filter-group label {
    margin: 9px 0;
    font-size: 13px;
}

.filter-range-group input {
    min-height: 36px;
    border-radius: 4px;
    font-size: 13px;
}

.product-archive-head {
    min-height: 70px;
    margin-bottom: 18px;
    padding-right: 300px;
}

.archive-title {
    font-size: 24px;
}

.archive-title::after {
    display: none;
}

.product-archive-head p {
    max-width: 560px;
    margin: 0;
    color: #536172;
}

.product-sort-form {
    top: 0;
    gap: 18px;
}

.product-result-count {
    color: #7a8492;
    font-size: 13px;
    white-space: nowrap;
}

.product-sort-form select {
    min-width: 150px;
    min-height: 42px;
    border-radius: 4px;
    font-size: 13px;
}

.product-grid.four-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.inox-product-card {
    border-radius: 4px;
    border-color: #dfe6f2;
    overflow: hidden;
}

.inox-product-card__thumb-wrap {
    padding: 12px 12px 0;
}

.inox-product-card__thumb {
    height: 138px;
}

.inox-product-card__body {
    padding: 12px;
    overflow: hidden;
}

.inox-product-card__title {
    min-height: 36px;
    font-size: 13px;
    line-height: 1.3;
    overflow: visible;
    white-space: normal;
}

.inox-product-card__title a {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
}

.inox-product-card__spec {
    min-height: 20px;
    font-size: 12px;
    line-height: 1.35;
}

.inox-product-card__price {
    font-size: 15px;
}

.inox-product-card__actions {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.inox-product-card__actions .button {
    min-height: 32px;
    min-width: 0;
    padding: 7px 8px;
    font-size: 12px;
    box-sizing: border-box;
}

.inox-product-card__actions .button {
    width: 100%;
}

.icon-cart-btn {
    display: none;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
}

.nav-links .page-numbers,
.pagination-wrap .page-numbers {
    min-width: 34px;
    min-height: 34px;
    border-radius: 4px;
}

.cta-banner-inline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 30px;
    align-items: center;
    padding: 28px 38px;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(8, 25, 45, .96), rgba(8, 25, 45, .82)), url("../images/demo/hero-products.jpg");
    background-size: cover;
    border-radius: 0;
}

.cta-banner-inline h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.cta-banner-inline p {
    margin: 0;
    color: rgba(255,255,255,.85);
}

.cta-banner-inline .quote-form-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px;
    background: #fff;
    border-radius: 6px;
}

.quote-form-mini input {
    min-height: 38px;
    border-radius: 4px;
    font-size: 12px;
}

.quote-form-mini button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
}

@media (max-width: 980px) {
    .product-layout {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 20px;
    }

    .product-grid.four-columns {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .container {
        width: min(100% - 56px, var(--container-width));
    }

    .filter-box {
        padding: 16px 12px;
    }

    .inox-product-card__thumb {
        height: 120px;
    }

    .inox-product-card__title {
        font-size: 13px;
    }

    .product-archive-head {
        padding-right: 0;
    }

    .product-sort-form {
        position: static;
        margin-top: 14px;
    }
}

@media (min-width: 861px) and (max-width: 1100px) {
    .product-archive-head {
        padding-right: 170px;
    }

    .product-sort-form {
        position: absolute;
        right: 0;
        top: 0;
        margin-top: 0;
    }

    .product-result-count {
        display: none;
    }
}

@media (max-width: 860px) {
    .product-layout,
    .cta-banner-inline {
        grid-template-columns: 1fr;
    }

    .product-grid.four-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-banner-inline .quote-form-mini {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Product archive visual reset: match provided Inox demo more closely. */
body,
button,
input,
select,
textarea {
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

body.post-type-archive-product,
body.tax-product_cat {
    color: #111827;
    background: #fff;
}

body.post-type-archive-product .container,
body.tax-product_cat .container {
    width: min(100% - 96px, 1120px);
}

body.post-type-archive-product .site-topbar,
body.tax-product_cat .site-topbar {
    min-height: 34px;
    color: #dbeafe;
    background: linear-gradient(90deg, #0f172a, #115e59);
    font-size: 12px;
}

body.post-type-archive-product .site-header-main,
body.tax-product_cat .site-header-main {
    min-height: 78px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
    backdrop-filter: blur(14px);
}

body.post-type-archive-product .site-header-main__inner,
body.tax-product_cat .site-header-main__inner {
    min-height: 78px;
}

body.post-type-archive-product .site-logo--tkg,
body.tax-product_cat .site-logo--tkg,
.site-logo--tkg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
    text-decoration: none;
}

body.post-type-archive-product .site-logo__mark,
body.tax-product_cat .site-logo__mark,
.site-logo__mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #34d399, #2f80ff);
    font-size: 14px;
    font-weight: 950;
    letter-spacing: -.03em;
}

body.post-type-archive-product .site-logo__copy,
body.tax-product_cat .site-logo__copy,
.site-logo__copy {
    display: grid;
    gap: 2px;
}

body.post-type-archive-product .site-logo__title,
body.tax-product_cat .site-logo__title {
    color: #0f172a;
    font-size: 23px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.04em;
}

body.post-type-archive-product .site-logo__tagline,
body.tax-product_cat .site-logo__tagline {
    color: #64748b;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .1em;
}

body.post-type-archive-product .main-navigation .menu,
body.tax-product_cat .main-navigation .menu {
    gap: 28px;
}

body.post-type-archive-product .main-navigation .menu a,
body.tax-product_cat .main-navigation .menu a {
    padding: 28px 0 24px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

body.post-type-archive-product .main-navigation .menu a:hover,
body.post-type-archive-product .main-navigation .current-menu-item > a,
body.post-type-archive-product .main-navigation .current-menu-ancestor > a,
body.tax-product_cat .main-navigation .menu a:hover,
body.tax-product_cat .main-navigation .current-menu-item > a,
body.tax-product_cat .main-navigation .current-menu-ancestor > a {
    color: #0f5eff;
}

body.post-type-archive-product .header-actions .button,
body.tax-product_cat .header-actions .button {
    min-height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: #2f80ff;
    box-shadow: 0 14px 28px rgba(47,128,255,.22);
    font-size: 13px;
}

body.post-type-archive-product .page-hero,
body.tax-product_cat .page-hero {
    min-height: 150px;
    padding: 36px 0 34px;
    background-position: center;
}

body.post-type-archive-product .page-hero::before,
body.tax-product_cat .page-hero::before {
    background: linear-gradient(90deg, rgba(3, 13, 25, .92) 0%, rgba(3, 13, 25, .68) 44%, rgba(3, 13, 25, .2) 100%);
}

body.post-type-archive-product .page-hero__title,
body.tax-product_cat .page-hero__title {
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

body.post-type-archive-product .page-hero__desc,
body.tax-product_cat .page-hero__desc {
    max-width: 480px;
    margin: 0 0 14px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

body.post-type-archive-product .breadcrumb-wrap,
body.tax-product_cat .breadcrumb-wrap {
    color: rgba(255,255,255,.86);
    font-size: 13px;
}

body.post-type-archive-product .breadcrumb-wrap a,
body.tax-product_cat .breadcrumb-wrap a {
    color: #fff;
}

body.post-type-archive-product .product-archive-wrap,
body.tax-product_cat .product-archive-wrap {
    padding: 30px 0 46px;
}

body.post-type-archive-product .product-layout,
body.tax-product_cat .product-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

body.post-type-archive-product .product-filter-sidebar,
body.tax-product_cat .product-filter-sidebar {
    gap: 0;
}

body.post-type-archive-product .filter-box,
body.tax-product_cat .filter-box {
    margin: 0;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 0;
    box-shadow: none;
}

body.post-type-archive-product .filter-box + .filter-box,
body.tax-product_cat .filter-box + .filter-box {
    border-top: 0;
}

body.post-type-archive-product .filter-box:first-child,
body.tax-product_cat .filter-box:first-child {
    border-radius: 4px 4px 0 0;
}

body.post-type-archive-product .filter-box:last-child,
body.tax-product_cat .filter-box:last-child {
    border-radius: 0 0 4px 4px;
}

body.post-type-archive-product .filter-box h3,
body.tax-product_cat .filter-box h3 {
    margin: 0 0 15px;
    color: #172033;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

body.post-type-archive-product .filter-menu,
body.tax-product_cat .filter-menu {
    display: grid;
    gap: 8px;
}

body.post-type-archive-product .filter-menu a,
body.tax-product_cat .filter-menu a {
    display: block;
    min-height: 34px;
    padding: 9px 30px 9px 12px;
    color: #172033;
    border: 1px solid #dbe4f1;
    border-radius: 4px;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

body.post-type-archive-product .filter-menu a::after,
body.tax-product_cat .filter-menu a::after {
    content: "›";
    right: 12px;
    color: #7a8798;
}

body.post-type-archive-product .filter-menu .current-cat > a,
body.post-type-archive-product .filter-menu a:hover,
body.tax-product_cat .filter-menu .current-cat > a,
body.tax-product_cat .filter-menu a:hover {
    color: #0b5ee8;
    border-color: #d7e6ff;
    background: #edf4ff;
}

body.post-type-archive-product .filter-group,
body.tax-product_cat .filter-group {
    margin: 0;
    padding: 15px 0 14px;
    border-top: 1px solid #e6edf6;
}

body.post-type-archive-product .filter-group h4,
body.tax-product_cat .filter-group h4 {
    margin: 0 0 11px;
    color: #172033;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

body.post-type-archive-product .filter-group label,
body.tax-product_cat .filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 9px 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.25;
}

body.post-type-archive-product .filter-group input[type="checkbox"],
body.tax-product_cat .filter-group input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #0f5eff;
}

body.post-type-archive-product .filter-range-group,
body.tax-product_cat .filter-range-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

body.post-type-archive-product .filter-range-group h4,
body.tax-product_cat .filter-range-group h4 {
    grid-column: 1 / -1;
}

body.post-type-archive-product .filter-range-group input,
body.tax-product_cat .filter-range-group input {
    width: 100%;
    min-height: 36px;
    padding: 6px 10px;
    border: 1px solid #dfe7f2;
    border-radius: 4px;
    color: #475569;
    font-size: 13px;
}

body.post-type-archive-product .filter-box .button,
body.tax-product_cat .filter-box .button {
    min-height: 40px;
    border-radius: 4px;
    font-size: 13px;
}

body.post-type-archive-product .filter-reset-btn,
body.tax-product_cat .filter-reset-btn {
    margin-top: 8px;
    color: #0b5ee8;
    border-color: #0b5ee8;
    background: #fff;
}

body.post-type-archive-product .product-archive-head,
body.tax-product_cat .product-archive-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    min-height: 0;
    margin: 0 0 28px;
    padding: 0;
}

body.post-type-archive-product .archive-title,
body.tax-product_cat .archive-title {
    margin: 0 0 9px;
    color: #111827;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.post-type-archive-product .product-archive-head p,
body.tax-product_cat .product-archive-head p {
    max-width: 600px;
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

body.post-type-archive-product .product-sort-form,
body.tax-product_cat .product-sort-form {
    position: static;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
}

body.post-type-archive-product .product-result-count,
body.tax-product_cat .product-result-count {
    color: #7a8492;
    font-size: 13px;
    white-space: nowrap;
}

body.post-type-archive-product .product-sort-form select,
body.tax-product_cat .product-sort-form select {
    min-width: 150px;
    min-height: 42px;
    padding: 0 34px 0 14px;
    border: 1px solid #dfe7f2;
    border-radius: 4px;
    background-color: #fff;
    color: #475569;
    font-size: 13px;
}

body.post-type-archive-product .product-grid.four-columns,
body.tax-product_cat .product-grid.four-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

body.post-type-archive-product .inox-product-card,
body.tax-product_cat .inox-product-card {
    display: grid;
    grid-template-rows: 150px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dfe7f2;
    border-radius: 4px;
    background: #fff;
    box-shadow: none;
}

body.post-type-archive-product .inox-product-card__thumb-wrap,
body.tax-product_cat .inox-product-card__thumb-wrap {
    display: block;
    height: 150px;
    padding: 13px 13px 0;
    overflow: hidden;
    background: #fff;
}

body.post-type-archive-product .inox-product-card__thumb,
body.tax-product_cat .inox-product-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

body.post-type-archive-product .inox-product-card__body,
body.tax-product_cat .inox-product-card__body {
    display: grid;
    grid-template-rows: auto auto auto auto;
    padding: 13px;
    overflow: hidden;
}

body.post-type-archive-product .inox-product-card__title,
body.tax-product_cat .inox-product-card__title {
    min-height: 34px;
    margin: 0 0 7px;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

body.post-type-archive-product .inox-product-card__title a,
body.tax-product_cat .inox-product-card__title a {
    color: inherit;
}

body.post-type-archive-product .inox-product-card__spec,
body.tax-product_cat .inox-product-card__spec {
    min-height: 32px;
    margin: 0 0 7px;
    color: #4b5563;
    font-size: 12px;
    line-height: 1.35;
}

body.post-type-archive-product .inox-product-card__price,
body.tax-product_cat .inox-product-card__price {
    margin: 0 0 10px;
    color: #0b5ee8;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

body.post-type-archive-product .inox-product-card__actions,
body.tax-product_cat .inox-product-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 8px;
    align-items: stretch;
}

body.post-type-archive-product .inox-product-card__actions .button,
body.tax-product_cat .inox-product-card__actions .button {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #0f5eff;
    border-radius: 4px;
    color: #0b5ee8;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

body.post-type-archive-product .icon-cart-btn,
body.tax-product_cat .icon-cart-btn {
    display: grid;
    place-items: center;
    width: 34px;
    min-width: 0;
    min-height: 34px;
    border: 1px solid #0f5eff;
    border-radius: 4px;
    color: #0b5ee8;
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

body.post-type-archive-product .pagination-wrap,
body.tax-product_cat .pagination-wrap {
    margin-top: 30px;
}

body.post-type-archive-product .nav-links,
body.tax-product_cat .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

body.post-type-archive-product .nav-links .page-numbers,
body.tax-product_cat .nav-links .page-numbers,
body.post-type-archive-product .pagination-wrap .page-numbers,
body.tax-product_cat .pagination-wrap .page-numbers {
    display: inline-grid;
    place-items: center;
    min-width: 32px;
    min-height: 32px;
    border: 1px solid #dfe7f2;
    border-radius: 4px;
    color: #475569;
    background: #fff;
    font-size: 13px;
}

body.post-type-archive-product .nav-links .current,
body.tax-product_cat .nav-links .current,
body.post-type-archive-product .pagination-wrap .current,
body.tax-product_cat .pagination-wrap .current {
    color: #fff;
    border-color: #0f5eff;
    background: #0f5eff;
}

body.post-type-archive-product .product-quote-section,
body.tax-product_cat .product-quote-section {
    padding: 0 0 0;
}

body.post-type-archive-product .cta-banner-inline,
body.tax-product_cat .cta-banner-inline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 34px;
    align-items: center;
    padding: 28px 36px;
    border-radius: 0;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(7, 18, 31, .97), rgba(7, 18, 31, .82)), url("../images/demo/hero-products.jpg");
    background-size: cover;
    background-position: center;
}

body.post-type-archive-product .cta-banner-inline h2,
body.tax-product_cat .cta-banner-inline h2 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.25;
}

body.post-type-archive-product .cta-banner-inline p,
body.tax-product_cat .cta-banner-inline p,
body.post-type-archive-product .cta-banner-inline li,
body.tax-product_cat .cta-banner-inline li {
    color: rgba(255,255,255,.9);
    font-size: 14px;
}

body.post-type-archive-product .cta-banner-inline ul,
body.tax-product_cat .cta-banner-inline ul {
    display: grid;
    gap: 7px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

body.post-type-archive-product .cta-banner-inline li::before,
body.tax-product_cat .cta-banner-inline li::before {
    content: "✓";
    margin-right: 8px;
}

body.post-type-archive-product .quote-form-mini,
body.tax-product_cat .quote-form-mini {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border-radius: 6px;
    background: #fff;
}

body.post-type-archive-product .quote-form-mini input,
body.tax-product_cat .quote-form-mini input {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid #dfe7f2;
    border-radius: 4px;
    color: #475569;
    font-size: 12px;
}

body.post-type-archive-product .quote-form-mini button,
body.tax-product_cat .quote-form-mini button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
    border-radius: 4px;
}

@media (max-width: 1100px) {
    body.post-type-archive-product .container,
    body.tax-product_cat .container {
        width: min(100% - 48px, 1120px);
    }

    body.post-type-archive-product .product-layout,
    body.tax-product_cat .product-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 30px;
    }

    body.post-type-archive-product .product-result-count,
    body.tax-product_cat .product-result-count {
        display: none;
    }
}

@media (max-width: 900px) {
    body.post-type-archive-product .product-layout,
    body.tax-product_cat .product-layout,
    body.post-type-archive-product .cta-banner-inline,
    body.tax-product_cat .cta-banner-inline {
        grid-template-columns: 1fr;
    }

    body.post-type-archive-product .product-grid.four-columns,
    body.tax-product_cat .product-grid.four-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.post-type-archive-product .product-archive-head,
    body.tax-product_cat .product-archive-head {
        grid-template-columns: 1fr;
    }
}

/* Professional home page upgrade. */
body.is-front-page {
    color: #111827;
    background: #fff;
}

body.is-front-page .container {
    width: min(100% - 96px, 1120px);
}

body.is-front-page .site-topbar {
    min-height: 34px;
    background: #06111d;
    font-size: 12px;
}

body.is-front-page .site-header-main {
    min-height: 72px;
    background: #07111f;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

body.is-front-page .site-header-main__inner {
    min-height: 72px;
}

body.is-front-page .main-navigation .menu {
    gap: 28px;
}

body.is-front-page .main-navigation .menu a {
    padding: 26px 0 22px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

body.is-front-page .header-actions .button {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 13px;
}

.home-hero {
    position: relative;
    min-height: 365px;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(3, 12, 24, .97) 0%, rgba(3, 12, 24, .76) 45%, rgba(3, 12, 24, .1) 100%), url("../images/demo/hero-products.jpg");
    background-size: cover;
    background-position: center;
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    padding: 44px 0 48px;
}

.home-hero__content {
    max-width: 590px;
}

.home-hero h1 {
    max-width: 560px;
    margin: 0 0 16px;
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-hero p {
    max-width: 640px;
    margin: 0 0 24px;
    color: rgba(255,255,255,.9);
    font-size: 15px;
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.home-hero__actions .button {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 13px;
}

.home-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 500px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.home-hero__metrics div {
    padding: 14px 18px 0 0;
    border-right: 1px solid rgba(255,255,255,.18);
}

.home-hero__metrics div:last-child {
    border-right: 0;
}

.home-hero__metrics strong {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1.1;
}

.home-hero__metrics span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    line-height: 1.35;
}

.home-section {
    padding: 44px 0;
    background: #fff;
}

.home-heading {
    margin-bottom: 26px;
}

.home-heading--center {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.home-heading h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-heading p {
    margin: 0;
    color: #536172;
    font-size: 14px;
    line-height: 1.6;
}

.home-text-link {
    color: #0f5eff;
    font-size: 14px;
    font-weight: 800;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.home-category-card {
    border: 1px solid #dfe7f2;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-category-card:hover {
    transform: translateY(-2px);
    border-color: #b8d2ff;
    box-shadow: 0 12px 28px rgba(15, 31, 67, .08);
}

.home-category-card a {
    display: grid;
    gap: 7px;
    padding: 12px 12px 14px;
    min-height: 182px;
    color: #111827;
}

.home-category-card img {
    width: 100%;
    height: 92px;
    object-fit: contain;
    background: #fff;
}

.home-category-card span {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.home-category-card small {
    color: #536172;
    font-size: 11.5px;
    line-height: 1.4;
}

.home-quality-band {
    padding: 34px 0;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(5, 18, 34, .98), rgba(5, 18, 34, .88)), url("../images/demo/hero-products.jpg");
    background-size: cover;
    background-position: center;
}

.home-quality-band__inner {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
}

.home-quality-band__lead span {
    color: #2f8dff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-quality-band__lead h2 {
    margin: 12px 0 14px;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-quality-band__lead ul,
.home-pricing__quote ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-quality-band__lead li,
.home-pricing__quote li {
    color: rgba(255,255,255,.9);
    font-size: 13px;
}

.home-quality-band__lead li::before,
.home-pricing__quote li::before {
    content: "✓";
    margin-right: 8px;
    color: #5ca3ff;
}

.home-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-promise-grid article {
    min-height: 136px;
    padding: 18px 16px;
    border-radius: 4px;
    background: #fff;
    color: #111827;
}

.home-promise-grid strong {
    color: #0f5eff;
    font-size: 13px;
    font-weight: 900;
}

.home-promise-grid h3 {
    margin: 12px 0 7px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.home-promise-grid p {
    margin: 0;
    color: #536172;
    font-size: 13px;
    line-height: 1.45;
}

.home-featured-products.product-grid.five-columns {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.home-featured-products .inox-product-card {
    grid-template-rows: 132px minmax(0, 1fr);
    border-radius: 4px;
    border-color: #dfe7f2;
    box-shadow: none;
}

.home-featured-products .inox-product-card__thumb-wrap {
    height: 132px;
    padding: 12px 12px 0;
    background: #fff;
}

.home-featured-products .inox-product-card__thumb {
    object-fit: contain;
}

.home-featured-products .inox-product-card__body {
    padding: 12px;
}

.home-featured-products .inox-product-card__title {
    min-height: 32px;
    font-size: 13px;
    line-height: 1.3;
}

.home-featured-products .inox-product-card__spec {
    min-height: 30px;
    font-size: 12px;
}

.home-featured-products .inox-product-card__price {
    font-size: 14px;
}

.home-featured-products .inox-product-card__actions {
    display: grid;
    grid-template-columns: 1fr;
}

.home-featured-products .icon-cart-btn {
    display: none;
}

.home-featured-products .inox-product-card__actions .button {
    min-height: 32px;
    border-radius: 4px;
    font-size: 12px;
}

.home-pricing {
    padding: 42px 0;
    color: #fff;
    background: #071625;
}

.home-pricing__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 28px;
    align-items: start;
}

.home-pricing .home-heading h2,
.home-pricing .home-heading p {
    color: #fff;
}

.home-pricing__table table {
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
    border-radius: 4px;
    background: #fff;
    color: #111827;
}

.home-pricing__table th {
    padding: 12px 14px;
    background: #0f5eff;
    color: #fff;
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
}

.home-pricing__table td {
    padding: 13px 14px;
    border-bottom: 1px solid #e7eef7;
    color: #374151;
    font-size: 13px;
}

.home-pricing__table tr:last-child td {
    border-bottom: 0;
}

.home-pricing__quote {
    padding: 22px 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 4px;
    background: rgba(255,255,255,.08);
}

.home-pricing__quote h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
}

.home-pricing__quote p {
    margin: 0 0 16px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.55;
}

.home-pricing__quote .button {
    width: 100%;
    margin-top: 20px;
    border-radius: 4px;
}

.home-quote {
    padding: 38px 0;
    background: #0b4fc6;
    background-image: linear-gradient(90deg, rgba(8, 72, 181, .96), rgba(15, 94, 255, .88)), url("../images/demo/hero-products.jpg");
    background-size: cover;
    background-position: center;
}

.home-quote__inner {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
}

.home-quote__intro h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.18;
}

.home-quote__intro p {
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 15px;
    line-height: 1.6;
}

.home-quote__form {
    padding: 18px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(4, 20, 46, .22);
}

.home-quote__form .form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-quote__form input,
.home-quote__form textarea {
    width: 100%;
    border: 1px solid #dfe7f2;
    border-radius: 4px;
    color: #475569;
    font-size: 13px;
}

.home-quote__form input {
    min-height: 42px;
    padding: 0 12px;
}

.home-quote__form textarea {
    margin-top: 12px;
    padding: 12px;
    resize: vertical;
}

.home-quote__form button {
    margin-top: 12px;
    border-radius: 4px;
}

.home-stats {
    padding: 24px 0;
    color: #fff;
    background: #071625;
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-stats article {
    padding: 12px 22px;
    border-right: 1px solid rgba(255,255,255,.14);
    text-align: center;
}

.home-stats article:last-child {
    border-right: 0;
}

.home-stats strong {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
}

.home-stats span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.75);
    font-size: 12px;
}

.home-news .post-grid.four-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 1100px) {
    body.is-front-page .container {
        width: min(100% - 48px, 1120px);
    }

    .home-category-grid,
    .home-featured-products.product-grid.five-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-promise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body.is-front-page .container {
        width: min(100% - 32px, 1120px);
    }

    .home-hero h1 {
        font-size: 34px;
    }

    .home-hero__metrics,
    .home-quality-band__inner,
    .home-pricing__inner,
    .home-quote__inner,
    .home-stats__grid,
    .home-heading--split {
        grid-template-columns: 1fr;
    }

    .home-category-grid,
    .home-featured-products.product-grid.five-columns,
    .home-news .post-grid.four-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-quote__form .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Light modern homepage redesign. */
body.is-front-page {
    --home-ink: #102033;
    --home-muted: #64748b;
    --home-line: #e3ebf6;
    --home-soft: #f5f9ff;
    --home-blue: #0f5eff;
    --home-cyan: #16a3d8;
    --home-green: #16a36a;
    background: #ffffff;
}

body.is-front-page .site-topbar {
    background: #f4f8ff;
    color: #31445c;
    border-bottom: 1px solid #e3ebf6;
}

body.is-front-page .site-header-main {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #e3ebf6;
    box-shadow: 0 10px 30px rgba(15, 31, 67, .06);
}

body.is-front-page .site-logo__title,
body.is-front-page .site-logo__tagline {
    color: #102033;
}

body.is-front-page .site-logo__title::before {
    background: #0f5eff;
    box-shadow: 0 0 0 6px #e8f1ff;
}

body.is-front-page .main-navigation .menu a {
    color: #102033;
}

body.is-front-page .main-navigation .menu a::after {
    bottom: 16px;
    background: #0f5eff;
}

body.is-front-page .header-action-icon {
    color: #102033;
    border-color: #d8e4f3;
    background: #fff;
}

body.is-front-page .header-action-icon__circle::before {
    border-color: #102033;
}

body.is-front-page .header-action-icon__circle::after {
    background: #102033;
}

body.is-front-page .header-actions .button {
    background: #0f5eff;
    box-shadow: 0 10px 24px rgba(15, 94, 255, .22);
}

body.is-front-page .floating-contact {
    display: none;
}

body.is-front-page .home-hero {
    min-height: 520px;
    color: #102033;
    background:
        radial-gradient(circle at 78% 35%, rgba(15, 94, 255, .18), transparent 28%),
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(246,250,255,.96) 45%, rgba(239,246,255,.84) 100%),
        url("../images/demo/hero-products.jpg");
    background-size: cover;
    background-position: center right;
    border-bottom: 1px solid #e3ebf6;
}

body.is-front-page .home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.92) 42%, rgba(255,255,255,.28) 100%);
}

body.is-front-page .home-hero__inner {
    position: relative;
    z-index: 1;
    padding: 76px 0 82px;
}

body.is-front-page .section-kicker {
    color: #0f5eff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
}

body.is-front-page .home-hero h1 {
    max-width: 650px;
    color: #102033;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.08;
}

body.is-front-page .home-hero p {
    max-width: 610px;
    color: #475569;
    font-size: 16px;
}

body.is-front-page .home-hero__actions .button--outline {
    color: #0f5eff;
    border-color: #b9d2ff;
    background: #fff;
}

body.is-front-page .home-hero__metrics {
    max-width: 620px;
    border-top: 1px solid #dce8f7;
}

body.is-front-page .home-hero__metrics div {
    border-right-color: #dce8f7;
}

body.is-front-page .home-hero__metrics strong {
    color: #102033;
}

body.is-front-page .home-hero__metrics span {
    color: #64748b;
}

body.is-front-page .home-section {
    background: #fff;
}

body.is-front-page .home-categories {
    background: linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
}

body.is-front-page .home-heading h2 {
    color: #102033;
    font-weight: 900;
}

body.is-front-page .home-heading p {
    color: #64748b;
}

body.is-front-page .home-category-grid {
    gap: 18px;
}

body.is-front-page .home-category-card {
    border: 1px solid #e3ebf6;
    border-radius: 12px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 16px 40px rgba(15, 31, 67, .06);
}

body.is-front-page .home-category-card:hover {
    border-color: #b8d2ff;
    box-shadow: 0 20px 46px rgba(15, 94, 255, .12);
}

body.is-front-page .home-category-card a {
    min-height: 205px;
    padding: 16px;
}

body.is-front-page .home-category-card img {
    height: 105px;
}

body.is-front-page .home-category-card span {
    color: #102033;
}

body.is-front-page .home-category-card small {
    color: #64748b;
}

body.is-front-page .home-quality-band {
    color: #102033;
    background:
        linear-gradient(135deg, #f3f8ff 0%, #ffffff 58%, #ecfdf7 100%);
    border-top: 1px solid #e3ebf6;
    border-bottom: 1px solid #e3ebf6;
}

body.is-front-page .home-quality-band__lead span {
    color: #0f5eff;
}

body.is-front-page .home-quality-band__lead h2 {
    color: #102033;
}

body.is-front-page .home-quality-band__lead li,
body.is-front-page .home-pricing__quote li {
    color: #475569;
}

body.is-front-page .home-quality-band__lead li::before,
body.is-front-page .home-pricing__quote li::before {
    color: #16a36a;
}

body.is-front-page .home-promise-grid article {
    border: 1px solid #e3ebf6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 31, 67, .06);
}

body.is-front-page .home-promise-grid strong {
    color: #0f5eff;
}

body.is-front-page .home-promise-grid h3 {
    color: #102033;
}

body.is-front-page .home-products {
    background: #fff;
}

body.is-front-page .home-featured-products .inox-product-card {
    border-color: #e3ebf6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 31, 67, .06);
}

body.is-front-page .home-featured-products .inox-product-card__actions .button {
    color: #0f5eff;
    border-color: #b9d2ff;
    background: #f8fbff;
}

body.is-front-page .home-featured-products .inox-product-card__actions .button:hover {
    color: #fff;
    background: #0f5eff;
}

body.is-front-page .home-pricing {
    color: #102033;
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
    border-top: 1px solid #e3ebf6;
    border-bottom: 1px solid #e3ebf6;
}

body.is-front-page .home-pricing .home-heading h2 {
    color: #102033;
}

body.is-front-page .home-pricing .home-heading p {
    color: #64748b;
}

body.is-front-page .home-pricing__table table {
    border: 1px solid #e3ebf6;
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(15, 31, 67, .06);
}

body.is-front-page .home-pricing__table th {
    background: #0f5eff;
}

body.is-front-page .home-pricing__quote {
    border: 1px solid #d8e6f7;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 31, 67, .08);
}

body.is-front-page .home-pricing__quote h3 {
    color: #102033;
}

body.is-front-page .home-pricing__quote p {
    color: #64748b;
}

body.is-front-page .home-quote {
    color: #102033;
    background:
        radial-gradient(circle at 16% 18%, rgba(15, 94, 255, .14), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #eef6ff 58%, #f0fdf8 100%);
    border-bottom: 1px solid #e3ebf6;
}

body.is-front-page .home-quote__intro h2 {
    color: #102033;
}

body.is-front-page .home-quote__intro p {
    color: #64748b;
}

body.is-front-page .home-quote__form {
    border: 1px solid #dfe8f6;
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(15, 31, 67, .1);
}

body.is-front-page .home-stats {
    color: #102033;
    background: #fff;
    border-bottom: 1px solid #e3ebf6;
}

body.is-front-page .home-stats article {
    border-right-color: #e3ebf6;
}

body.is-front-page .home-stats strong {
    color: #0f5eff;
}

body.is-front-page .home-stats span {
    color: #64748b;
}

body.is-front-page .home-news {
    background: #f7faff;
}

/* Homepage v2: clean bright B2B storefront. */
body.is-front-page {
    --v2-ink: #0b1726;
    --v2-muted: #5e6f84;
    --v2-blue: #0b63f6;
    --v2-blue-soft: #eaf3ff;
    --v2-line: #e6edf6;
    --v2-bg: #f7fbff;
    background: #ffffff;
    color: var(--v2-ink);
}

body.is-front-page .site-topbar {
    background: #ffffff;
    color: #52657a;
    border-bottom: 1px solid var(--v2-line);
}

body.is-front-page .site-header-main {
    background: #ffffff;
    border-bottom: 1px solid var(--v2-line);
    box-shadow: none;
}

body.is-front-page .site-header-main__inner {
    min-height: 74px;
}

body.is-front-page .site-logo__title {
    color: var(--v2-ink);
    font-weight: 900;
}

body.is-front-page .site-logo__tagline {
    color: #31445c;
}

body.is-front-page .site-logo__title::before {
    background: linear-gradient(135deg, #0b63f6, #13b7d8);
    box-shadow: 0 0 0 5px #eaf3ff;
}

body.is-front-page .main-navigation .menu a {
    color: var(--v2-ink);
    font-size: 13px;
    font-weight: 800;
}

body.is-front-page .main-navigation .menu a::after {
    bottom: 15px;
    height: 3px;
    border-radius: 99px;
}

body.is-front-page .header-actions .button {
    min-height: 42px;
    border-radius: 8px;
    background: var(--v2-blue);
    box-shadow: 0 10px 26px rgba(11, 99, 246, .2);
}

body.is-front-page .home-hero {
    min-height: auto;
    overflow: hidden;
    color: var(--v2-ink);
    background:
        radial-gradient(circle at 84% 34%, rgba(19,183,216,.16), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 48%, #edf7ff 100%);
    border-bottom: 1px solid var(--v2-line);
}

body.is-front-page .home-hero::before {
    display: none;
}

body.is-front-page .home-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 54px;
    align-items: center;
    padding: 66px 0 70px;
}

body.is-front-page .home-hero__content {
    max-width: 650px;
}

body.is-front-page .section-kicker {
    margin-bottom: 14px;
    color: var(--v2-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.is-front-page .home-hero h1 {
    max-width: 620px;
    margin: 0 0 18px;
    color: var(--v2-ink);
    font-size: 46px;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: none;
}

body.is-front-page .home-hero p {
    max-width: 590px;
    color: var(--v2-muted);
    font-size: 16px;
    line-height: 1.72;
}

body.is-front-page .home-hero__actions {
    gap: 12px;
    margin: 28px 0 30px;
}

body.is-front-page .home-hero__actions .button {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 14px;
}

body.is-front-page .home-hero__actions .button--outline {
    color: var(--v2-blue);
    border-color: #bfd5ff;
    background: #fff;
}

body.is-front-page .home-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 610px;
    border: 0;
}

body.is-front-page .home-hero__metrics div {
    padding: 14px 16px;
    border: 1px solid var(--v2-line);
    border-radius: 12px;
    background: rgba(255,255,255,.82);
}

body.is-front-page .home-hero__metrics strong {
    color: var(--v2-blue);
    font-size: 24px;
    font-weight: 900;
}

body.is-front-page .home-hero__metrics span {
    color: var(--v2-muted);
    font-size: 12px;
}

body.is-front-page .home-hero__visual {
    position: relative;
    min-height: 390px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(234,243,255,.9));
    box-shadow: none;
}

body.is-front-page .home-hero__visual::before {
    content: "";
    position: absolute;
    inset: auto 10% 0 auto;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(11, 99, 246, .12);
    filter: blur(12px);
}

.home-showcase {
    position: absolute;
    inset: 0;
}

.home-showcase__main {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 62px;
    height: 230px;
    display: grid;
    place-items: center;
    border: 1px solid #dce9fb;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(16, 32, 51, .12);
}

.home-showcase__main img {
    width: 86%;
    height: 86%;
    object-fit: contain;
}

.home-showcase__tile {
    position: absolute;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    width: 210px;
    padding: 12px;
    border: 1px solid #dce9fb;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 45px rgba(16, 32, 51, .1);
}

.home-showcase__tile img {
    width: 100%;
    height: 58px;
    object-fit: contain;
}

.home-showcase__tile span {
    color: var(--v2-ink);
    font-size: 14px;
    font-weight: 850;
}

.home-showcase__tile--box {
    left: 0;
    bottom: 38px;
}

.home-showcase__tile--sheet {
    right: 0;
    bottom: 56px;
}

.home-showcase__note {
    position: absolute;
    right: 8%;
    top: 20px;
    width: 180px;
    padding: 14px 16px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #0b63f6, #13a9d8);
    box-shadow: 0 18px 45px rgba(11,99,246,.22);
}

.home-showcase__note strong,
.home-showcase__note span {
    display: block;
}

.home-showcase__note strong {
    font-size: 18px;
}

.home-showcase__note span {
    margin-top: 3px;
    color: rgba(255,255,255,.9);
    font-size: 12px;
    line-height: 1.35;
}

body.is-front-page .home-service-strip {
    position: relative;
    z-index: 2;
    margin-top: -38px;
    padding-bottom: 30px;
}

body.is-front-page .home-service-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

body.is-front-page .home-service-strip article {
    padding: 18px 18px 17px;
    border: 1px solid var(--v2-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(16, 32, 51, .08);
}

body.is-front-page .home-service-strip span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 10px;
    color: var(--v2-blue);
    background: var(--v2-blue-soft);
    font-size: 12px;
    font-weight: 900;
}

body.is-front-page .home-service-strip strong,
body.is-front-page .home-service-strip small {
    display: block;
}

body.is-front-page .home-service-strip strong {
    color: var(--v2-ink);
    font-size: 15px;
    line-height: 1.28;
}

body.is-front-page .home-service-strip small {
    margin-top: 6px;
    color: var(--v2-muted);
    font-size: 12px;
    line-height: 1.45;
}

body.is-front-page .home-section {
    padding: 54px 0;
}

body.is-front-page .home-categories {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

body.is-front-page .home-heading {
    margin-bottom: 30px;
}

body.is-front-page .home-heading--center {
    max-width: 720px;
}

body.is-front-page .home-heading h2 {
    color: var(--v2-ink);
    font-size: 28px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: none;
}

body.is-front-page .home-heading p {
    color: var(--v2-muted);
}

body.is-front-page .home-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.is-front-page .home-category-card {
    border: 1px solid var(--v2-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
}

body.is-front-page .home-category-card:hover {
    transform: translateY(-3px);
    border-color: #bcd4ff;
    box-shadow: 0 20px 50px rgba(11, 99, 246, .11);
}

body.is-front-page .home-category-card a {
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    align-items: center;
    min-height: 138px;
    padding: 18px;
}

body.is-front-page .home-category-card img {
    grid-row: 1 / span 2;
    width: 118px;
    height: 92px;
    object-fit: contain;
}

body.is-front-page .home-category-card span {
    align-self: end;
    color: var(--v2-ink);
    font-size: 17px;
    font-weight: 850;
}

body.is-front-page .home-category-card small {
    align-self: start;
    color: var(--v2-muted);
    font-size: 13px;
}

body.is-front-page .home-quality-band {
    padding: 58px 0;
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #f1fff9 100%);
    border-top: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
}

body.is-front-page .home-quality-band__inner {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 42px;
}

body.is-front-page .home-quality-band__lead span {
    color: var(--v2-blue);
}

body.is-front-page .home-quality-band__lead h2 {
    color: var(--v2-ink);
    font-size: 30px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: none;
}

body.is-front-page .home-quality-band__lead li {
    color: var(--v2-muted);
    font-size: 14px;
}

body.is-front-page .home-promise-grid {
    gap: 18px;
}

body.is-front-page .home-promise-grid article {
    min-height: 168px;
    padding: 22px;
    border: 1px solid var(--v2-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(16, 32, 51, .06);
}

body.is-front-page .home-promise-grid strong {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--v2-blue);
    background: var(--v2-blue-soft);
}

body.is-front-page .home-promise-grid h3 {
    color: var(--v2-ink);
    font-size: 16px;
    font-weight: 850;
}

body.is-front-page .home-promise-grid p {
    color: var(--v2-muted);
}

body.is-front-page .home-products {
    background: #ffffff;
}

body.is-front-page .home-text-link {
    color: var(--v2-blue);
    font-weight: 850;
}

body.is-front-page .home-featured-products.product-grid.five-columns {
    gap: 18px;
}

body.is-front-page .home-featured-products .inox-product-card {
    border: 1px solid var(--v2-line);
    border-radius: 18px;
    box-shadow: none;
}

body.is-front-page .home-featured-products .inox-product-card:hover {
    border-color: #bfd5ff;
    box-shadow: 0 20px 48px rgba(11, 99, 246, .1);
}

body.is-front-page .home-featured-products .inox-product-card__thumb-wrap {
    border-radius: 18px 18px 0 0;
}

body.is-front-page .home-pricing {
    padding: 58px 0;
    background: var(--v2-bg);
    border-top: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
}

body.is-front-page .home-pricing__inner {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
}

body.is-front-page .home-pricing__table table,
body.is-front-page .home-pricing__quote,
body.is-front-page .home-quote__form {
    border: 1px solid var(--v2-line);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(16, 32, 51, .07);
}

body.is-front-page .home-pricing__table th {
    background: var(--v2-blue);
}

body.is-front-page .home-pricing__quote {
    background: #fff;
}

body.is-front-page .home-quote {
    padding: 58px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(11,99,246,.1), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #f2f8ff 60%, #effdf7 100%);
}

body.is-front-page .home-quote__inner {
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 42px;
}

body.is-front-page .home-quote__intro h2 {
    color: var(--v2-ink);
    font-size: 34px;
    font-weight: 850;
}

body.is-front-page .home-quote__intro p {
    color: var(--v2-muted);
}

body.is-front-page .home-stats {
    padding: 28px 0;
    background: #ffffff;
}

body.is-front-page .home-stats article {
    border-right-color: var(--v2-line);
}

body.is-front-page .home-stats strong {
    color: var(--v2-blue);
}

body.is-front-page .home-news {
    background: var(--v2-bg);
}

/* Pricing section redesign. */
body.is-front-page .home-pricing {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 10% 12%, rgba(11,99,246,.09), transparent 26%),
        radial-gradient(circle at 88% 32%, rgba(22,163,106,.1), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

body.is-front-page .home-pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#eaf1fb 1px, transparent 1px), linear-gradient(90deg, #eaf1fb 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: .28;
    pointer-events: none;
}

body.is-front-page .home-pricing__inner {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
}

body.is-front-page .home-pricing__table {
    min-width: 0;
}

body.is-front-page .home-pricing__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

body.is-front-page .home-pricing__header span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 12px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    color: #0b63f6;
    background: #eff6ff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

body.is-front-page .home-pricing__header h2 {
    margin: 0 0 10px;
    color: var(--v2-ink);
    font-size: 34px;
    font-weight: 850;
    line-height: 1.14;
}

body.is-front-page .home-pricing__header p {
    max-width: 720px;
    margin: 0;
    color: var(--v2-muted);
    font-size: 15px;
    line-height: 1.65;
}

body.is-front-page .home-pricing__header a {
    flex: 0 0 auto;
    color: #0b63f6;
    font-size: 14px;
    font-weight: 850;
}

body.is-front-page .home-price-list {
    display: grid;
    gap: 12px;
}

body.is-front-page .home-price-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px 150px;
    gap: 18px;
    align-items: center;
    min-height: 78px;
    padding: 16px 18px;
    border: 1px solid #e1eaf6;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 30px rgba(16,32,51,.045);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.is-front-page .home-price-list article:hover {
    transform: translateY(-2px);
    border-color: #b9d2ff;
    box-shadow: 0 20px 44px rgba(11,99,246,.1);
}

body.is-front-page .home-price-list strong,
body.is-front-page .home-price-list span,
body.is-front-page .home-price-list em,
body.is-front-page .home-price-list b {
    display: block;
}

body.is-front-page .home-price-list strong {
    color: var(--v2-ink);
    font-size: 16px;
    font-weight: 850;
}

body.is-front-page .home-price-list span {
    margin-top: 5px;
    color: var(--v2-muted);
    font-size: 13px;
}

body.is-front-page .home-price-list em {
    justify-self: start;
    min-width: 58px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #0b63f6;
    background: #eaf3ff;
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

body.is-front-page .home-price-list b {
    justify-self: end;
    color: #0b63f6;
    font-size: 17px;
    font-weight: 900;
    white-space: nowrap;
}

body.is-front-page .home-pricing__quote {
    position: sticky;
    top: 18px;
    align-self: start;
    padding: 28px;
    border: 1px solid #dce8f7;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
        radial-gradient(circle at 92% 10%, rgba(11,99,246,.18), transparent 30%);
    box-shadow: 0 24px 60px rgba(16,32,51,.1);
}

body.is-front-page .home-pricing__quote-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #0f5eff;
    background: #ecfdf5;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

body.is-front-page .home-pricing__quote h3 {
    margin: 0 0 12px;
    color: var(--v2-ink);
    font-size: 24px;
    font-weight: 850;
    line-height: 1.22;
}

body.is-front-page .home-pricing__quote p {
    margin-bottom: 20px;
    color: var(--v2-muted);
    line-height: 1.65;
}

body.is-front-page .home-pricing__quote ul {
    gap: 11px;
}

body.is-front-page .home-pricing__quote li {
    color: #34445a;
    font-size: 14px;
}

body.is-front-page .home-pricing__quote .button {
    min-height: 48px;
    margin-top: 24px;
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(11,99,246,.2);
}

@media (max-width: 1000px) {
    body.is-front-page .home-pricing__inner {
        grid-template-columns: 1fr;
    }

    body.is-front-page .home-pricing__quote {
        position: static;
    }
}

@media (max-width: 680px) {
    body.is-front-page .home-pricing__header {
        display: block;
    }

    body.is-front-page .home-pricing__header h2 {
        font-size: 28px;
    }

    body.is-front-page .home-pricing__header a {
        display: inline-block;
        margin-top: 14px;
    }

    body.is-front-page .home-price-list article {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.is-front-page .home-price-list b {
        justify-self: start;
    }
}

/* Pricing section balance pass. */
body.is-front-page .home-pricing {
    padding: 64px 0;
    background:
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

body.is-front-page .home-pricing::before {
    opacity: .16;
}

body.is-front-page .home-pricing__inner {
    grid-template-columns: minmax(0, 740px) 360px;
    gap: 28px;
    align-items: stretch;
}

body.is-front-page .home-pricing__table {
    padding: 28px;
    border: 1px solid #dce8f7;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 22px 60px rgba(16,32,51,.075);
}

body.is-front-page .home-pricing__header {
    align-items: start;
    margin-bottom: 20px;
}

body.is-front-page .home-pricing__header span {
    min-height: 28px;
    margin-bottom: 10px;
    padding: 0 11px;
    font-size: 11px;
}

body.is-front-page .home-pricing__header h2 {
    margin-bottom: 8px;
    font-size: 30px;
}

body.is-front-page .home-pricing__header p {
    max-width: 600px;
    font-size: 14px;
    line-height: 1.55;
}

body.is-front-page .home-pricing__header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #bfd5ff;
    border-radius: 999px;
    background: #f7fbff;
    font-size: 13px;
    white-space: nowrap;
}

body.is-front-page .home-price-list {
    gap: 10px;
}

body.is-front-page .home-price-list article {
    grid-template-columns: minmax(0, 1fr) 74px 138px;
    min-height: 62px;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: none;
}

body.is-front-page .home-price-list strong {
    font-size: 15px;
}

body.is-front-page .home-price-list span {
    margin-top: 3px;
    font-size: 12px;
}

body.is-front-page .home-price-list em {
    min-width: 54px;
    padding: 6px 10px;
    font-size: 12px;
}

body.is-front-page .home-price-list b {
    font-size: 15px;
}

body.is-front-page .home-pricing__quote {
    position: static;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    border-radius: 24px;
}

body.is-front-page .home-pricing__quote-badge {
    align-self: flex-start;
    min-height: 28px;
    margin-bottom: 18px;
}

body.is-front-page .home-pricing__quote h3 {
    max-width: 260px;
    font-size: 23px;
}

body.is-front-page .home-pricing__quote p {
    margin-bottom: 18px;
}

body.is-front-page .home-pricing__quote ul {
    margin-top: 2px;
}

body.is-front-page .home-pricing__quote .button {
    margin-top: auto;
}

@media (max-width: 1000px) {
    body.is-front-page .home-pricing__inner {
        grid-template-columns: 1fr;
    }
}

/* Pricing section final compact table style. */
body.is-front-page .home-pricing {
    padding: 68px 0;
    background: #ffffff;
}

body.is-front-page .home-pricing::before {
    display: none;
}

body.is-front-page .home-pricing__inner {
    display: grid;
    grid-template-columns: minmax(0, 760px) 340px;
    gap: 36px;
    align-items: start;
}

body.is-front-page .home-pricing__table {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.is-front-page .home-pricing__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 22px;
}

body.is-front-page .home-pricing__header span {
    min-height: auto;
    padding: 0;
    margin: 0 0 9px;
    border: 0;
    border-radius: 0;
    color: #0b63f6;
    background: transparent;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.is-front-page .home-pricing__header h2 {
    margin: 0 0 8px;
    color: #0b1726;
    font-size: 32px;
    font-weight: 850;
    line-height: 1.15;
}

body.is-front-page .home-pricing__header p {
    max-width: 620px;
    color: #5e6f84;
    font-size: 14px;
    line-height: 1.6;
}

body.is-front-page .home-pricing__header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid #d6e4f5;
    border-radius: 10px;
    color: #0b63f6;
    background: #fff;
    box-shadow: 0 8px 22px rgba(16,32,51,.05);
    font-size: 13px;
    font-weight: 850;
}

body.is-front-page .home-price-list {
    display: block;
    overflow: hidden;
    border: 1px solid #dce8f7;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(16,32,51,.07);
}

body.is-front-page .home-price-list__head,
body.is-front-page .home-price-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px 160px;
    gap: 18px;
    align-items: center;
}

body.is-front-page .home-price-list__head {
    min-height: 48px;
    padding: 0 20px;
    color: #ffffff;
    background: linear-gradient(90deg, #0b63f6, #1287f2);
}

body.is-front-page .home-price-list__head span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

body.is-front-page .home-price-list article {
    min-height: 66px;
    padding: 13px 20px;
    border: 0;
    border-bottom: 1px solid #e8eef6;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    transition: background .16s ease;
}

body.is-front-page .home-price-list article:last-child {
    border-bottom: 0;
}

body.is-front-page .home-price-list article:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
    background: #f8fbff;
}

body.is-front-page .home-price-list strong {
    color: #0b1726;
    font-size: 15px;
    font-weight: 800;
}

body.is-front-page .home-price-list span {
    margin-top: 3px;
    color: #63748a;
    font-size: 12px;
}

body.is-front-page .home-price-list em {
    justify-self: start;
    min-width: auto;
    padding: 4px 10px;
    border-radius: 8px;
    color: #0b63f6;
    background: #eef5ff;
    font-size: 12px;
    font-weight: 900;
}

body.is-front-page .home-price-list b {
    justify-self: end;
    color: #0b63f6;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

body.is-front-page .home-pricing__quote {
    position: relative;
    display: block;
    min-height: auto;
    padding: 28px;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.22), transparent 30%),
        linear-gradient(150deg, #082047 0%, #0b63f6 100%);
    box-shadow: 0 22px 55px rgba(11, 99, 246, .22);
}

body.is-front-page .home-pricing__quote-badge {
    min-height: 28px;
    margin-bottom: 18px;
    color: #d8fff1;
    background: rgba(255,255,255,.14);
}

body.is-front-page .home-pricing__quote h3 {
    max-width: 270px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 850;
    line-height: 1.22;
}

body.is-front-page .home-pricing__quote p {
    max-width: 285px;
    margin: 0 0 20px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
}

body.is-front-page .home-pricing__quote li {
    color: rgba(255,255,255,.9);
    font-size: 13px;
}

body.is-front-page .home-pricing__quote li::before {
    color: #7ff0bd;
}

body.is-front-page .home-pricing__quote .button {
    width: 100%;
    min-height: 46px;
    margin-top: 24px;
    border-radius: 10px;
    color: #0b63f6;
    background: #ffffff;
    box-shadow: none;
}

@media (max-width: 1000px) {
    body.is-front-page .home-pricing__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    body.is-front-page .home-pricing__header {
        grid-template-columns: 1fr;
    }

    body.is-front-page .home-price-list__head {
        display: none;
    }

    body.is-front-page .home-price-list article {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
    }

    body.is-front-page .home-price-list b,
    body.is-front-page .home-price-list em {
        justify-self: start;
    }
}

@media (max-width: 1100px) {
    body.is-front-page .home-hero__inner,
    body.is-front-page .home-quality-band__inner,
    body.is-front-page .home-pricing__inner,
    body.is-front-page .home-quote__inner {
        grid-template-columns: 1fr;
    }

    body.is-front-page .home-hero__visual {
        min-height: 280px;
    }

    body.is-front-page .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.is-front-page .home-service-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.is-front-page .home-hero h1 {
        font-size: 34px;
    }

    body.is-front-page .home-category-grid,
    body.is-front-page .home-promise-grid,
    body.is-front-page .home-hero__metrics,
    body.is-front-page .home-service-strip__grid {
        grid-template-columns: 1fr;
    }

    body.is-front-page .home-showcase__tile,
    body.is-front-page .home-showcase__note {
        position: static;
        width: auto;
        margin-top: 12px;
    }

    body.is-front-page .home-hero__visual {
        min-height: 520px;
    }
}

/* 2026 catalog/service homepage upgrade */
body.is-front-page {
    background: #f7fafc;
}

body.is-front-page .home-hero--bright {
    background:
        radial-gradient(circle at 78% 18%, rgba(24, 118, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #eef5f9 50%, #ffffff 100%);
    color: #0b1728;
    padding: 86px 0 72px;
    border-bottom: 1px solid #dde8f2;
}

body.is-front-page .home-hero--bright .home-hero__inner {
    align-items: center;
    gap: 56px;
}

body.is-front-page .home-hero--bright h1 {
    color: #091426;
    max-width: 780px;
    letter-spacing: 0;
}

body.is-front-page .home-hero--bright p {
    color: #40536b;
    max-width: 690px;
}

body.is-front-page .home-hero--bright .home-hero__metrics div {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid #dbe7f3;
    box-shadow: 0 18px 44px rgba(17, 35, 58, 0.08);
}

body.is-front-page .home-showcase--bright {
    background: #ffffff;
    border: 1px solid #dce8f4;
    box-shadow: 0 24px 70px rgba(20, 45, 80, 0.14);
}

body.is-front-page .home-scope-strip {
    margin-top: -34px;
    position: relative;
    z-index: 4;
}

body.is-front-page .home-scope-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 22px 60px rgba(13, 34, 60, 0.12);
}

body.is-front-page .home-scope-strip article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px 14px;
    align-items: start;
    padding: 18px;
    border-radius: 16px;
    background: #f7fafc;
}

body.is-front-page .home-scope-strip span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #eaf3ff;
    color: #0b63f6;
    font-weight: 800;
}

body.is-front-page .home-scope-strip strong {
    color: #0b1728;
    font-size: 16px;
}

body.is-front-page .home-scope-strip small {
    color: #607086;
    line-height: 1.55;
}

body.is-front-page .home-section {
    padding: 76px 0;
}

body.is-front-page .home-catalog {
    background: #f7fafc;
}

body.is-front-page .home-catalog__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.75fr);
    gap: 24px;
    margin-top: 30px;
    align-items: stretch;
}

body.is-front-page .home-catalog__panel {
    background: #ffffff;
    border: 1px solid #dce7f2;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 56px rgba(18, 38, 63, 0.08);
}

body.is-front-page .home-catalog__panel h3 {
    margin: 0 0 18px;
    font-size: 22px;
    color: #0b1728;
}

body.is-front-page .home-category-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.is-front-page .home-category-grid--compact .home-category-card a {
    min-height: 236px;
    border-radius: 18px;
    border-color: #dbe7f3;
    background: #fbfdff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.is-front-page .home-category-grid--compact .home-category-card a:hover {
    transform: translateY(-3px);
    border-color: #8ab7ff;
    box-shadow: 0 16px 42px rgba(15, 75, 150, 0.12);
}

body.is-front-page .home-category-grid--compact img {
    height: 124px;
    object-fit: contain;
}

body.is-front-page .home-catalog__panel--accent {
    background:
        linear-gradient(180deg, rgba(7, 23, 43, 0.94), rgba(10, 37, 66, 0.94)),
        url("../images/demo/product-sheet.jpg") center/cover;
    color: #ffffff;
}

body.is-front-page .home-catalog__panel--accent h3 {
    color: #ffffff;
}

body.is-front-page .home-solution-list {
    display: grid;
    gap: 14px;
}

body.is-front-page .home-solution-list a {
    display: block;
    padding: 18px;
    border-radius: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

body.is-front-page .home-solution-list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
}

body.is-front-page .home-solution-list span {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

body.is-front-page .home-services {
    background: #ffffff;
}

body.is-front-page .home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

body.is-front-page .home-service-card a,
.service-card a {
    display: block;
    height: 100%;
    padding: 26px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dce7f2;
    color: #0b1728;
    box-shadow: 0 16px 46px rgba(19, 44, 72, 0.08);
}

body.is-front-page .home-service-card span,
.service-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #e9f9f0;
    color: #087443;
    font-weight: 800;
    font-size: 13px;
}

body.is-front-page .home-service-card h3,
.service-card h2 {
    margin: 18px 0 10px;
    color: #0b1728;
    font-size: 22px;
    line-height: 1.25;
}

body.is-front-page .home-service-card p,
.service-card p {
    margin: 0;
    color: #5c6b80;
    line-height: 1.65;
}

body.is-front-page .home-industries {
    padding: 66px 0;
    background:
        linear-gradient(135deg, rgba(7, 22, 38, 0.94), rgba(8, 44, 84, 0.9)),
        url("../images/demo/product-coil.jpg") center/cover;
    color: #ffffff;
}

body.is-front-page .home-industries__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 34px;
    align-items: center;
}

body.is-front-page .home-industries h2 {
    margin: 12px 0 0;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.18;
}

body.is-front-page .home-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

body.is-front-page .home-industry-grid span {
    padding: 15px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

body.is-front-page .home-featured-products.product-grid.four-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.is-front-page .home-pricing {
    background: #f2f7fb;
}

.service-archive-wrap,
.single-service-wrap {
    padding: 70px 0;
    background: #f7fafc;
}

.service-archive-head {
    max-width: 860px;
    margin-bottom: 28px;
}

.service-archive-head h1,
.single-service__main h1 {
    margin: 12px 0;
    font-size: 42px;
    line-height: 1.18;
    color: #0b1728;
}

.service-archive-head p,
.single-service__lead {
    color: #52657c;
    font-size: 17px;
    line-height: 1.7;
}

.service-term-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.service-term-tabs a {
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dce7f2;
    color: #0b63f6;
    font-weight: 700;
}

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

.service-card strong {
    display: inline-block;
    margin-top: 18px;
    color: #0b63f6;
}

.service-cta,
.single-service__side {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border-radius: 24px;
    background: #082342;
    color: #ffffff;
}

.service-cta h2,
.single-service__side h2 {
    margin: 0 0 8px;
    color: #ffffff;
}

.service-cta p,
.single-service__side li {
    color: rgba(255, 255, 255, 0.78);
}

.single-service__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.single-service__main,
.single-service__side {
    background: #ffffff;
    border: 1px solid #dce7f2;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 52px rgba(16, 38, 66, 0.08);
}

.single-service__side {
    display: block;
    margin-top: 0;
    background: #082342;
}

.single-service__side ul {
    padding-left: 18px;
    margin: 18px 0 24px;
}

@media (max-width: 1100px) {
    body.is-front-page .home-scope-strip__grid,
    body.is-front-page .home-category-grid--compact,
    body.is-front-page .home-service-grid,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.is-front-page .home-catalog__layout,
    body.is-front-page .home-industries__inner,
    .single-service__grid {
        grid-template-columns: 1fr;
    }

    body.is-front-page .home-featured-products.product-grid.four-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.is-front-page .home-hero--bright {
        padding: 56px 0 52px;
    }

    body.is-front-page .home-scope-strip__grid,
    body.is-front-page .home-category-grid--compact,
    body.is-front-page .home-service-grid,
    body.is-front-page .home-industry-grid,
    body.is-front-page .home-featured-products.product-grid.four-columns,
    .service-grid {
        grid-template-columns: 1fr;
    }

    body.is-front-page .home-scope-strip {
        margin-top: 0;
    }

    body.is-front-page .home-section {
        padding: 54px 0;
    }

    body.is-front-page .home-industries h2,
    .service-archive-head h1,
    .single-service__main h1 {
        font-size: 30px;
    }

    .service-cta {
        display: block;
    }

    .service-cta .button {
        margin-top: 18px;
    }
}

body.is-front-page .home-hero--bright {
    padding: 0;
}

body.is-front-page .home-hero--bright .home-hero__inner {
    padding: 72px 0 88px;
}

body.is-front-page .home-category-grid--compact .home-category-card a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 260px;
    padding: 18px;
}

body.is-front-page .home-category-grid--compact .home-category-card img {
    width: 100%;
    height: 130px;
    grid-row: auto;
    object-fit: contain;
}

body.is-front-page .home-category-grid--compact .home-category-card span {
    align-self: auto;
    font-size: 18px;
    line-height: 1.2;
}

body.is-front-page .home-category-grid--compact .home-category-card small {
    align-self: auto;
    font-size: 14px;
    line-height: 1.55;
}

/* Modern product archive/category experience */
body.post-type-archive-product,
body.tax-product_cat {
    --archive-bg: #f4f7fb;
    --archive-panel: #ffffff;
    --archive-dark: #0f172a;
    --archive-muted: #64748b;
    --archive-line: #dbe5ef;
    --archive-primary: #0f5eff;
    --archive-accent: #2f80ff;
    color: var(--archive-dark);
    background:
        radial-gradient(circle at 8% 0%, rgba(204, 251, 241, .5), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, var(--archive-bg) 42%, #eef4f8 100%);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.post-type-archive-product .container,
body.tax-product_cat .container {
    width: min(100% - 72px, 1240px);
}

body.post-type-archive-product .product-archive-wrap,
body.tax-product_cat .product-archive-wrap {
    padding: 34px 0 38px;
}

body.post-type-archive-product .product-layout,
body.tax-product_cat .product-layout {
    grid-template-columns: 278px minmax(0, 1fr);
    gap: 26px;
}

body.post-type-archive-product .product-filter-sidebar,
body.tax-product_cat .product-filter-sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 14px;
}

body.post-type-archive-product .filter-box,
body.tax-product_cat .filter-box {
    padding: 18px;
    border: 1px solid transparent;
    border-radius: 20px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(15, 94, 255, .3), rgba(219, 234, 254, .9), rgba(47, 128, 255, .18)) border-box;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .07);
}

body.post-type-archive-product .filter-box + .filter-box,
body.tax-product_cat .filter-box + .filter-box {
    border-top: 1px solid transparent;
}

body.post-type-archive-product .filter-box:first-child,
body.post-type-archive-product .filter-box:last-child,
body.tax-product_cat .filter-box:first-child,
body.tax-product_cat .filter-box:last-child {
    border-radius: 20px;
}

body.post-type-archive-product .filter-box h3,
body.tax-product_cat .filter-box h3 {
    color: var(--archive-dark);
    font-size: 13px;
    letter-spacing: .08em;
}

body.post-type-archive-product .filter-menu a,
body.tax-product_cat .filter-menu a {
    border: 1px solid var(--archive-line);
    border-radius: 14px;
    color: #334155;
    background: #fff;
}

body.post-type-archive-product .filter-menu .current-cat > a,
body.post-type-archive-product .filter-menu a:hover,
body.tax-product_cat .filter-menu .current-cat > a,
body.tax-product_cat .filter-menu a:hover {
    color: var(--archive-primary);
    border-color: #99f6e4;
    background: #ecfdf5;
}

body.post-type-archive-product .filter-group,
body.tax-product_cat .filter-group {
    border-top: 1px solid #eef2f7;
}

body.post-type-archive-product .filter-group h4,
body.tax-product_cat .filter-group h4 {
    color: var(--archive-dark);
    letter-spacing: .06em;
}

body.post-type-archive-product .filter-group input[type="checkbox"],
body.tax-product_cat .filter-group input[type="checkbox"] {
    accent-color: var(--archive-primary);
}

body.post-type-archive-product .filter-range-group input,
body.tax-product_cat .filter-range-group input,
body.post-type-archive-product .product-sort-form select,
body.tax-product_cat .product-sort-form select {
    border: 1px solid var(--archive-line);
    border-radius: 14px;
    background-color: #fff;
}

body.post-type-archive-product .filter-box .button,
body.tax-product_cat .filter-box .button {
    border-radius: 14px;
}

body.post-type-archive-product .filter-reset-btn,
body.tax-product_cat .filter-reset-btn {
    color: var(--archive-primary);
    border-color: #99f6e4;
}

body.post-type-archive-product .product-main-area,
body.tax-product_cat .product-main-area {
    min-width: 0;
}

body.post-type-archive-product .product-archive-head,
body.tax-product_cat .product-archive-head {
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid rgba(219, 229, 239, .9);
    border-radius: 24px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .06);
    backdrop-filter: blur(12px);
}

body.post-type-archive-product .archive-title,
body.tax-product_cat .archive-title {
    color: var(--archive-dark);
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -.04em;
    text-transform: none;
}

body.post-type-archive-product .product-archive-head p,
body.tax-product_cat .product-archive-head p {
    color: var(--archive-muted);
    font-size: 15px;
}

body.post-type-archive-product .product-result-count,
body.tax-product_cat .product-result-count {
    color: var(--archive-muted);
}

body.post-type-archive-product .product-grid.four-columns,
body.tax-product_cat .product-grid.four-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.post-type-archive-product .inox-product-card,
body.tax-product_cat .inox-product-card {
    grid-template-rows: 240px minmax(0, 1fr);
    border: 1px solid transparent;
    border-radius: 20px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(15, 94, 255, .3), rgba(219, 234, 254, .86), rgba(47, 128, 255, .2)) border-box;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .075);
    transition: transform .22s ease, box-shadow .22s ease;
}

body.post-type-archive-product .inox-product-card:hover,
body.tax-product_cat .inox-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(15, 23, 42, .12);
}

body.post-type-archive-product .inox-product-card__thumb-wrap,
body.tax-product_cat .inox-product-card__thumb-wrap {
    height: 240px;
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(204, 251, 241, .45), transparent 42%),
        linear-gradient(180deg, #f8fafc, #eef4f8);
}

body.post-type-archive-product .inox-product-card__thumb,
body.tax-product_cat .inox-product-card__thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #f8fafc;
    transform: scale(1.08);
    transform-origin: center;
    transition: transform .22s ease;
}

body.post-type-archive-product .inox-product-card:hover .inox-product-card__thumb,
body.tax-product_cat .inox-product-card:hover .inox-product-card__thumb {
    transform: scale(1.12);
}

body.post-type-archive-product .inox-product-card__body,
body.tax-product_cat .inox-product-card__body {
    padding: 16px;
}

body.post-type-archive-product .inox-product-card__title,
body.tax-product_cat .inox-product-card__title {
    font-size: 16px;
    letter-spacing: -.02em;
}

body.post-type-archive-product .inox-product-card__spec,
body.tax-product_cat .inox-product-card__spec {
    color: var(--archive-muted);
    font-size: 13px;
}

body.post-type-archive-product .inox-product-card__meta,
body.tax-product_cat .inox-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 28px;
    margin: 0 0 10px;
}

body.post-type-archive-product .inox-product-card__meta span,
body.tax-product_cat .inox-product-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border: 1px solid rgba(15, 94, 255, .14);
    border-radius: 999px;
    color: #115e59;
    background: #ecfdf5;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
}

body.post-type-archive-product .inox-product-card__price,
body.tax-product_cat .inox-product-card__price {
    color: #0f5eff;
    font-size: 16px;
}

body.post-type-archive-product .inox-product-card__actions .button,
body.tax-product_cat .inox-product-card__actions .button,
body.post-type-archive-product .icon-cart-btn,
body.tax-product_cat .icon-cart-btn {
    border-color: #99f6e4;
    border-radius: 13px;
    color: var(--archive-primary);
    background: #f0fdfa;
}

body.post-type-archive-product .inox-product-card__actions,
body.tax-product_cat .inox-product-card__actions {
    grid-template-columns: minmax(0, 1fr);
}

body.post-type-archive-product .inox-product-card__actions .button,
body.tax-product_cat .inox-product-card__actions .button {
    min-height: 40px;
    font-size: 13px;
}

body.post-type-archive-product .icon-cart-btn,
body.tax-product_cat .icon-cart-btn {
    display: none;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.product-load-more {
    min-width: 220px;
    min-height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--archive-primary), #14b8a6);
    box-shadow: 0 16px 34px rgba(15, 94, 255, .24);
}

.product-load-more.is-complete {
    color: #0f5eff;
    background: #eaf2ff;
    box-shadow: none;
}

.product-category-seo {
    position: relative;
    margin-top: 28px;
    padding: 24px;
    border: 1px solid transparent;
    border-radius: 26px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(15, 94, 255, .32), rgba(219, 234, 254, .9), rgba(47, 128, 255, .2)) border-box;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .075);
    overflow: hidden;
}

.category-content-inner {
    display: block;
}

.seo-panel,
.faq-panel {
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.product-category-seo.is-collapsed .category-content-inner {
    max-height: 360px;
    overflow: hidden;
}

.product-category-seo.is-collapsed::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 72%);
}

.archive-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--archive-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.seo-panel h2,
.product-category-faq h2 {
    margin: 0 0 14px;
    color: var(--archive-dark);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.seo-panel p,
.faq-panel p {
    color: var(--archive-muted);
    line-height: 1.75;
}

.seo-copy-sections {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.seo-copy-block h3 {
    margin: 0 0 6px;
    color: var(--archive-dark);
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.seo-copy-block p {
    margin: 0;
}

.seo-checklist {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.seo-checklist li {
    display: flex;
    gap: 10px;
    color: #334155;
}

.seo-checklist li::before {
    content: "✓";
    flex: 0 0 auto;
    color: var(--archive-primary);
    font-weight: 900;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--archive-line);
    border-radius: 16px;
    background: #f8fafc;
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 15px 18px;
    color: var(--archive-dark);
    font-weight: 850;
}

.faq-list details p {
    margin: 0;
    padding: 0 18px 16px;
}

.category-read-more {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 18px;
    padding: 0 20px;
    border: 1px solid #99f6e4;
    border-radius: 999px;
    color: #0f5eff;
    background: #ecfdf5;
    font-weight: 850;
    cursor: pointer;
}

.category-read-more:hover {
    color: #fff;
    background: #0f5eff;
}

.product-category-faq {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid transparent;
    border-radius: 26px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(15, 94, 255, .28), rgba(219, 234, 254, .9), rgba(47, 128, 255, .18)) border-box;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .065);
}

.product-category-faq h2 {
    font-size: clamp(22px, 2.4vw, 30px);
}

@media (max-width: 1100px) {
    body.post-type-archive-product .container,
    body.tax-product_cat .container {
        width: min(100% - 36px, 1120px);
    }

    body.post-type-archive-product .product-layout,
    body.tax-product_cat .product-layout {
        grid-template-columns: 1fr;
    }

    body.post-type-archive-product .product-filter-sidebar,
    body.tax-product_cat .product-filter-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    body.post-type-archive-product .product-grid.four-columns,
    body.tax-product_cat .product-grid.four-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    body.post-type-archive-product .container,
    body.tax-product_cat .container {
        width: min(100% - 24px, 1120px);
    }

    body.post-type-archive-product .product-grid.four-columns,
    body.tax-product_cat .product-grid.four-columns {
        grid-template-columns: 1fr;
    }

    body.post-type-archive-product .product-archive-head,
    body.tax-product_cat .product-archive-head,
    .product-category-seo,
    .product-category-faq {
        padding: 20px;
        border-radius: 20px;
    }
}

/* Final header override. */
.site-topbar {
    display: none !important;
}

.site-header {
    background: rgba(255, 255, 255, .94) !important;
    border-bottom: 1px solid rgba(209, 226, 238, .95) !important;
    box-shadow: 0 14px 34px rgba(12, 25, 42, .07);
    backdrop-filter: blur(18px);
}

.site-header .container,
body.post-type-archive-product .site-header .container,
body.tax-product_cat .site-header .container,
body.is-front-page .site-header .container {
    width: min(100% - 32px, var(--container-width)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.site-header-main,
body.post-type-archive-product .site-header-main,
body.tax-product_cat .site-header-main,
body.is-front-page .site-header-main {
    min-height: 76px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,255,.96)) !important;
    border-bottom: 1px solid rgba(211, 226, 238, .95) !important;
    box-shadow: none !important;
}

.site-header-main__inner,
body.post-type-archive-product .site-header-main__inner,
body.tax-product_cat .site-header-main__inner,
body.is-front-page .site-header-main__inner {
    height: 76px !important;
    min-height: 76px !important;
    gap: 22px;
}

.site-logo--bitmap,
body.post-type-archive-product .site-logo--bitmap,
body.tax-product_cat .site-logo--bitmap {
    min-width: 276px !important;
    flex: 0 0 276px;
}

.site-logo--bitmap .site-logo__image,
body.post-type-archive-product .site-logo--bitmap .site-logo__image,
body.tax-product_cat .site-logo--bitmap .site-logo__image {
    width: 276px !important;
    max-width: min(276px, 52vw);
    max-height: 72px !important;
}

.main-navigation .menu,
body.post-type-archive-product .main-navigation .menu,
body.tax-product_cat .main-navigation .menu {
    gap: clamp(18px, 1.45vw, 26px) !important;
    flex-wrap: nowrap !important;
}

.main-navigation,
body.post-type-archive-product .main-navigation,
body.tax-product_cat .main-navigation,
body.is-front-page .main-navigation {
    flex: 1 1 auto;
    min-width: 0;
}

.main-navigation .menu a,
body.post-type-archive-product .main-navigation .menu a,
body.tax-product_cat .main-navigation .menu a,
body.is-front-page .main-navigation .menu a {
    padding: 26px 0 22px !important;
    color: #132238 !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: capitalize !important;
    white-space: nowrap !important;
}

.main-navigation .menu a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
body.post-type-archive-product .main-navigation .menu a:hover,
body.post-type-archive-product .main-navigation .current-menu-item > a,
body.post-type-archive-product .main-navigation .current-menu-ancestor > a,
body.tax-product_cat .main-navigation .menu a:hover,
body.tax-product_cat .main-navigation .current-menu-item > a,
body.tax-product_cat .main-navigation .current-menu-ancestor > a {
    color: #0f5eff !important;
}

.main-navigation .menu a::after,
body.is-front-page .main-navigation .menu a::after {
    bottom: 14px !important;
    height: 3px !important;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f5eff, #12b8c8 52%, #2f80ff) !important;
}

.header-actions .button,
body.post-type-archive-product .header-actions .button,
body.tax-product_cat .header-actions .button,
body.is-front-page .header-actions .button {
    min-height: 46px !important;
    padding-inline: 22px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #0f5eff, #2f80ff) !important;
    box-shadow: 0 14px 26px rgba(14, 116, 144, .18) !important;
    white-space: nowrap !important;
    min-width: 146px;
}

.header-action-icon {
    color: #132238 !important;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: clamp(190px, 13vw, 230px);
    height: 46px;
    flex: 0 0 auto;
}

.header-actions {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 14px !important;
}

.header-search input[type="search"] {
    width: 100%;
    height: 46px;
    padding: 0 48px 0 16px;
    border: 1px solid rgba(15, 94, 255, .24);
    border-radius: 999px;
    outline: 0;
    color: #132238;
    background: rgba(255, 255, 255, .9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 24px rgba(15, 23, 42, .05);
    font-size: 14px;
    font-weight: 650;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-search input[type="search"]::placeholder {
    color: #6b7c8f;
    font-weight: 600;
}

.header-search input[type="search"]:focus {
    border-color: rgba(15, 94, 255, .62);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 94, 255, .12), 0 12px 26px rgba(15, 23, 42, .07);
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg, #0f5eff, #2f80ff);
    box-shadow: 0 8px 16px rgba(14, 116, 144, .18);
}

.header-search button::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.header-search button::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 22px;
    width: 8px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: left center;
}

@media (max-width: 1180px) {
    .header-search {
        width: 48px;
    }

    .header-search input[type="search"] {
        padding: 0;
        color: transparent;
    }

    .header-search input[type="search"]::placeholder {
        color: transparent;
    }
}

/* Product detail v2: quotation-focused B2B product page. */
.product-detail-v2 {
    padding-top: 32px;
    background:
        radial-gradient(circle at 8% 0%, rgba(15, 94, 255, .09), transparent 28%),
        linear-gradient(180deg, #f6fafc 0%, #ffffff 44%, #f6fafc 100%);
}

.product-detail-v2 .container {
    width: min(100% - 72px, 1240px);
}

.product-detail-card {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.product-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
    gap: 28px;
    align-items: stretch;
}

.product-detail-gallery,
.product-detail-summary,
.product-detail-content,
.product-detail-sidebox {
    border: 1px solid rgba(190, 213, 225, .78);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
}

.product-detail-gallery {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.product-detail-gallery__stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 22px;
    background: #f8fbfd;
}

.product-detail-gallery__zoom {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: zoom-in;
    background: #f8fbfd;
}

.product-detail-gallery__zoom::after {
    content: "Click để xem lớn";
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    padding: 8px 11px;
    border-radius: 999px;
    color: #0f172a;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(190, 213, 225, .82);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
    font-size: 12px;
    font-weight: 850;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
}

.product-detail-gallery__zoom:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.product-detail-gallery__stage::before {
    display: none;
}

.product-detail-gallery__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    filter: none;
    transform: scale(1);
    transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
    transition: transform .22s ease;
    will-change: transform;
}

.product-detail-gallery__zoom:hover .product-detail-gallery__image {
    transform: scale(1.85);
    filter: none;
}

.product-detail-gallery__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    color: #0b4fd8;
    background: rgba(209, 250, 229, .94);
    border: 1px solid rgba(15, 94, 255, .28);
    font-size: 13px;
    font-weight: 850;
}

.product-detail-gallery__info {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(260px, 1.06fr);
    align-items: stretch;
    gap: 18px;
    flex: 1;
    padding: 24px;
    border: 1px solid #deebf3;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(15, 94, 255, .08), transparent 42%),
        linear-gradient(180deg, #ffffff, #f8fcff);
}

.product-detail-gallery__info > div {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-detail-gallery__info span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #0f5eff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-detail-gallery__info strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 20px;
    line-height: 1.22;
}

.product-detail-gallery__info p {
    margin: 0;
    color: #53657a;
    font-size: 14px;
    line-height: 1.62;
}

.product-detail-gallery__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
}

.product-detail-gallery__chips em {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid rgba(15, 94, 255, .22);
    border-radius: 999px;
    color: #0f5eff;
    background: rgba(232, 251, 245, .82);
    font-size: 13px;
    font-style: normal;
    font-weight: 850;
}

.product-detail-gallery__info ul {
    display: grid;
    gap: 10px;
    align-content: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-detail-gallery__info li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 10px 14px 10px 36px;
    border: 1px solid rgba(222, 235, 243, .9);
    border-radius: 15px;
    color: #0f172a;
    background: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.45;
}

.product-detail-gallery__info li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 14px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f59e0b;
    transform: translateY(-50%);
}

.product-detail-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.product-detail-gallery__thumbs span {
    display: grid;
    place-items: center;
    aspect-ratio: 2.35 / 1;
    height: auto;
    overflow: hidden;
    border: 1px solid rgba(190, 213, 225, .76);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.product-detail-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
}

.product-detail-summary {
    padding: 34px;
    display: flex;
    flex-direction: column;
}

.product-detail-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.product-detail-kicker span,
.product-detail-service-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    color: #0f5eff;
    background: #eaf2ff;
    border: 1px solid rgba(15, 94, 255, .22);
    font-size: 13px;
    font-weight: 850;
}

.product-detail-title {
    max-width: 720px;
    margin: 0 0 12px;
    color: #111827;
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.product-detail-rating {
    align-items: center;
    margin-bottom: 18px;
    color: #64748b;
    font-size: 14px;
}

.product-detail-stars {
    color: #f59e0b;
    letter-spacing: .04em;
}

.product-detail-price-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding: 16px 0;
    border-top: 1px solid #e2edf5;
    border-bottom: 1px solid #e2edf5;
}

.product-detail-price {
    margin: 0;
    color: #0f5eff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    font-weight: 950;
}

.product-detail-price-row span {
    max-width: 270px;
    color: #64748b;
    font-size: 13px;
}

.product-detail-excerpt {
    margin: 0 0 22px;
    color: #53657a;
    font-size: 16px;
    line-height: 1.74;
}

.product-detail-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.product-detail-spec-grid div {
    min-height: 78px;
    padding: 14px;
    border: 1px solid #deebf3;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #f8fcff);
}

.product-detail-spec-grid span {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.product-detail-spec-grid strong {
    color: #111827;
    font-size: 15px;
}

.product-detail-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 18px;
}

.product-detail-actions .button {
    min-height: 50px;
    border-radius: 14px;
    padding-inline: 22px;
}

.product-detail-actions .button--primary {
    flex: 1 1 auto;
    min-width: 0;
}

.product-detail-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 150px;
    border: 1px solid transparent;
    color: #0f172a;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.product-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}

.product-quote-modal:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 19, 32, .62);
    backdrop-filter: blur(8px);
}

.product-quote-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 680px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    overflow: hidden;
    border: 1px solid rgba(190, 213, 225, .9);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 32px 100px rgba(15, 23, 42, .28);
}

body.admin-bar .product-quote-modal__dialog {
    max-height: calc(100vh - 80px);
}

.product-quote-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(190, 213, 225, .82);
}

.product-quote-modal__close::before,
.product-quote-modal__close::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
}

.product-quote-modal__close::before {
    transform: rotate(45deg);
}

.product-quote-modal__close::after {
    transform: rotate(-45deg);
}

.product-quote-modal__intro {
    padding: 24px 30px 20px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 8%, rgba(47, 128, 255, .34), transparent 28%),
        linear-gradient(135deg, #0f172a, #0f5eff 58%, #2f80ff);
}

.product-quote-modal__intro span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #eaf2ff;
    background: rgba(255, 255, 255, .12);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-quote-modal__intro h2 {
    max-width: 500px;
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(25px, 2.55vw, 34px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.product-quote-modal__intro p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.55;
}

.product-quote-modal__form {
    display: grid;
    gap: 12px;
    padding: 22px 30px 28px;
}

.product-quote-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-quote-modal__form label {
    display: grid;
    gap: 6px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 850;
}

.product-quote-modal__form input,
.product-quote-modal__form textarea {
    width: 100%;
    border: 1px solid #dbe8f0;
    border-radius: 14px;
    background: #f8fbfd;
    color: #0f172a;
    font: inherit;
    font-weight: 650;
    outline: none;
    padding: 11px 13px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.product-quote-modal__form textarea {
    resize: vertical;
    min-height: 96px;
    max-height: 150px;
}

.product-quote-modal__form input:focus,
.product-quote-modal__form textarea:focus {
    border-color: rgba(15, 94, 255, .48);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 94, 255, .12);
}

.product-quote-modal__form button {
    min-height: 50px;
    border-radius: 16px;
}

.product-image-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}

.product-image-modal:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-image-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 19, 32, .72);
    backdrop-filter: blur(8px);
}

.product-image-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    width: min(100%, 960px);
    max-height: calc(100vh - 56px);
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(190, 213, 225, .72);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 32px 100px rgba(15, 23, 42, .34);
}

.product-image-modal__dialog img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border-radius: 18px;
    background: #f8fbfd;
}

.product-image-modal__dialog figcaption {
    color: #0f172a;
    font-size: 15px;
    font-weight: 850;
    text-align: center;
}

.product-image-modal__close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(190, 213, 225, .9);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .22);
}

.product-image-modal__close::before,
.product-image-modal__close::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
}

.product-image-modal__close::before {
    transform: rotate(45deg);
}

.product-image-modal__close::after {
    transform: rotate(-45deg);
}

.product-quote-modal.is-force-closed,
.product-image-modal.is-force-closed {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.product-detail-action:hover {
    transform: translateY(-1px);
}

.product-detail-action__icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
}

.product-detail-action--call {
    border-color: rgba(15, 94, 255, .22);
    color: #0b4fd8;
    background: linear-gradient(180deg, #f0fdfa, #ffffff);
}

.product-detail-action--call .product-detail-action__icon {
    background: #0f5eff;
}

.product-detail-action--call .product-detail-action__icon::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 4px;
    transform: rotate(-45deg);
}

.product-detail-action--zalo {
    border-color: rgba(47, 128, 255, .24);
    color: #075985;
    background: linear-gradient(180deg, #eff9ff, #ffffff);
}

.product-detail-action--zalo .product-detail-action__icon {
    color: #fff;
    background: linear-gradient(135deg, #2f80ff, #2f80ff);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .12);
}

.product-detail-service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e2edf5;
}

.product-detail-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
    margin-top: 28px;
}

.product-detail-content {
    padding: 30px;
}

.product-detail-section + .product-detail-section {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #e2edf5;
}

.product-detail-section h2,
.product-detail-sidebox h3 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.product-detail-content p {
    color: #53657a;
    font-size: 16px;
    line-height: 1.78;
}

.product-detail-table {
    overflow: hidden;
    border: 1px solid #e2edf5;
    border-radius: 18px;
    box-shadow: none;
}

.product-detail-table th {
    width: 230px;
    color: #334155;
    background: #f7fbfe;
}

.product-detail-table td {
    color: #111827;
    font-weight: 650;
}

.product-detail-sidebox {
    align-self: start;
    position: sticky;
    top: 96px;
    padding: 0;
    overflow: hidden;
}

.product-detail-advisor {
    padding: 22px;
    border-radius: 0;
    color: #fff;
    background:
        radial-gradient(circle at 92% 0%, rgba(47, 128, 255, .38), transparent 28%),
        linear-gradient(135deg, #0f172a, #0f5eff);
}

.product-detail-advisor > span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #eaf2ff;
    background: rgba(255,255,255,.1);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.product-detail-advisor h3 {
    color: #fff;
}

.product-detail-advisor p {
    color: rgba(255,255,255,.82);
    line-height: 1.65;
}

.product-detail-benefits {
    padding: 24px;
    background: #fff;
}

.product-detail-benefits ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-detail-benefits li {
    position: relative;
    padding-left: 28px;
    color: #43556a;
    line-height: 1.55;
}

.product-detail-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #0f5eff;
    background: #eaf2ff;
    font-size: 12px;
    font-weight: 900;
}

.product-detail-benefits li::before {
    content: "" !important;
    top: .25em;
    color: transparent;
    font-size: 0;
}

.product-detail-benefits li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: .56em;
    width: 6px;
    height: 10px;
    border: solid #0f5eff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.product-detail-related {
    position: relative;
    padding-top: 58px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 95, 232, .08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.product-detail-related .section-heading {
    margin-bottom: 28px;
}

.product-detail-related .section-heading h2 {
    color: #101a2d;
    letter-spacing: -.03em;
}

.product-detail-related .product-grid.five-columns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.product-detail-related .inox-product-card {
    grid-template-rows: 210px minmax(0, 1fr);
    border: 1px solid transparent;
    border-radius: 20px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(11, 95, 232, .18), rgba(15, 94, 255, .16), rgba(180, 83, 9, .14)) border-box !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .075) !important;
    transition: transform .22s ease, box-shadow .22s ease;
}

.product-detail-related .inox-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 62px rgba(15, 23, 42, .13) !important;
}

.product-detail-related .inox-product-card__thumb-wrap {
    position: relative;
    height: 210px;
    padding: 0;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #f8fafc, #eef6ff);
}

.product-detail-related .inox-product-card__thumb-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(15, 23, 42, .12));
    pointer-events: none;
}

.product-detail-related .inox-product-card__thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform .28s ease;
}

.product-detail-related .inox-product-card:hover .inox-product-card__thumb {
    transform: scale(1.1);
}

.product-detail-related .inox-product-card__body {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    padding: 16px;
}

.product-detail-related .inox-product-card__title {
    min-height: 42px;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
}

.product-detail-related .inox-product-card__title a {
    color: #101a2d !important;
}

.product-detail-related .inox-product-card__spec {
    display: -webkit-box;
    min-height: 38px;
    margin: 0 0 10px;
    overflow: hidden;
    color: #607089 !important;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-detail-related .inox-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 26px;
    margin: auto 0 10px;
}

.product-detail-related .inox-product-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #eaf2ff !important;
    color: #0b5fe8 !important;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
}

.product-detail-related .inox-product-card__price {
    margin: 0 0 12px;
    color: #0b5fe8 !important;
    font-size: 17px;
    line-height: 1.2;
}

.product-detail-related .inox-product-card__actions {
    display: grid;
    grid-template-columns: 1fr;
}

.product-detail-related .inox-product-card__actions .button {
    width: 100%;
    min-height: 40px;
    border-radius: 13px;
    border-color: #bcd6ff !important;
    background: #f8fbff !important;
    color: #0b5fe8 !important;
    font-size: 13px;
    font-weight: 900;
}

@media (max-width: 1080px) {
    .product-detail-hero,
    .product-detail-body {
        grid-template-columns: 1fr;
    }

    .product-detail-gallery {
        height: auto;
    }

    .product-detail-sidebox {
        position: static;
    }

    .product-detail-related .product-grid.five-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-detail-v2 .container {
        width: min(100% - 24px, 1240px);
    }

    .product-detail-summary,
    .product-detail-content {
        padding: 22px;
    }

    .product-detail-gallery__stage {
        min-height: 300px;
    }

    .product-detail-gallery__zoom {
        height: 300px;
    }

    .product-detail-gallery__image {
        height: 100%;
    }

    .product-detail-gallery__thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-gallery__thumbs span {
        height: auto;
    }

    .product-detail-related .product-grid.five-columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-detail-related .inox-product-card {
        grid-template-rows: 230px minmax(0, 1fr);
    }

    .product-detail-related .inox-product-card__thumb-wrap {
        height: 230px;
    }

    .product-detail-gallery__info {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .product-detail-gallery__info strong {
        font-size: 18px;
    }

    .product-detail-spec-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-actions {
        flex-wrap: wrap;
    }

    .product-detail-actions .button--primary,
    .product-detail-action {
        flex: 1 1 100%;
    }

    .product-quote-modal {
        padding: 14px;
    }

    .product-quote-modal__intro,
    .product-quote-modal__form {
        padding-inline: 22px;
    }

    .product-quote-modal__grid {
        grid-template-columns: 1fr;
    }

    .product-image-modal {
        padding: 14px;
    }

    .product-image-modal__dialog {
        padding: 12px;
        border-radius: 18px;
    }

    .product-image-modal__close {
        top: 10px;
        right: 10px;
    }
}

/* Footer final overrides: keep after legacy footer rules. */
footer.site-footer.site-footer--modern {
    position: relative;
    overflow: hidden;
    color: #d9e8ee;
    background:
        radial-gradient(circle at 12% -8%, rgba(15, 94, 255, .22), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(47, 128, 255, .18), transparent 28%),
        linear-gradient(135deg, #07111d 0%, #092333 48%, #073f3b 100%);
}

footer.site-footer.site-footer--modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
    pointer-events: none;
}

footer.site-footer.site-footer--modern .site-footer__top {
    position: relative;
    z-index: 1;
    padding: 0 0 42px;
}

footer.site-footer.site-footer--modern .footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin: 0 0 38px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-top: 0;
    border-radius: 0 0 28px 28px;
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 255, 255, .2), transparent 24%),
        linear-gradient(135deg, rgba(15, 94, 255, .96), rgba(8, 145, 178, .92));
    box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

footer.site-footer.site-footer--modern .footer-cta span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #eaf2ff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

footer.site-footer.site-footer--modern .footer-cta h2 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

footer.site-footer.site-footer--modern .footer-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

footer.site-footer.site-footer--modern .footer-cta__primary,
footer.site-footer.site-footer--modern .footer-cta__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 15px;
    font-weight: 900;
    white-space: nowrap;
}

footer.site-footer.site-footer--modern .footer-cta__primary {
    color: #0f172a;
    background: #fff;
}

footer.site-footer.site-footer--modern .footer-cta__secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .1);
}

footer.site-footer.site-footer--modern .site-footer__grid {
    display: grid;
    grid-template-columns: 1.55fr .9fr 1.12fr .9fr 1.12fr;
    gap: 22px;
    align-items: start;
}

footer.site-footer.site-footer--modern .site-footer__brand-col {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
}

footer.site-footer.site-footer--modern .footer-brand__logo img {
    width: 230px;
    max-width: 100%;
    height: auto;
}

footer.site-footer.site-footer--modern .footer-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

footer.site-footer.site-footer--modern .footer-capabilities span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: #bff8ec;
    background: rgba(15, 94, 255, .12);
    border: 1px solid rgba(45, 212, 191, .18);
    font-size: 12px;
    font-weight: 850;
}

footer.site-footer.site-footer--modern .site-footer__title {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

footer.site-footer.site-footer--modern .site-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2dd4bf, #2f80ff);
}

footer.site-footer.site-footer--modern .footer-menu,
footer.site-footer.site-footer--modern .footer-contact-list,
footer.site-footer.site-footer--modern .footer-link-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer.site-footer.site-footer--modern .footer-menu li,
footer.site-footer.site-footer--modern .footer-contact-list li,
footer.site-footer.site-footer--modern .footer-link-list li {
    margin: 0;
}

footer.site-footer.site-footer--modern .footer-menu a,
footer.site-footer.site-footer--modern .footer-link-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(226, 242, 247, .82);
    font-weight: 700;
}

footer.site-footer.site-footer--modern .footer-menu a::before,
footer.site-footer.site-footer--modern .footer-link-list a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: rgba(45, 212, 191, .8);
    transform: rotate(45deg);
}

footer.site-footer.site-footer--modern .footer-contact-list li {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
}

footer.site-footer.site-footer--modern .footer-contact-list span {
    color: #86efac;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

footer.site-footer.site-footer--modern .footer-newsletter {
    display: grid;
    gap: 10px;
}

footer.site-footer.site-footer--modern .footer-newsletter input,
footer.site-footer.site-footer--modern .footer-newsletter button {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
}

footer.site-footer.site-footer--modern .footer-newsletter input {
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    background: rgba(255, 255, 255, .075);
}

footer.site-footer.site-footer--modern .footer-newsletter button {
    border: 0;
    color: #0f172a;
    background: linear-gradient(135deg, #eaf2ff, #ffffff);
    font-weight: 950;
}

footer.site-footer.site-footer--modern .footer-social {
    display: flex;
    gap: 10px;
}

footer.site-footer.site-footer--modern .footer-social a {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    font-weight: 950;
}

footer.site-footer.site-footer--modern .site-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: rgba(2, 8, 23, .22);
}

footer.site-footer.site-footer--modern .copyright,
footer.site-footer.site-footer--modern .footer-description,
footer.site-footer.site-footer--modern .site-footer__col > p,
footer.site-footer.site-footer--modern .footer-bottom-links a {
    color: rgba(226, 242, 247, .76);
}

@media (max-width: 1180px) {
    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    footer.site-footer.site-footer--modern .site-footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    footer.site-footer.site-footer--modern .footer-cta {
        grid-template-columns: 1fr;
    }

    footer.site-footer.site-footer--modern .footer-cta__actions {
        justify-content: flex-start;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    footer.site-footer.site-footer--modern .footer-cta,
    footer.site-footer.site-footer--modern .footer-cta__actions,
    footer.site-footer.site-footer--modern .footer-cta__primary,
    footer.site-footer.site-footer--modern .footer-cta__secondary {
        width: 100%;
    }

    footer.site-footer.site-footer--modern .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* Final color cascade: keep every public page aligned with the homepage palette. */
body:not(.wp-admin) {
    --color-primary: #0b5fe8;
    --color-primary-dark: #004bc4;
    --color-dark: #101a2d;
    --color-dark-2: #14213a;
    --color-text: #101a2d;
    --color-text-soft: #607089;
    --color-border: #dce7f5;
    --color-background: #f7faff;
    --color-accent: #0f5eff;
    --color-warm: #b45309;
    --archive-bg: var(--color-background);
    --archive-panel: #ffffff;
    --archive-dark: var(--color-text);
    --archive-muted: var(--color-text-soft);
    --archive-line: var(--color-border);
    --archive-primary: var(--color-primary);
    --archive-accent: var(--color-warm);
    color: var(--color-text);
    background:
        radial-gradient(circle at 8% 0%, rgba(11, 95, 232, .08), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, var(--color-background) 48%, #eef6ff 100%) !important;
}

body:not(.wp-admin) a {
    color: var(--color-primary);
}

body:not(.wp-admin) .site-topbar {
    background: #0d1b32 !important;
}

body:not(.wp-admin) .site-header {
    background: rgba(255, 255, 255, .94) !important;
    border-bottom-color: rgba(220, 231, 245, .95) !important;
}

body:not(.wp-admin) .main-navigation a,
body:not(.wp-admin) .site-header a {
    color: var(--color-text) !important;
}

body:not(.wp-admin) .main-navigation a:hover,
body:not(.wp-admin) .main-navigation .current-menu-item > a,
body:not(.wp-admin) .main-navigation .current_page_item > a,
body:not(.wp-admin) .site-header a:hover {
    color: var(--color-primary) !important;
}

body:not(.wp-admin) .button:not(.button--ghost),
body:not(.wp-admin) button[type="submit"],
body:not(.wp-admin) input[type="submit"],
body:not(.wp-admin) .btn-primary,
body:not(.wp-admin) .hero-button,
body:not(.wp-admin) .quote-submit,
body:not(.wp-admin) .contactx-btn,
body:not(.wp-admin) .load-more-button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)) !important;
    border-color: var(--color-primary) !important;
    color: #ffffff !important;
}

body:not(.wp-admin) .page-hero,
body:not(.wp-admin) .archive-hero,
body:not(.wp-admin) .product-archive-hero,
body:not(.wp-admin) .service-archive-hero,
body:not(.wp-admin) .single-product-hero,
body:not(.wp-admin) .single-service-hero,
body:not(.wp-admin) .hero-home {
    background:
        radial-gradient(circle at 14% 10%, rgba(11, 95, 232, .18), transparent 32%),
        linear-gradient(135deg, #101a2d, #14213a 58%, #0b5fe8) !important;
    color: #ffffff !important;
}

body:not(.wp-admin) .section-kicker,
body:not(.wp-admin) .kicker,
body:not(.wp-admin) .eyebrow,
body:not(.wp-admin) .archive-label,
body:not(.wp-admin) .product-archive-kicker,
body:not(.wp-admin) .service-archive-kicker,
body:not(.wp-admin) .tkg-eyebrow {
    background: #eaf2ff !important;
    color: var(--color-primary) !important;
}

body:not(.wp-admin) .card,
body:not(.wp-admin) .product-card,
body:not(.wp-admin) .inox-product-card,
body:not(.wp-admin) .post-card,
body:not(.wp-admin) .service-card,
body:not(.wp-admin) .panel,
body:not(.wp-admin) .info-card,
body:not(.wp-admin) .archive-card,
body:not(.wp-admin) .single-product-card,
body:not(.wp-admin) .product-detail-card,
body:not(.wp-admin) .sidebar-card,
body:not(.wp-admin) .widget,
body:not(.wp-admin) .contactx-card,
body:not(.wp-admin) .faq-card,
body:not(.wp-admin) .product-filter-card,
body:not(.wp-admin) .product-toolbar {
    border-color: var(--color-border) !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .065) !important;
}

body:not(.wp-admin) h1,
body:not(.wp-admin) h2,
body:not(.wp-admin) h3,
body:not(.wp-admin) .entry-title,
body:not(.wp-admin) .page-title,
body:not(.wp-admin) .archive-title,
body:not(.wp-admin) .product-card__title,
body:not(.wp-admin) .inox-product-card__title,
body:not(.wp-admin) .post-card__title,
body:not(.wp-admin) .service-card__title {
    color: var(--color-text);
}

body:not(.wp-admin) p,
body:not(.wp-admin) .entry-summary,
body:not(.wp-admin) .archive-description,
body:not(.wp-admin) .product-card__excerpt,
body:not(.wp-admin) .inox-product-card__spec,
body:not(.wp-admin) .post-card__excerpt,
body:not(.wp-admin) .service-card__excerpt {
    color: var(--color-text-soft);
}

body:not(.wp-admin) .page-hero h1,
body:not(.wp-admin) .archive-hero h1,
body:not(.wp-admin) .product-archive-hero h1,
body:not(.wp-admin) .service-archive-hero h1,
body:not(.wp-admin) .hero-home h1,
body:not(.wp-admin) footer.site-footer h1,
body:not(.wp-admin) footer.site-footer h2,
body:not(.wp-admin) footer.site-footer h3,
body:not(.wp-admin) footer.site-footer h4 {
    color: #ffffff !important;
}

body:not(.wp-admin) .page-hero p,
body:not(.wp-admin) .archive-hero p,
body:not(.wp-admin) .product-archive-hero p,
body:not(.wp-admin) .service-archive-hero p,
body:not(.wp-admin) .hero-home p,
body:not(.wp-admin) footer.site-footer p {
    color: rgba(255, 255, 255, .76) !important;
}

body:not(.wp-admin) .tag,
body:not(.wp-admin) .pill,
body:not(.wp-admin) .badge,
body:not(.wp-admin) .inox-product-card__meta span {
    border-color: rgba(11, 95, 232, .14) !important;
    background: #eaf2ff !important;
    color: var(--color-primary) !important;
}

body:not(.wp-admin) .product-card__price,
body:not(.wp-admin) .inox-product-card__price,
body:not(.wp-admin) .price,
body:not(.wp-admin) .highlight,
body:not(.wp-admin) .stat-number {
    color: var(--color-primary) !important;
}

body:not(.wp-admin) .section-dark,
body:not(.wp-admin) .section-dark-accent,
body:not(.wp-admin) .section-dark-stats,
body:not(.wp-admin) footer.site-footer,
body:not(.wp-admin) footer.site-footer.site-footer--modern {
    background:
        radial-gradient(circle at 18% 0%, rgba(11, 95, 232, .2), transparent 28%),
        linear-gradient(135deg, #101a2d, #14213a 58%, #0d1b32) !important;
}

body:not(.wp-admin) footer.site-footer.site-footer--modern .site-footer__title::after,
body:not(.wp-admin) .section-title::after,
body:not(.wp-admin) .archive-title::after {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent)) !important;
}

/* Contrast fixes for dark gradient quote/CTA surfaces. */
body:not(.wp-admin) .product-quote-modal__intro,
body:not(.wp-admin) .product-detail-sidebox,
body:not(.wp-admin) .home-pricing__quote,
body:not(.wp-admin) .aboutx-cta__box,
body:not(.wp-admin) .price-cta,
body:not(.wp-admin) .cta-banner-inline {
    color: #ffffff !important;
    background:
        radial-gradient(circle at 88% 8%, rgba(11, 95, 232, .26), transparent 28%),
        linear-gradient(135deg, #101a2d, #0f5eff 62%, #2f80ff) !important;
}

body:not(.wp-admin) .product-quote-modal__intro h1,
body:not(.wp-admin) .product-quote-modal__intro h2,
body:not(.wp-admin) .product-quote-modal__intro h3,
body:not(.wp-admin) .product-detail-sidebox h1,
body:not(.wp-admin) .product-detail-sidebox h2,
body:not(.wp-admin) .product-detail-sidebox h3,
body:not(.wp-admin) .home-pricing__quote h1,
body:not(.wp-admin) .home-pricing__quote h2,
body:not(.wp-admin) .home-pricing__quote h3,
body:not(.wp-admin) .aboutx-cta__box h1,
body:not(.wp-admin) .aboutx-cta__box h2,
body:not(.wp-admin) .aboutx-cta__box h3,
body:not(.wp-admin) .price-cta h1,
body:not(.wp-admin) .price-cta h2,
body:not(.wp-admin) .price-cta h3,
body:not(.wp-admin) .cta-banner-inline h1,
body:not(.wp-admin) .cta-banner-inline h2,
body:not(.wp-admin) .cta-banner-inline h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 0 rgba(15, 23, 42, .18);
}

body:not(.wp-admin) .product-quote-modal__intro p,
body:not(.wp-admin) .product-detail-sidebox p,
body:not(.wp-admin) .home-pricing__quote p,
body:not(.wp-admin) .home-pricing__quote li,
body:not(.wp-admin) .aboutx-cta__box p,
body:not(.wp-admin) .price-cta p,
body:not(.wp-admin) .cta-banner-inline p {
    color: rgba(255, 255, 255, .84) !important;
}

body:not(.wp-admin) .product-quote-modal__intro span,
body:not(.wp-admin) .product-detail-sidebox .section-kicker,
body:not(.wp-admin) .product-detail-sidebox > span,
body:not(.wp-admin) .home-pricing__quote-badge {
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(255, 255, 255, .14) !important;
    color: #dbeafe !important;
}

body:not(.wp-admin) .product-detail-sidebox .button,
body:not(.wp-admin) .home-pricing__quote .button,
body:not(.wp-admin) .aboutx-cta__box .button,
body:not(.wp-admin) .price-cta .button,
body:not(.wp-admin) .cta-banner-inline .button {
    border-color: rgba(255, 255, 255, .18) !important;
    background: linear-gradient(135deg, #0b5fe8, #004bc4) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 34px rgba(11, 95, 232, .26) !important;
}

body:not(.wp-admin) .product-quote-modal__form {
    color: var(--color-text) !important;
    background: #ffffff !important;
}

body:not(.wp-admin) .product-quote-modal__form label span {
    color: var(--color-text) !important;
}

body:not(.wp-admin) .product-quote-modal__form input,
body:not(.wp-admin) .product-quote-modal__form textarea {
    color: var(--color-text) !important;
    background: #f8fbff !important;
    border-color: var(--color-border) !important;
}

/* Quote list, comparison drawer and floating advisory tools */
.tkg-floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9990;
    display: grid;
    gap: 8px;
}

.tkg-floating-actions__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 104px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(188, 214, 255, .92);
    border-radius: 999px;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0b5fe8, #004bc4);
    box-shadow: 0 14px 34px rgba(11, 95, 232, .24);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.inox-product-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
@media (max-width: 700px) {
    .tkg-floating-actions {
        right: 10px;
        bottom: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tkg-floating-actions__item {
        min-width: 0;
        min-height: 40px;
        padding: 0 11px;
        font-size: 12px;
    }

}

/* Business pages: quote, downloads and projects */
.tkg-quote-page,
.tkg-download-page,
.tkg-project-archive,
.tkg-project-single {
    padding: 58px 0 72px;
    background:
        radial-gradient(circle at 10% 0%, rgba(11, 95, 232, .1), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #f7faff 52%, #eef6ff 100%);
}

.tkg-quote-page__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    gap: 28px;
    align-items: start;
}

.tkg-quote-page__intro,
.tkg-smart-quote,
.tkg-download-card,
.tkg-download-note,
.tkg-project-card,
.tkg-project-single__card {
    border: 1px solid #dce7f5;
    border-radius: 26px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 60px rgba(15, 23, 42, .075);
}

.tkg-quote-page__intro,
.tkg-smart-quote {
    padding: 28px;
}

.tkg-quote-page h1,
.tkg-download-page h1,
.tkg-project-archive h1,
.tkg-project-single h1 {
    margin: 12px 0 12px;
    color: #101a2d;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.tkg-quote-page__intro p,
.tkg-download-page__head p,
.tkg-project-archive__head p,
.tkg-project-single__head p {
    max-width: 780px;
    color: #607089;
    font-size: 17px;
    line-height: 1.7;
}

.tkg-quote-page__steps {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.tkg-quote-page__steps div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px;
    border: 1px solid #dce7f5;
    border-radius: 16px;
    background: #f8fbff;
}

.tkg-quote-page__steps b {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #ffffff;
    background: #0b5fe8;
}

.tkg-smart-quote {
    display: grid;
    gap: 18px;
}

.tkg-smart-quote h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.tkg-smart-quote__choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tkg-smart-quote__choices label,
.tkg-smart-quote label {
    color: #101a2d;
    font-weight: 850;
}

.tkg-smart-quote__choices label {
    padding: 12px;
    border: 1px solid #dce7f5;
    border-radius: 14px;
    background: #f8fbff;
}

.tkg-smart-quote__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tkg-smart-quote label span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
}

.tkg-smart-quote input,
.tkg-smart-quote select,
.tkg-smart-quote textarea {
    width: 100%;
    border: 1px solid #dce7f5;
    border-radius: 14px;
    padding: 13px 14px;
    color: #101a2d;
    background: #ffffff;
    font: inherit;
}

.tkg-smart-quote__message {
    display: block;
}

.tkg-download-page__head,
.tkg-project-archive__head {
    max-width: 920px;
    margin-bottom: 26px;
}

.tkg-download-grid,
.tkg-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tkg-download-card {
    padding: 24px;
}

.tkg-download-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #0b5fe8;
    background: #eaf2ff;
    font-weight: 950;
}

.tkg-download-card h2,
.tkg-project-card h2 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.16;
}

.tkg-download-card p,
.tkg-project-card p {
    color: #607089;
    line-height: 1.65;
}

.tkg-download-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: 22px;
    padding: 24px;
}

.tkg-project-card {
    overflow: hidden;
}

.tkg-project-card__media {
    display: block;
    height: 220px;
    overflow: hidden;
    background: #eef6ff;
}

.tkg-project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tkg-project-card__body {
    padding: 20px;
}

.tkg-project-card__body span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #0b5fe8;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.tkg-project-card__body a {
    font-weight: 950;
}

.tkg-project-single__card {
    padding: 28px;
}

.tkg-project-single__media {
    margin: 24px 0;
    overflow: hidden;
    border-radius: 22px;
}

.tkg-project-single__media img {
    display: block;
    width: 100%;
    height: auto;
}

.tkg-project-single__cta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 28px;
    padding: 24px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #101a2d, #0f5eff 62%, #2f80ff);
}

.tkg-project-single__cta h2 {
    margin: 0;
    color: #ffffff !important;
}

.tkg-capability-band {
    background: linear-gradient(180deg, #f7faff, #eef6ff);
}

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

.tkg-capability-grid a {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #dce7f5;
    border-radius: 22px;
    color: #101a2d !important;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .065);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tkg-capability-grid a:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, .1);
}

.tkg-capability-grid b {
    font-size: 22px;
    line-height: 1.16;
}

.tkg-capability-grid span {
    margin-top: 12px;
    color: #607089;
    line-height: 1.65;
}

@media (max-width: 1000px) {
    .tkg-quote-page__grid,
    .tkg-download-note {
        grid-template-columns: 1fr;
    }

    .tkg-download-grid,
    .tkg-project-grid,
    .tkg-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tkg-smart-quote__choices,
    .tkg-smart-quote__grid,
    .tkg-download-grid,
    .tkg-project-grid,
    .tkg-capability-grid {
        grid-template-columns: 1fr;
    }

    .tkg-quote-page__intro,
    .tkg-smart-quote,
    .tkg-project-single__card {
        padding: 20px;
    }

    .tkg-project-single__cta {
        display: grid;
    }
}

/* Redesigned business pages */
.tkg-quote-page,
.tkg-download-page,
.tkg-project-archive {
    padding: 42px 0 72px;
    background: linear-gradient(180deg, #f5f8fb 0%, #ffffff 42%, #eef6f4 100%);
}

.tkg-business-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 22px;
    padding: 28px;
    border: 1px solid #cbd9e5;
    border-radius: 8px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(8, 21, 37, .94), rgba(13, 102, 91, .91)),
        url("../images/about-factory-banner.png") center/cover;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
}

.tkg-business-hero--download {
    background:
        linear-gradient(135deg, rgba(9, 32, 56, .94), rgba(49, 95, 96, .88)),
        url("../images/about-factory-banner.png") center/cover;
}

.tkg-business-hero--project {
    background:
        linear-gradient(135deg, rgba(8, 20, 36, .95), rgba(84, 89, 65, .86)),
        url("../images/about-factory-banner.png") center/cover;
}

.tkg-business-hero .section-kicker {
    color: #08212f;
    background: #dff8f0;
}

.tkg-business-hero h1 {
    max-width: 900px;
    margin: 12px 0;
    color: #ffffff !important;
    font-size: clamp(34px, 4.8vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
}

.tkg-business-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.65;
}

.tkg-business-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tkg-business-hero__meta span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 850;
}

.tkg-business-hero__panel {
    align-self: stretch;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
}

.tkg-business-hero__panel b {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 16px;
}

.tkg-business-hero__panel strong {
    display: block;
    margin: 6px 0;
    color: #ffffff;
    font-size: 56px;
    line-height: 1;
}

.tkg-business-hero__panel ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tkg-business-hero__panel li,
.tkg-business-hero__panel span,
.tkg-project-stats span {
    color: rgba(255, 255, 255, .82);
    line-height: 1.55;
}

.tkg-quote-page__grid {
    grid-template-columns: minmax(280px, .78fr) minmax(520px, 1.22fr);
    gap: 20px;
}

.tkg-quote-page__intro,
.tkg-smart-quote,
.tkg-download-card,
.tkg-download-note,
.tkg-project-card,
.tkg-project-archive__cta {
    border: 1px solid #d5e1ea;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
}

.tkg-quote-page__intro,
.tkg-smart-quote {
    padding: 24px;
}

.tkg-quote-page__intro h2,
.tkg-smart-quote h2,
.tkg-download-note h2,
.tkg-project-archive__cta h2 {
    margin: 0 0 14px;
    color: #0c1c30;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: 0;
}

.tkg-quote-page__steps div {
    border-color: #d5e1ea;
    border-radius: 8px;
    background: #f8fafc;
}

.tkg-quote-page__steps b {
    border-radius: 6px;
    background: #0f5eff;
}

.tkg-quote-contact {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    padding: 14px;
    border-radius: 8px;
    color: #0c1c30;
    background: #e9f7f3;
    font-weight: 850;
}

.tkg-quote-contact a {
    color: #0f5eff !important;
    font-weight: 950;
}

.tkg-smart-quote {
    gap: 16px;
}

.tkg-smart-quote__choices label {
    border-color: #d5e1ea;
    border-radius: 8px;
    background: #f8fafc;
}

.tkg-smart-quote input,
.tkg-smart-quote select,
.tkg-smart-quote textarea {
    border-color: #cfdce8;
    border-radius: 8px;
    background: #ffffff;
}

.tkg-smart-quote input:focus,
.tkg-smart-quote select:focus,
.tkg-smart-quote textarea:focus {
    border-color: #0f5eff;
    box-shadow: 0 0 0 3px rgba(15, 94, 255, .14);
    outline: 0;
}

.tkg-download-grid,
.tkg-project-grid {
    gap: 18px;
}

.tkg-download-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 22px;
}

.tkg-download-card__top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}

.tkg-download-card__top span,
.tkg-project-card__body span {
    display: inline-flex;
    margin: 0;
    padding: 7px 10px;
    border-radius: 999px;
    color: #075f58;
    background: #dff8f0;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.tkg-download-card__top b {
    display: grid;
    place-items: center;
    min-width: 44px;
    height: 34px;
    border-radius: 6px;
    color: #ffffff;
    background: #0c1c30;
    font-size: 12px;
}

.tkg-download-card h2,
.tkg-project-card h2 {
    color: #0c1c30;
    letter-spacing: 0;
}

.tkg-download-card p,
.tkg-project-card p,
.tkg-download-note p,
.tkg-project-archive__cta p {
    color: #58687a;
    line-height: 1.65;
}

.tkg-download-card .button {
    margin-top: auto;
}

.tkg-download-note,
.tkg-project-archive__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: 22px;
    padding: 24px;
}

.tkg-project-card {
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.tkg-project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, .12);
}

.tkg-project-card__media {
    height: 238px;
    background: #e7edf2;
}

.tkg-project-card__media img {
    transition: transform .28s ease;
}

.tkg-project-card:hover .tkg-project-card__media img {
    transform: scale(1.035);
}

.tkg-project-card__body {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.tkg-project-card__body b {
    color: #0c1c30;
    font-size: 14px;
    line-height: 1.45;
}

.tkg-text-link {
    color: #0f5eff !important;
    font-weight: 950;
}

.tkg-project-stats {
    display: grid;
    gap: 14px;
}

.tkg-project-stats div {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.tkg-project-stats div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.tkg-project-stats strong {
    font-size: 30px;
}

@media (max-width: 1000px) {
    .tkg-business-hero,
    .tkg-quote-page__grid,
    .tkg-download-note,
    .tkg-project-archive__cta {
        grid-template-columns: 1fr;
    }

    .tkg-download-grid,
    .tkg-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tkg-quote-page,
    .tkg-download-page,
    .tkg-project-archive {
        padding-top: 24px;
    }

    .tkg-business-hero,
    .tkg-quote-page__intro,
    .tkg-smart-quote,
    .tkg-download-card,
    .tkg-download-note,
    .tkg-project-archive__cta {
        padding: 18px;
    }

    .tkg-business-hero h1 {
        font-size: 34px;
    }

    .tkg-smart-quote__choices,
    .tkg-smart-quote__grid,
    .tkg-download-grid,
    .tkg-project-grid {
        grid-template-columns: 1fr;
    }

    .tkg-quote-contact {
        display: grid;
    }
}

/* Clean premium pass for quote, catalogue and project pages */
body.page-template-page-bao-gia .page-hero,
body.page-template-page-catalogue-ho-so-nang-luc .page-hero,
body.post-type-archive-project .page-hero {
    display: none !important;
}

body.page-template-page-bao-gia .tkg-quote-page__steps b,
body.page-template-page-bao-gia .tkg-timeline-item > span {
    background: #0f5eff !important;
    color: #ffffff !important;
}

body.page-template-page-bao-gia .tkg-quote-contact {
    background: #eef5ff !important;
}

body.page-template-page-bao-gia .tkg-smart-quote input:focus,
body.page-template-page-bao-gia .tkg-smart-quote select:focus,
body.page-template-page-bao-gia .tkg-smart-quote textarea:focus {
    border-color: #0f5eff !important;
    box-shadow: 0 0 0 3px rgba(15, 94, 255, .14) !important;
}

.tkg-quote-page,
.tkg-download-page,
.tkg-project-archive {
    padding: 34px 0 74px;
    background:
        linear-gradient(90deg, rgba(15, 94, 255, .055) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, #f7fafc 0%, #ffffff 46%, #f3f7ff 100%);
    background-size: 34px 34px, auto;
}

.tkg-business-hero,
.tkg-business-hero--download,
.tkg-business-hero--project {
    position: relative;
    overflow: hidden;
    border: 1px solid #d7e1ea;
    border-left: 5px solid #0f5eff;
    color: #0c1c30;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
}

.tkg-business-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 94, 255, .14), rgba(15, 94, 255, .09));
    pointer-events: none;
}

.tkg-business-hero__content,
.tkg-business-hero__panel {
    position: relative;
    z-index: 1;
}

.tkg-business-hero .section-kicker {
    color: #0b4fd8;
    background: #eaf2ff;
}

.tkg-business-hero h1 {
    color: #0c1c30 !important;
    font-size: clamp(34px, 4.2vw, 58px);
}

.tkg-business-hero p {
    color: #58687a;
}

.tkg-business-hero__meta span {
    border-color: #bfd5ff;
    color: #0b4fd8;
    background: #f1f6ff;
}

.tkg-business-hero__panel {
    border: 1px solid #d7e1ea;
    color: #0c1c30;
    background: #f8fafc;
}

.tkg-business-hero__panel b,
.tkg-business-hero__panel strong,
.tkg-project-stats strong {
    color: #0c1c30;
}

.tkg-business-hero__panel li,
.tkg-business-hero__panel span,
.tkg-project-stats span {
    color: #58687a;
}

.tkg-project-stats div {
    border-bottom-color: #d7e1ea;
}

.tkg-quote-page__intro,
.tkg-smart-quote,
.tkg-download-card,
.tkg-download-note,
.tkg-project-card,
.tkg-project-archive__cta {
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .075);
}

.tkg-smart-quote .button,
.tkg-download-card .button,
.tkg-download-note .button,
.tkg-project-archive__cta .button {
    border-radius: 8px;
    background: #0f5eff;
}

/* Product detail contrast and CTA polish */
body.single-product .product-detail-sidebox {
    border: 1px solid #c9d9ee !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    box-shadow: 0 22px 56px rgba(15, 23, 42, .09) !important;
}

body.single-product .product-detail-advisor {
    padding: 28px !important;
    background:
        radial-gradient(circle at 92% 0%, rgba(15, 94, 255, .26), transparent 30%),
        linear-gradient(135deg, #071a34 0%, #0e5964 52%, #0f5eff 100%) !important;
}

body.single-product .product-detail-advisor > span {
    color: #ffffff !important;
    background: rgba(255, 255, 255, .18) !important;
    border: 1px solid rgba(255, 255, 255, .22) !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

body.single-product .product-detail-advisor h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .22);
}

body.single-product .product-detail-advisor p {
    color: rgba(255, 255, 255, .9) !important;
}

body.single-product .product-detail-advisor .button,
body.single-product .product-detail-actions .button--primary {
    min-height: 56px !important;
    border: 0 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f5eff, #004bc4) !important;
    box-shadow: 0 16px 34px rgba(15, 94, 255, .28) !important;
    font-weight: 950 !important;
}

body.single-product .product-detail-advisor .button:hover,
body.single-product .product-detail-actions .button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(15, 94, 255, .34) !important;
}

body.single-product .product-detail-action {
    min-height: 56px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f5eff, #0053d8) !important;
    border: 1px solid rgba(255, 255, 255, .22) !important;
    box-shadow: 0 16px 34px rgba(15, 94, 255, .22) !important;
    font-weight: 950 !important;
}

body.single-product .product-detail-action--call .product-detail-action__icon {
    background: #0f5eff !important;
}

body.single-product .product-detail-action--zalo .product-detail-action__icon {
    color: #ffffff !important;
    background: #2f80ff !important;
}

body.single-product .product-detail-service-row span,
body.single-product .product-detail-kicker span {
    color: #0b4fd8 !important;
    background: #eaf2ff !important;
    border-color: #9ee7da !important;
    box-shadow: 0 10px 22px rgba(15, 94, 255, .08);
    font-weight: 950 !important;
}

body.single-product .product-detail-spec-grid div {
    border-color: #cddff3 !important;
    background: linear-gradient(180deg, #ffffff, #f4f8ff) !important;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .045);
}

body.single-product .product-detail-spec-grid span {
    color: #52657a !important;
}

body.single-product .product-detail-spec-grid strong {
    color: #071a34 !important;
}

body.single-product .product-detail-benefits {
    padding: 28px !important;
    background: #ffffff !important;
}

body.single-product .product-detail-benefits h3 {
    color: #071a34 !important;
    text-shadow: none !important;
}

body.single-product .product-detail-benefits li {
    color: #33445f !important;
    font-size: 16px !important;
}

body.single-product .product-detail-benefits li::before {
    background: #e4f8f3 !important;
}

body.single-product .product-detail-benefits li::after {
    border-color: #0f5eff !important;
}

/* Product detail: unify accent color with home primary blue */
body.single-product .product-detail-kicker span,
body.single-product .product-detail-gallery__badge,
body.single-product .product-detail-service-row span,
body.single-product .product-detail-advisor > span {
    color: #0f5eff !important;
    background: #eaf2ff !important;
    border-color: #bfd5ff !important;
}

body.single-product .product-detail-gallery__info span,
body.single-product .product-detail-gallery__chips em,
body.single-product .product-detail-price,
body.single-product .product-detail-action--call,
body.single-product .product-detail-action--zalo {
    color: #0f5eff !important;
}

body.single-product .product-detail-advisor {
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 255, 255, .16), transparent 30%),
        linear-gradient(135deg, #071a34 0%, #0d3a86 52%, #0f5eff 100%) !important;
}

body.single-product .product-detail-action--call .product-detail-action__icon,
body.single-product .product-detail-action--zalo .product-detail-action__icon,
body.single-product .product-detail-benefits li::before {
    background: #eaf2ff !important;
}

body.single-product .product-detail-action--call .product-detail-action__icon::before {
    border-color: #0f5eff !important;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
}

body.single-product .product-detail-benefits li::after {
    border-color: #0f5eff !important;
}

body.single-product .product-detail-section h2::before,
body.single-product .product-detail-content h2::before {
    background: #0f5eff !important;
}

body.single-product .product-detail-gallery__badge,
body.single-product .product-detail-gallery__chips em {
    color: #0f5eff !important;
    background: rgba(234, 242, 255, .96) !important;
    border-color: #bfd5ff !important;
}

body.single-product .product-detail-gallery__info {
    background:
        linear-gradient(135deg, rgba(15, 94, 255, .075), transparent 42%),
        linear-gradient(180deg, #ffffff, #f8fbff) !important;
}

body.single-product .product-detail-gallery__info span {
    color: #0f5eff !important;
}

body.single-product .product-detail-action__icon {
    color: #0f5eff !important;
    background: #eaf2ff !important;
}

body.single-product .product-detail-action--zalo .product-detail-action__icon {
    color: #0f5eff !important;
    background: #dbeafe !important;
}

body.single-product .product-detail-service-row span,
body.single-product .product-detail-kicker span {
    box-shadow: 0 10px 22px rgba(15, 94, 255, .08) !important;
}

/* Sitewide primary-blue color synchronization and contrast pass */
:root {
    --color-accent: #0f5eff;
    --archive-primary: #0f5eff;
    --archive-accent: #2f80ff;
    --article-primary: #0f5eff;
}

body:not(.wp-admin) .main-navigation .current-menu-item > a,
body:not(.wp-admin) .main-navigation .menu > li:hover > a,
body:not(.wp-admin) .post-card__cat,
body:not(.wp-admin) .section-kicker,
body:not(.wp-admin) .home-pricing__quote-badge,
body:not(.wp-admin) .aboutx-kicker,
body:not(.wp-admin) .contactx-kicker,
body:not(.wp-admin) .price-kicker,
body:not(.wp-admin) .aboutx-link em,
body:not(.wp-admin) .price-update strong,
body:not(.wp-admin) .price-change,
body:not(.wp-admin) .price-trend-meta b,
body:not(.wp-admin) .product-detail-price,
body:not(.wp-admin) .product-detail-gallery__info span,
body:not(.wp-admin) .product-detail-gallery__chips em,
body:not(.wp-admin) .product-detail-kicker span,
body:not(.wp-admin) .product-detail-service-row span,
body:not(.wp-admin) .tkg-business-hero .section-kicker {
    color: #0f5eff !important;
}

body:not(.wp-admin) .main-navigation .menu > li > a::after,
body:not(.wp-admin) .header-search button::after,
body:not(.wp-admin) .section-kicker::before,
body:not(.wp-admin) .aboutx-kicker::before,
body:not(.wp-admin) .contactx-kicker::before,
body:not(.wp-admin) .price-kicker::before,
body:not(.wp-admin) .aboutx-step i,
body:not(.wp-admin) .price-trend-card::before,
body:not(.wp-admin) .product-detail-section h2::before,
body:not(.wp-admin) .product-detail-content h2::before,
body:not(.wp-admin) .tkg-quote-page__steps b,
body:not(.wp-admin) .tkg-timeline-item > span {
    background: #0f5eff !important;
}

body:not(.wp-admin) .header-search button::before {
    border-color: #0f5eff !important;
}

body:not(.wp-admin) .button--primary,
body:not(.wp-admin) .quote-submit,
body:not(.wp-admin) .price-btn,
body:not(.wp-admin) .aboutx-btn,
body:not(.wp-admin) .contactx-form button,
body:not(.wp-admin) .contactx-btn--phone,
body:not(.wp-admin) .product-detail-actions .button--primary,
body:not(.wp-admin) .product-detail-action,
body:not(.wp-admin) .tkg-smart-quote .button,
body:not(.wp-admin) .tkg-download-card .button,
body:not(.wp-admin) .tkg-download-note .button,
body:not(.wp-admin) .tkg-project-archive__cta .button {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f5eff, #004bc4) !important;
    border-color: transparent !important;
    box-shadow: 0 16px 34px rgba(15, 94, 255, .22) !important;
}

body:not(.wp-admin) .aboutx-btn--light,
body:not(.wp-admin) .price-btn--light,
body:not(.wp-admin) .product-detail-kicker span,
body:not(.wp-admin) .product-detail-service-row span,
body:not(.wp-admin) .product-detail-gallery__badge,
body:not(.wp-admin) .product-detail-gallery__chips em,
body:not(.wp-admin) .price-badge,
body:not(.wp-admin) .price-change,
body:not(.wp-admin) .price-trend-meta b,
body:not(.wp-admin) .tkg-business-hero__meta span,
body:not(.wp-admin) .tkg-quote-contact,
body:not(.wp-admin) .tkg-smart-quote__choices label {
    color: #0f5eff !important;
    background: #eaf2ff !important;
    border-color: #bfd5ff !important;
}

body:not(.wp-admin) .aboutx-hero,
body:not(.wp-admin) .contactx-hero,
body:not(.wp-admin) .price-hero {
    background:
        radial-gradient(circle at 14% 10%, rgba(15, 94, 255, .1), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #eef5ff 64%, #ffffff 100%) !important;
    border-bottom-color: #cddff3 !important;
}

body:not(.wp-admin) .aboutx-cta__box,
body:not(.wp-admin) .contactx-card__head,
body:not(.wp-admin) .contactx-cta__box,
body:not(.wp-admin) .price-quote,
body:not(.wp-admin) .price-cta,
body:not(.wp-admin) .home-pricing__quote,
body:not(.wp-admin) .product-quote-modal__intro,
body:not(.wp-admin) .product-detail-advisor {
    color: #ffffff !important;
    background:
        radial-gradient(circle at 90% 0%, rgba(255,255,255,.14), transparent 28%),
        linear-gradient(135deg, #071a34 0%, #0d3a86 56%, #0f5eff 100%) !important;
}

body:not(.wp-admin) .aboutx-cta__box h1,
body:not(.wp-admin) .aboutx-cta__box h2,
body:not(.wp-admin) .aboutx-cta__box h3,
body:not(.wp-admin) .contactx-card__head h1,
body:not(.wp-admin) .contactx-card__head h2,
body:not(.wp-admin) .contactx-card__head h3,
body:not(.wp-admin) .contactx-cta__box h1,
body:not(.wp-admin) .contactx-cta__box h2,
body:not(.wp-admin) .contactx-cta__box h3,
body:not(.wp-admin) .price-quote__text h1,
body:not(.wp-admin) .price-quote__text h2,
body:not(.wp-admin) .price-quote__text h3,
body:not(.wp-admin) .price-cta h1,
body:not(.wp-admin) .price-cta h2,
body:not(.wp-admin) .price-cta h3,
body:not(.wp-admin) .home-pricing__quote h1,
body:not(.wp-admin) .home-pricing__quote h2,
body:not(.wp-admin) .home-pricing__quote h3,
body:not(.wp-admin) .product-quote-modal__intro h1,
body:not(.wp-admin) .product-quote-modal__intro h2,
body:not(.wp-admin) .product-quote-modal__intro h3,
body:not(.wp-admin) .product-detail-advisor h1,
body:not(.wp-admin) .product-detail-advisor h2,
body:not(.wp-admin) .product-detail-advisor h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .22);
}

body:not(.wp-admin) .aboutx-cta__box p,
body:not(.wp-admin) .contactx-card__head p,
body:not(.wp-admin) .contactx-cta__box p,
body:not(.wp-admin) .price-quote__text p,
body:not(.wp-admin) .price-cta p,
body:not(.wp-admin) .home-pricing__quote p,
body:not(.wp-admin) .home-pricing__quote li,
body:not(.wp-admin) .product-quote-modal__intro p,
body:not(.wp-admin) .product-detail-advisor p {
    color: rgba(255, 255, 255, .9) !important;
}

body:not(.wp-admin) .aboutx-metric strong,
body:not(.wp-admin) .archive-stat strong,
body:not(.wp-admin) .tkg-project-stats strong {
    color: #0f5eff !important;
}

body:not(.wp-admin) .aboutx-step::after,
body:not(.wp-admin) .aboutx-list li::before,
body:not(.wp-admin) .contactx-info li::before,
body:not(.wp-admin) .product-detail-benefits li::before {
    background: #eaf2ff !important;
    box-shadow: inset 0 0 0 8px #f4f8ff !important;
}

body:not(.wp-admin) .product-detail-benefits li::after {
    border-color: #0f5eff !important;
}

body:not(.wp-admin) .aboutx-link:hover,
body:not(.wp-admin) .contactx-link:hover,
body:not(.wp-admin) .product-detail-spec-grid div:focus-within,
body:not(.wp-admin) .price-faq details[open] {
    border-color: #8bb7ff !important;
    box-shadow: 0 18px 42px rgba(15, 94, 255, .1) !important;
}

body:not(.wp-admin) input:focus,
body:not(.wp-admin) textarea:focus,
body:not(.wp-admin) select:focus {
    border-color: #0f5eff !important;
    box-shadow: 0 0 0 4px rgba(15, 94, 255, .12) !important;
}

/* Single post professional article redesign. */
body.single-post {
    --article-primary: #0f5eff;
    --article-primary-dark: #071a34;
    --article-primary-soft: #eaf2ff;
    --article-border: #cfe0f6;
    --article-text: #101828;
    --article-muted: #5f728f;
    --article-panel: #ffffff;
    background: radial-gradient(circle at 10% 8%, rgba(15, 94, 255, .12), transparent 32%), linear-gradient(180deg, #f2f7ff 0%, #ffffff 36%, #f5f9ff 100%);
    color: var(--article-text);
}

body.single-post .page-hero,
body.single-post .breadcrumb-wrap {
    display: none !important;
}

body.single-post .single-content-wrap {
    padding: clamp(28px, 4vw, 58px) 0 72px !important;
    background: transparent !important;
}

body.single-post .single-post-layout,
body.single-post .single-content-wrap > .container {
    width: min(100% - 48px, 1580px) !important;
    max-width: none !important;
    display: block !important;
}

body.single-post .main-content-area {
    width: 100% !important;
    max-width: none !important;
}

body.single-post .tkg-article-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: center;
    padding: clamp(28px, 4.2vw, 64px);
    border: 1px solid var(--article-border);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(244,248,255,.94) 100%);
    box-shadow: 0 28px 80px rgba(11, 31, 68, .12);
    overflow: hidden;
}

body.single-post .tkg-article-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

body.single-post .tkg-article-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(15, 94, 255, .2);
    border-radius: 999px;
    background: var(--article-primary-soft);
    color: var(--article-primary);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

body.single-post .tkg-article-badge--muted {
    background: #fff;
    color: #344767;
}

body.single-post .tkg-article-title {
    margin: 0;
    max-width: 960px;
    color: var(--article-primary-dark);
    font-size: clamp(42px, 5.2vw, 78px);
    line-height: .98;
    letter-spacing: 0;
}

body.single-post .tkg-article-lead {
    max-width: 820px;
    margin: 22px 0 0;
    color: var(--article-muted);
    font-size: clamp(18px, 1.35vw, 23px);
    line-height: 1.72;
}

body.single-post .tkg-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

body.single-post .tkg-article-meta span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--article-border);
    color: #4b617f;
    font-size: 14px;
    font-weight: 700;
}

body.single-post .tkg-article-hero__media {
    min-height: 360px;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    overflow: hidden;
    background: #dbe8f7;
    box-shadow: 0 24px 54px rgba(11, 31, 68, .16);
}

body.single-post .tkg-article-hero__image,
body.single-post .tkg-article-hero__fallback {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

body.single-post .tkg-article-hero__fallback {
    background: linear-gradient(135deg, #dce8f7, #ffffff);
}

body.single-post .tkg-article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
    margin-top: 28px;
}

body.single-post .tkg-article-main {
    min-width: 0;
    border: 1px solid var(--article-border);
    border-radius: 26px;
    background: var(--article-panel);
    box-shadow: 0 22px 70px rgba(11, 31, 68, .09);
    overflow: hidden;
}

body.single-post .tkg-article-content {
    width: min(100% - 72px, 920px);
    margin: 0 auto;
    padding: 22px 0 54px;
    color: var(--article-text);
    font-size: 19px;
    line-height: 1.86;
}

body.single-post .tkg-article-content > *:first-child {
    margin-top: 0;
}

body.single-post .entry-content p {
    color: #344767;
    margin: 0 0 22px;
}

body.single-post .entry-content h2,
body.single-post .entry-content h3 {
    color: var(--article-primary-dark);
    line-height: 1.2;
    letter-spacing: 0;
}

body.single-post .entry-content h2 {
    position: relative;
    margin: 54px 0 18px;
    padding-top: 18px;
    font-size: clamp(30px, 2.7vw, 42px);
}

body.single-post .entry-content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 5px;
    border-radius: 999px;
    background: var(--article-primary);
}

body.single-post .entry-content h3 {
    margin: 36px 0 14px;
    font-size: clamp(23px, 2vw, 30px);
}

body.single-post .entry-content a {
    color: var(--article-primary);
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

body.single-post .entry-content ul,
body.single-post .entry-content ol {
    margin: 22px 0;
    padding-left: 0;
    list-style: none;
}

body.single-post .entry-content li {
    position: relative;
    margin: 12px 0;
    padding-left: 34px;
    color: #344767;
}

body.single-post .entry-content ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--article-primary);
    box-shadow: 0 0 0 7px rgba(15, 94, 255, .1);
}

body.single-post .entry-content ol {
    counter-reset: article-list;
}

body.single-post .entry-content ol > li {
    counter-increment: article-list;
}

body.single-post .entry-content ol > li::before {
    content: counter(article-list);
    position: absolute;
    left: 0;
    top: .2em;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: var(--article-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 22px;
    text-align: center;
}

body.single-post .entry-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--article-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(11, 31, 68, .08);
}

body.single-post .entry-content th,
body.single-post .entry-content td {
    padding: 16px 18px;
    border-bottom: 1px solid #e2ebf7;
    text-align: left;
    vertical-align: top;
}

body.single-post .entry-content th {
    background: #0b1f44;
    color: #fff;
    font-weight: 900;
}

body.single-post .entry-content tr:last-child th,
body.single-post .entry-content tr:last-child td {
    border-bottom: 0;
}

body.single-post .entry-content blockquote {
    margin: 34px 0;
    padding: 24px 28px;
    border-left: 5px solid var(--article-primary);
    border-radius: 18px;
    background: #f3f7ff;
    color: #24364f;
    font-size: 21px;
    font-weight: 700;
}

body.single-post .article-toc {
    width: min(100% - 72px, 920px);
    margin: 36px auto 10px !important;
    padding: 20px !important;
    border: 1px solid var(--article-border) !important;
    border-radius: 20px !important;
    background: #f7faff !important;
    box-shadow: none !important;
}

body.single-post .article-toc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

body.single-post .article-toc__eyebrow {
    color: var(--article-primary-dark) !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

body.single-post .article-toc__toggle {
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--article-primary) !important;
    color: #fff !important;
    font-weight: 900 !important;
}

body.single-post .article-toc__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 0 !important;
    padding: 0 !important;
}

body.single-post .article-toc__item {
    margin: 0 !important;
    list-style: none !important;
}

body.single-post .article-toc__item a {
    display: block;
    padding: 12px 14px !important;
    border: 1px solid #d9e7f7;
    border-radius: 14px;
    background: #fff;
    color: #24364f !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

body.single-post .article-toc__item a:hover {
    border-color: rgba(15, 94, 255, .35);
    color: var(--article-primary) !important;
}

body.single-post .tkg-article-side {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

body.single-post .tkg-article-sidebox {
    padding: 24px;
    border: 1px solid var(--article-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 58px rgba(11, 31, 68, .08);
}

body.single-post .tkg-article-sidebox h2 {
    margin: 0 0 12px;
    color: var(--article-primary-dark);
    font-size: 24px;
    line-height: 1.2;
}

body.single-post .tkg-article-sidebox p,
body.single-post .tkg-article-sidebox li {
    color: #526987;
    font-size: 16px;
    line-height: 1.65;
}

body.single-post .tkg-article-sidebox ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.single-post .tkg-article-sidebox li {
    padding: 12px 14px;
    border-radius: 14px;
    background: #f6f9ff;
}

body.single-post .tkg-article-sidebox--cta {
    background: linear-gradient(135deg, #071a34 0%, #0b3c96 62%, #0f5eff 100%);
    border-color: rgba(255,255,255,.22);
    color: #fff;
}

body.single-post .tkg-article-sidebox--cta span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

body.single-post .tkg-article-sidebox--cta h2,
body.single-post .tkg-article-sidebox--cta p {
    color: #fff;
}

body.single-post .tkg-article-sidebox--cta a,
body.single-post .tkg-article-sidebox--contact a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    border-radius: 14px;
    background: #fff;
    color: var(--article-primary);
    font-weight: 900;
    text-decoration: none;
}

body.single-post .tkg-article-sidebox--contact a {
    background: var(--article-primary);
    color: #fff;
}

body.single-post .tkg-article-footer {
    width: min(100% - 72px, 920px);
    margin: 0 auto;
    padding: 0 0 46px;
}

body.single-post .tkg-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 28px;
    border-top: 1px solid #e1eaf6;
}

body.single-post .tkg-article-tags span,
body.single-post .tkg-article-tags a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    background: #f2f6ff;
    color: var(--article-primary);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

body.single-post .tkg-article-related {
    margin-top: 30px;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--article-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 70px rgba(11, 31, 68, .08);
}

body.single-post .tkg-article-related__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

body.single-post .tkg-article-related__head span {
    color: var(--article-primary);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

body.single-post .tkg-article-related__head h2 {
    margin: 4px 0 0;
    color: var(--article-primary-dark);
    font-size: clamp(28px, 3vw, 42px);
}

body.single-post .tkg-article-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.single-post .tkg-related-card {
    overflow: hidden;
    border: 1px solid var(--article-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(11, 31, 68, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}

body.single-post .tkg-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(11, 31, 68, .13);
}

body.single-post .tkg-related-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #eaf2ff;
    overflow: hidden;
}

body.single-post .tkg-related-card__image,
body.single-post .tkg-related-card__fallback {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

body.single-post .tkg-related-card__fallback {
    background: linear-gradient(135deg, #dce8f7, #fff);
}

body.single-post .tkg-related-card__body {
    padding: 18px;
}

body.single-post .tkg-related-card__cat {
    color: var(--article-primary);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

body.single-post .tkg-related-card h3 {
    margin: 10px 0;
    font-size: 19px;
    line-height: 1.35;
}

body.single-post .tkg-related-card h3 a {
    color: var(--article-primary-dark);
    text-decoration: none;
}

body.single-post .tkg-related-card time {
    color: var(--article-muted);
    font-size: 14px;
}

@media (max-width: 1180px) {
    body.single-post .tkg-article-hero,
    body.single-post .tkg-article-shell {
        grid-template-columns: 1fr;
    }

    body.single-post .tkg-article-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.single-post .tkg-article-sidebox--cta {
        grid-column: 1 / -1;
    }

    body.single-post .tkg-article-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.single-post .single-post-layout,
    body.single-post .single-content-wrap > .container {
        width: min(100% - 24px, 100%) !important;
    }

    body.single-post .tkg-article-hero {
        padding: 22px;
        border-radius: 22px;
    }

    body.single-post .tkg-article-title {
        font-size: clamp(34px, 12vw, 48px);
    }

    body.single-post .tkg-article-hero__media {
        min-height: 220px;
        border-radius: 18px;
    }

    body.single-post .tkg-article-content,
    body.single-post .article-toc,
    body.single-post .tkg-article-footer {
        width: min(100% - 32px, 100%);
    }

    body.single-post .tkg-article-content {
        font-size: 17px;
        line-height: 1.78;
        padding-bottom: 38px;
    }

    body.single-post .article-toc__list,
    body.single-post .tkg-article-side,
    body.single-post .tkg-article-related__grid {
        grid-template-columns: 1fr;
    }
}
/* Unified header layout across all templates */
body:not(.wp-admin) .site-header {
    position: relative;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #dbe7f3;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

body:not(.wp-admin) .site-header-main {
    background: #ffffff !important;
}

body:not(.wp-admin) .site-header-main__inner {
    width: min(1540px, calc(100% - 56px));
    min-height: 96px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 310px minmax(0, 1fr) minmax(390px, auto);
    gap: 24px;
    align-items: center;
    padding: 0 !important;
}

body:not(.wp-admin) .site-logo--bitmap,
body:not(.wp-admin) .site-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

body:not(.wp-admin) .site-logo--bitmap .site-logo__image,
body:not(.wp-admin) .site-logo__image,
body:not(.wp-admin) .site-logo img {
    display: block;
    width: auto !important;
    height: 68px !important;
    max-width: 285px !important;
    object-fit: contain;
}

body:not(.wp-admin) .main-navigation {
    min-width: 0;
    justify-self: end;
}

body:not(.wp-admin) .main-navigation .menu,
body:not(.wp-admin) .main-navigation ul {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 1.5vw, 28px) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    flex-wrap: nowrap;
}

body:not(.wp-admin) .main-navigation .menu > li > a,
body:not(.wp-admin) .main-navigation a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 !important;
    color: #101827 !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1;
    white-space: nowrap;
}

body:not(.wp-admin) .main-navigation .menu > li > a:hover,
body:not(.wp-admin) .main-navigation .current-menu-item > a,
body:not(.wp-admin) .main-navigation .current-menu-ancestor > a,
body:not(.wp-admin) .main-navigation .current_page_item > a {
    color: #0f5eff !important;
}

body:not(.wp-admin) .main-navigation .menu > li > a::after {
    bottom: 0 !important;
    height: 3px !important;
    background: #0f5eff !important;
}

body:not(.wp-admin) .header-actions {
    justify-self: end;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

body:not(.wp-admin) .header-search {
    width: clamp(220px, 18vw, 310px);
    height: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50px;
    align-items: center;
    padding: 4px 5px 4px 18px;
    border: 1px solid #cfe0f5;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

body:not(.wp-admin) .header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #52657a;
    font-size: 15px;
    font-weight: 800;
}

body:not(.wp-admin) .header-search button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 11px;
    background: #0f5eff !important;
}

body:not(.wp-admin) .header-actions .button,
body:not(.wp-admin) .header-actions .button--primary {
    min-width: 178px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px !important;
    border-radius: 12px !important;
    background: #0f5eff !important;
    color: #ffffff !important;
    font-weight: 950 !important;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(15, 94, 255, .18) !important;
}

@media (max-width: 1240px) {
    body:not(.wp-admin) .site-header-main__inner {
        grid-template-columns: 260px minmax(0, 1fr) auto;
        gap: 16px;
    }

    body:not(.wp-admin) .site-logo--bitmap .site-logo__image,
    body:not(.wp-admin) .site-logo__image,
    body:not(.wp-admin) .site-logo img {
        height: 60px !important;
        max-width: 245px !important;
    }

    body:not(.wp-admin) .header-search {
        display: none !important;
    }

    body:not(.wp-admin) .header-actions .button,
    body:not(.wp-admin) .header-actions .button--primary {
        min-width: 150px;
    }
}

@media (max-width: 980px) {
    body:not(.wp-admin) .site-header-main__inner {
        width: min(100% - 28px, 1540px);
        min-height: 78px;
        grid-template-columns: 1fr auto;
    }

    body:not(.wp-admin) .main-navigation,
    body:not(.wp-admin) .header-actions {
        display: none !important;
    }

    body:not(.wp-admin) .menu-toggle {
        display: inline-flex !important;
    }
}

/* Breadcrumb contrast cleanup */
body:not(.wp-admin) .page-hero .breadcrumb-wrap,
body:not(.wp-admin) .breadcrumb-strip .breadcrumb-wrap {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    color: rgba(235, 244, 255, .92) !important;
    font-weight: 850 !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .22) !important;
}

body:not(.wp-admin) .page-hero .breadcrumb-wrap a,
body:not(.wp-admin) .breadcrumb-strip .breadcrumb-wrap a {
    color: rgba(221, 235, 255, .92) !important;
    opacity: 1 !important;
    text-decoration: none !important;
}

body:not(.wp-admin) .page-hero .breadcrumb-wrap a:hover,
body:not(.wp-admin) .breadcrumb-strip .breadcrumb-wrap a:hover {
    color: #ffffff !important;
}

body:not(.wp-admin) .page-hero .breadcrumb-wrap span,
body:not(.wp-admin) .breadcrumb-strip .breadcrumb-wrap span {
    color: #ffffff !important;
    opacity: 1 !important;
}

body:not(.wp-admin) .page-hero .breadcrumb-wrap .breadcrumb-sep,
body:not(.wp-admin) .breadcrumb-strip .breadcrumb-wrap .breadcrumb-sep {
    color: rgba(255, 255, 255, .66) !important;
    font-weight: 900 !important;
}

/* Product category SEO and compact quote refresh */
body.tax-product_cat .product-category-content-section {
    padding: 34px 0 18px !important;
    background: #f8fbff !important;
}

body.tax-product_cat .product-category-content-section .container {
    display: grid;
    gap: 18px;
}

body.tax-product_cat .product-category-seo {
    margin: 0 !important;
    padding: 26px !important;
    border: 1px solid #d7e5f7 !important;
    border-radius: 22px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .94)) padding-box,
        linear-gradient(135deg, rgba(15, 94, 255, .28), rgba(17, 185, 129, .16)) border-box !important;
    box-shadow: 0 20px 54px rgba(15, 23, 42, .07) !important;
}

body.tax-product_cat .product-category-seo .section-eyebrow {
    margin-bottom: 12px;
}

body.tax-product_cat .product-category-seo .seo-panel h2,
body.tax-product_cat .product-category-faq h2 {
    color: #0f172a !important;
    letter-spacing: 0 !important;
}

body.tax-product_cat .product-category-seo .seo-panel p,
body.tax-product_cat .product-category-faq p {
    color: #40516b !important;
}

body.tax-product_cat .seo-copy-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.tax-product_cat .seo-copy-block {
    padding: 18px;
    border: 1px solid #dbe8f5;
    border-radius: 16px;
    background: #ffffff;
}

body.tax-product_cat .seo-checklist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.tax-product_cat .seo-checklist li {
    align-items: flex-start;
    padding: 14px;
    border: 1px solid #dbe8f5;
    border-radius: 15px;
    background: #ffffff;
    color: #1f2f46;
    font-weight: 750;
}

body.tax-product_cat .seo-checklist li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 999px;
    background: #0f5eff;
    clip-path: polygon(45% 70%, 82% 22%, 100% 36%, 48% 88%, 16% 58%, 30% 44%);
}

body.tax-product_cat .category-read-more {
    min-height: 44px !important;
    margin-top: 18px !important;
    padding: 0 22px !important;
    border-color: rgba(15, 94, 255, .28) !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f5eff, #0952d8) !important;
    box-shadow: 0 12px 28px rgba(15, 94, 255, .18) !important;
}

body.tax-product_cat .product-category-faq {
    margin: 0 !important;
    padding: 24px !important;
    border-color: #d7e5f7 !important;
    border-radius: 22px !important;
    background: #ffffff !important;
}

body.tax-product_cat .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.tax-product_cat .faq-list details {
    border-color: #dbe8f5;
    border-radius: 15px;
    background: #f8fbff;
}

body.tax-product_cat .faq-list summary {
    color: #0f172a;
    line-height: 1.35;
}

body.tax-product_cat .product-quote-section {
    padding: 30px 0 46px !important;
    background: #f8fbff !important;
}

body.tax-product_cat .product-quote-section .cta-banner-inline {
    display: grid !important;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr) !important;
    gap: 24px !important;
    align-items: center !important;
    padding: 24px !important;
    border: 1px solid rgba(191, 219, 254, .55) !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at 92% 8%, rgba(17, 185, 129, .24), transparent 28%),
        linear-gradient(135deg, #0b1f3f 0%, #0f4fc8 56%, #1464ff 100%) !important;
    box-shadow: 0 22px 58px rgba(15, 23, 42, .14) !important;
}

body.tax-product_cat .product-quote-section .cta-banner-inline__content {
    min-width: 0;
}

body.tax-product_cat .product-quote-section .section-eyebrow {
    color: #0f5eff;
    background: #ffffff;
}

body.tax-product_cat .product-quote-section .cta-banner-inline h2 {
    max-width: 560px;
    margin: 10px 0 8px;
    color: #ffffff !important;
    font-size: clamp(26px, 2.6vw, 38px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
}

body.tax-product_cat .product-quote-section .cta-banner-inline p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .84) !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
}

body.tax-product_cat .product-quote-section .quote-form-mini {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 14px !important;
    border: 1px solid rgba(255, 255, 255, .28) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .12) !important;
}

body.tax-product_cat .product-quote-section .quote-form-mini input,
body.tax-product_cat .product-quote-section .quote-form-mini__file {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d5e3f2;
    border-radius: 13px;
    color: #0f172a;
    background: #ffffff;
    font: inherit;
    font-weight: 750;
}

body.tax-product_cat .product-quote-section .quote-form-mini input {
    padding: 0 13px;
}

body.tax-product_cat .product-quote-section .quote-form-mini input::placeholder {
    color: #64748b;
}

body.tax-product_cat .product-quote-section .quote-form-mini__file {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 7px 10px;
    overflow: hidden;
    background: #f8fbff;
}

body.tax-product_cat .product-quote-section .quote-form-mini__file span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: #0f5eff;
    background: #eaf2ff;
    font-size: 13px;
    font-weight: 900;
}

body.tax-product_cat .product-quote-section .quote-form-mini__file input {
    min-height: auto;
    padding: 0;
    border: 0;
    color: #64748b;
    background: transparent;
    font-size: 13px;
}

body.tax-product_cat .product-quote-section .quote-form-mini__file input::file-selector-button {
    margin-right: 10px;
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    color: #ffffff;
    background: #0f5eff;
    font-weight: 850;
    cursor: pointer;
}

body.tax-product_cat .product-quote-section .quote-form-mini button {
    grid-column: span 2;
    min-height: 46px !important;
    border-radius: 13px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f5eff, #0952d8) !important;
    box-shadow: 0 12px 24px rgba(15, 94, 255, .2) !important;
}

body.post-type-archive-product .inox-product-card__commerce,
body.tax-product_cat .inox-product-card__commerce,
.product-detail-related .inox-product-card__commerce,
.home-featured-products .inox-product-card__commerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

body.post-type-archive-product .inox-product-card__commerce .inox-product-card__meta,
body.tax-product_cat .inox-product-card__commerce .inox-product-card__meta,
.product-detail-related .inox-product-card__commerce .inox-product-card__meta,
.home-featured-products .inox-product-card__commerce .inox-product-card__meta {
    min-width: 0;
    margin: 0 !important;
}

body.post-type-archive-product .inox-product-card__commerce .inox-product-card__price,
body.tax-product_cat .inox-product-card__commerce .inox-product-card__price,
.product-detail-related .inox-product-card__commerce .inox-product-card__price,
.home-featured-products .inox-product-card__commerce .inox-product-card__price {
    justify-self: end;
    margin: 0 !important;
    padding: 8px 12px;
    border: 1px solid rgba(15, 94, 255, .18);
    border-radius: 999px;
    color: #0f5eff !important;
    background: #eef6ff;
    font-size: 17px !important;
    line-height: 1.1;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    body.tax-product_cat .product-quote-section .cta-banner-inline {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 760px) {
    body.tax-product_cat .seo-copy-sections,
    body.tax-product_cat .seo-checklist,
    body.tax-product_cat .faq-list,
    body.tax-product_cat .product-quote-section .quote-form-mini {
        grid-template-columns: 1fr !important;
    }

    body.tax-product_cat .product-quote-section .quote-form-mini__file,
    body.tax-product_cat .product-quote-section .quote-form-mini button {
        grid-column: auto;
    }

    body.post-type-archive-product .inox-product-card__commerce,
    body.tax-product_cat .inox-product-card__commerce,
    .product-detail-related .inox-product-card__commerce,
    .home-featured-products .inox-product-card__commerce {
        grid-template-columns: 1fr;
    }

    body.post-type-archive-product .inox-product-card__commerce .inox-product-card__price,
    body.tax-product_cat .inox-product-card__commerce .inox-product-card__price,
    .product-detail-related .inox-product-card__commerce .inox-product-card__price,
    .home-featured-products .inox-product-card__commerce .inox-product-card__price {
        justify-self: start;
    }

    body.tax-product_cat .product-quote-section .cta-banner-inline,
    body.tax-product_cat .product-category-seo,
    body.tax-product_cat .product-category-faq {
        padding: 18px !important;
        border-radius: 18px !important;
    }
}
