:root {
    --bg: #f6f8fc;
    --surface: #ffffff;
    --surface-2: #eef3fb;
    --surface-dark: #0d1828;
    --text: #0d1828;
    --muted: #5f6d83;
    --heading: #081222;
    --border: rgba(12, 23, 43, 0.1);
    --primary: #0b57d0;
    --primary-2: #09a7b0;
    --primary-rgb: 11, 87, 208;
    --accent: #ebf4ff;
    --success: #1ba46c;
    --warning: #f2a531;
    --shadow-sm: 0 18px 44px rgba(9, 22, 44, 0.08);
    --shadow-lg: 0 30px 80px rgba(8, 18, 34, 0.12);
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --header-bg: rgba(255, 255, 255, 0.94);
    --footer-bg: #081222;
    --footer-text: rgba(255, 255, 255, 0.76);
    --surface-light-text: #0d1828;
    --surface-light-muted: #5f6d83;
    --surface-light-heading: #081222;
    --surface-light-border: rgba(12, 23, 43, 0.14);
    --text-color: var(--surface-light-heading);
    --muted-text: var(--surface-light-muted);
    --brand-color: var(--primary);
}

/* Premium polish system */
html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.08), transparent 22%),
        linear-gradient(180deg, #f7f8fb 0%, #f3f6fb 32%, #eef3f9 100%);
}

.page-shell {
    overflow: clip;
}

main {
    position: relative;
}

.reveal-ready {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Keep catalog content visible even if reveal motion misfires on dense grids */
.catalog-page .catalog-sidebar-card.reveal-ready,
.catalog-page .catalog-panel.reveal-ready,
.catalog-page .catalog-family-card.reveal-ready,
.catalog-page .catalog-product-card.reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
}

.site-header {
    backdrop-filter: blur(22px);
}

.header-topbar {
    background:
        linear-gradient(90deg, #07111f 0%, #68192f 58%, #c7848d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
    padding: 0.72rem 0;
}

.header-topbar a,
.topbar-copy span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.header-topbar a:hover {
    color: #fff;
}

.main-navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 14px 38px rgba(8, 18, 34, 0.05);
}

.site-header.is-scrolled .main-navbar {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 48px rgba(8, 18, 34, 0.09);
}

.main-navbar .container {
    min-height: 82px;
    gap: 1.15rem;
}

.navbar-brand img {
    width: 212px;
}

.brand-logo-frame {
    min-height: 72px;
    padding: 0.55rem 1rem;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 14px 32px rgba(8, 18, 34, 0.08);
}

.navbar-nav {
    gap: 0.25rem;
}

.nav-link,
.nav-link-button {
    padding: 1rem 0.9rem;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.nav-link:not(.active):not(:hover),
.nav-link-button:not(.active):not(:hover) {
    color: rgba(8, 18, 34, 0.8);
}

.nav-link:hover,
.nav-link-button:hover {
    color: var(--heading);
}

.nav-link::before,
.nav-link-button::before {
    content: '';
    position: absolute;
    inset: 0.48rem 0.42rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.06);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link-button:hover::before,
.nav-link.active::before,
.nav-link-button.active::before {
    opacity: 1;
}

.nav-link.active::after {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.35rem;
    height: 2px;
}

.header-buttons .btn {
    min-height: 50px;
    padding: 0.84rem 1.2rem;
    border-radius: 18px;
    font-size: 0.92rem;
}

.btn {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-brand {
    box-shadow: 0 16px 30px rgba(var(--primary-rgb), 0.18);
}

.btn-outline-brand {
    backdrop-filter: blur(10px);
}

.mega-menu-panel {
    top: calc(100% + 16px);
}

.mega-menu-shell {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.35rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 249, 253, 0.98));
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 34px 70px rgba(8, 18, 34, 0.16);
}

.mega-menu-lead {
    padding: 1.35rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.12), transparent 45%),
        linear-gradient(180deg, #f7f9fc, #eef3f9);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.mega-menu-lead h3 {
    font-size: 1.55rem;
    line-height: 1.15;
}

.mega-menu-group {
    display: grid;
    gap: 0.9rem;
}

.mega-menu-group-link {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.15rem 0;
}

.mega-menu-group-grid {
    gap: 0.85rem;
}

.mega-menu-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 16px 34px rgba(8, 18, 34, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mega-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(8, 18, 34, 0.1);
    border-color: rgba(var(--primary-rgb), 0.22);
}

.mega-menu-card-media {
    display: block;
    aspect-ratio: 5 / 3.4;
    overflow: hidden;
    background: #edf2f8;
}

.mega-menu-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-card-body {
    padding: 0.95rem 1rem 1rem;
}

.offcanvas {
    border-left: 1px solid rgba(12, 23, 43, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.98));
}

.offcanvas-header {
    align-items: flex-start;
    padding: 1.1rem 1.1rem 0.9rem;
    border-bottom: 1px solid rgba(12, 23, 43, 0.08);
}

.offcanvas-brand-block {
    display: grid;
    gap: 0.75rem;
}

.offcanvas-brand-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.7rem;
    min-height: 60px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 12px 26px rgba(8, 18, 34, 0.08);
}

.offcanvas-brand-frame img {
    width: 170px;
    max-width: 100%;
    height: auto;
}

.offcanvas-tagline {
    max-width: 26ch;
    color: var(--surface-light-muted);
    font-size: 0.85rem;
}

.offcanvas-body .list-group-item {
    padding-block: 1rem;
    border-inline: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(12, 23, 43, 0.08);
    background: transparent;
    font-weight: 700;
}

.mobile-mega-card {
    padding: 0.75rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 12px 28px rgba(8, 18, 34, 0.05);
}

.home-trust-band {
    padding: 0 0 24px;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-trust-item {
    padding: 1.25rem 1.35rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 16px 36px rgba(8, 18, 34, 0.06);
}

.home-trust-label,
.about-stat-card span,
.product-fact-card span,
.contact-trust-item span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--surface-light-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-trust-item strong,
.about-stat-card strong,
.contact-trust-item strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--surface-light-heading);
    font-family: 'Sora', sans-serif;
    font-size: 1.55rem;
    line-height: 1;
}

.home-trust-item p {
    margin-bottom: 0;
    color: var(--surface-light-muted);
    font-size: 0.94rem;
}

.section-space {
    padding: clamp(72px, 9vw, 108px) 0;
}

.section-muted {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(241, 245, 251, 0.96));
}

.section-heading {
    margin-bottom: clamp(1.35rem, 2.8vw, 2.2rem);
}

.section-heading h2 {
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.section-heading p,
.banner-content p,
.content-block,
.product-card-body p,
.catalog-product-body p,
.contact-card p,
.contact-side-panel p,
.product-summary-lead {
    color: var(--surface-light-muted);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-card,
.mission-card,
.contact-card,
.contact-side-panel,
.inquiry-form-card,
.product-summary-card,
.filter-panel,
.empty-state,
.about-visual-panel,
.testimonial-card,
.team-card,
.cta-panel,
.about-stat-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.96));
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 20px 44px rgba(8, 18, 34, 0.08);
}

.feature-card,
.mission-card,
.contact-card,
.contact-side-panel,
.inquiry-form-card,
.product-summary-card,
.testimonial-card,
.team-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.mission-card:hover,
.contact-card:hover,
.product-card:hover,
.testimonial-card:hover,
.team-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 54px rgba(8, 18, 34, 0.12);
    border-color: rgba(var(--primary-rgb), 0.16);
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.about-stat-card {
    padding: 1rem 1.1rem;
    border-radius: 22px;
}

.about-stat-card strong {
    font-size: 1.25rem;
    line-height: 1.1;
}

.about-visual-panel {
    overflow: hidden;
    min-height: 100%;
}

.about-visual-panel img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.content-page .page-banner,
.catalog-page .page-banner,
.page-banner {
    position: relative;
    overflow: hidden;
    padding: 94px 0 52px;
    background:
        radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(245, 248, 252, 0.96));
    border-bottom: 1px solid rgba(12, 23, 43, 0.06);
}

.page-banner::before,
.page-banner::after {
    content: '';
    position: absolute;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
}

.page-banner::before {
    top: 26px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12), transparent 68%);
}

.page-banner::after {
    bottom: -130px;
    left: -70px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(104, 25, 47, 0.12), transparent 70%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.banner-content {
    max-width: 860px;
}

.banner-content h1 {
    margin-top: 1.15rem;
    font-size: clamp(2.8rem, 5.6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.banner-content p {
    max-width: 62ch;
    font-size: 1.04rem;
}

.breadcrumb {
    gap: 0.35rem;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(12, 23, 43, 0.08);
    backdrop-filter: blur(14px);
}

.contact-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.contact-trust-item {
    padding: 1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 16px 34px rgba(8, 18, 34, 0.05);
}

.contact-trust-item strong {
    font-size: 1.28rem;
}

.contact-side-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.product-gallery {
    position: sticky;
    top: 132px;
    display: grid;
    gap: 1rem;
}

.product-gallery-main {
    display: grid;
    place-items: center;
    padding: 1.4rem;
    min-height: 560px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff, #f4f7fb);
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 22px 48px rgba(8, 18, 34, 0.08);
}

.product-gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.product-thumbnails {
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    gap: 0.75rem;
}

.product-thumb {
    padding: 0.45rem;
    border-radius: 20px;
    border: 1px solid rgba(12, 23, 43, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 28px rgba(8, 18, 34, 0.05);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-thumb.active,
.product-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.28);
    box-shadow: 0 18px 34px rgba(8, 18, 34, 0.08);
}

.product-summary-card {
    position: sticky;
    top: 132px;
    display: grid;
    gap: 1rem;
}

.product-summary-card h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.product-summary-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-summary-points div,
.product-fact-card,
.product-spec-preview-item {
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(12, 23, 43, 0.08);
}

.product-summary-points strong,
.product-fact-card strong,
.product-spec-preview-item strong {
    color: var(--surface-light-heading);
}

.product-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-fact-card strong {
    display: block;
    line-height: 1.25;
}

.product-spec-preview {
    display: grid;
    gap: 0.7rem;
}

.product-spec-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.product-spec-preview-item span {
    color: var(--surface-light-muted);
    font-size: 0.9rem;
}

.product-tabs-wrap {
    padding: 1.2rem;
    border-radius: 32px;
    border: 1px solid rgba(12, 23, 43, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.96));
    box-shadow: 0 18px 42px rgba(8, 18, 34, 0.07);
}

.product-tabs-nav {
    gap: 0.65rem;
}

.product-tabs-nav .nav-link {
    padding: 0.86rem 1.15rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--surface-light-heading);
}

.product-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.16), rgba(var(--primary-rgb), 0.1));
    color: var(--primary);
}

.product-tab-content {
    padding-top: 1.35rem;
}

.product-inquiry-benefits {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.product-inquiry-benefits span {
    display: inline-flex;
    align-items: start;
    gap: 0.55rem;
    color: var(--surface-light-muted);
}

.product-inquiry-benefits i {
    color: var(--success);
    margin-top: 0.1rem;
}

.catalog-banner {
    position: relative;
    overflow: hidden;
}

.catalog-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 13, 24, 0.06), rgba(7, 13, 24, 0.34));
    pointer-events: none;
}

.catalog-banner .container {
    position: relative;
    z-index: 1;
}

.catalog-banner-shell {
    min-height: 420px;
    padding: clamp(1.8rem, 3.5vw, 2.4rem);
    border-radius: 34px;
    box-shadow: 0 28px 62px rgba(8, 18, 34, 0.12);
}

.catalog-sidebar {
    top: 132px;
}

.catalog-sidebar-card,
.catalog-panel,
.catalog-product-card {
    border-radius: 30px;
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 22px 48px rgba(8, 18, 34, 0.08);
}

.catalog-family-link-item,
.catalog-context-pill,
.catalog-results-summary,
.catalog-banner-link {
    border-radius: 18px;
}

.catalog-family-card {
    min-height: 310px;
}

.catalog-product-card {
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.catalog-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(8, 18, 34, 0.12);
    border-color: rgba(var(--primary-rgb), 0.16);
}

.catalog-product-media {
    background: linear-gradient(180deg, #fbfcfe, #edf2f7);
}

.catalog-product-body h3 {
    font-size: 1.16rem;
    line-height: 1.25;
}

.blog-page .blog-card,
.blog-page .blog-sidebar-card,
.blog-page .blog-article,
.achievements-page .achievement-highlight-card,
.achievements-page .achievement-photo-card {
    border-radius: 28px;
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 20px 42px rgba(8, 18, 34, 0.08);
}

.blog-page .blog-card-media,
.achievements-page .achievement-highlight-media {
    background: linear-gradient(180deg, #fff, #f2f6fb);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #07111f 0%, #111c2a 50%, #3f1224 100%);
    padding: 0 0 28px;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
        radial-gradient(circle at bottom left, rgba(var(--primary-rgb), 0.16), transparent 22%);
    pointer-events: none;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.footer-cta {
    padding: 2rem 2.15rem;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(165, 21, 53, 0.88), rgba(101, 12, 37, 0.94)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.footer-main {
    padding: 2.4rem 0 2rem;
}

.footer-brand p,
.footer-links a,
.footer-links span,
.site-footer p {
    color: rgba(255, 255, 255, 0.76);
}

.footer-brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.15rem;
}

.footer-brand-pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.58rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
}

.footer-brand-pills strong {
    color: #fff;
    font-size: 0.94rem;
}

.footer-catalog-links {
    display: grid;
    gap: 0.7rem;
}

.footer-catalog-links li {
    list-style: none;
}

.footer-catalog-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.footer-catalog-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.footer-catalog-links small {
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.footer-social-heading {
    margin-top: 1.3rem;
}

.footer-resource-card {
    margin-top: 1.2rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-resource-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-weight: 700;
}

.footer-resource-card p {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

.footer-bottom {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1199.98px) {
    .main-navbar .container {
        min-height: 76px;
    }

    .navbar-nav {
        gap: 0;
    }

    .home-trust-grid,
    .contact-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-gallery,
    .product-summary-card,
    .catalog-sidebar {
        position: static;
    }

    .product-gallery-main {
        min-height: 460px;
    }

    .product-gallery-main img {
        height: 400px;
    }

    .mega-menu-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .banner-content h1,
    .section-heading h2,
    .product-summary-card h2 {
        letter-spacing: -0.04em;
    }

    .product-summary-points,
    .product-fact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-cta,
    .cta-panel {
        padding: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .header-topbar {
        display: none;
    }

    .main-navbar .container {
        min-height: 70px;
    }

    .navbar-brand img {
        width: 176px;
    }

    .brand-logo-frame {
        min-height: 60px;
        padding: 0.45rem 0.75rem;
    }

    .home-trust-grid,
    .contact-trust-strip,
    .about-stat-grid,
    .product-summary-points,
    .product-fact-grid {
        grid-template-columns: 1fr;
    }

    .page-banner,
    .content-page .page-banner,
    .catalog-page .page-banner {
        padding: 72px 0 44px;
    }

    .banner-content h1 {
        font-size: clamp(2.3rem, 10vw, 3.2rem);
    }

    .product-gallery-main {
        min-height: 320px;
        padding: 1rem;
        border-radius: 24px;
    }

    .product-gallery-main img {
        height: 300px;
    }

    .product-spec-preview-item {
        flex-direction: column;
        gap: 0.35rem;
    }

    .catalog-banner-shell,
    .footer-cta {
        border-radius: 26px;
    }

    .footer-main {
        padding-top: 2rem;
    }
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    gap: 2rem;
}

.blog-layout-article {
    align-items: start;
}

.blog-filter-panel {
    margin-bottom: 1.5rem;
}

.blog-intro-block {
    margin-bottom: 1.5rem;
}

.blog-card,
.blog-sidebar-card,
.blog-article {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
    color: var(--surface-light-text);
    --btn-brand-color: #fff;
    --btn-brand-hover-color: #fff;
    --btn-outline-bg: rgba(var(--primary-rgb), 0.08);
    --btn-outline-border: rgba(var(--primary-rgb), 0.2);
    --btn-outline-color: var(--surface-light-heading);
    --btn-outline-hover-bg: rgba(var(--primary-rgb), 0.12);
    --btn-outline-hover-border: rgba(var(--primary-rgb), 0.34);
    --btn-outline-hover-color: var(--surface-light-heading);
}

.blog-card {
    overflow: hidden;
    height: 100%;
}

.blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #fff;
}

.blog-card-media img,
.blog-gallery-card img,
.blog-mini-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.blog-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
}

.blog-card-media img {
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-body h2,
.blog-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.blog-card-body h2 a,
.blog-card-body h3 a {
    color: var(--surface-light-heading);
    text-decoration: none;
}

.blog-card-body p {
    color: var(--surface-light-muted);
    margin-bottom: 1rem;
}

.blog-card-meta,
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1rem;
    color: var(--surface-light-muted);
    font-size: 0.94rem;
}

.blog-card-meta span,
.blog-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.blog-sidebar {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.blog-sidebar-card {
    padding: 1.5rem;
}

.blog-sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--surface-light-heading);
}

.blog-sidebar-card p,
.blog-article-footer p {
    color: var(--surface-light-muted);
}

.achievements-banner {
    background:
        radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.18), transparent 34%),
        linear-gradient(180deg, rgba(var(--primary-rgb), 0.08), rgba(255, 255, 255, 0)),
        var(--bg);
}

.achievements-copy {
    padding: 1.5rem 1.65rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(8, 18, 34, 0.08);
    color: var(--surface-light-text);
}

.achievements-copy p:last-child {
    margin-bottom: 0;
}

.achievement-highlight-card {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 54px rgba(8, 18, 34, 0.12);
}

.achievement-highlight-media {
    background: #fff;
}

.achievement-highlight-media img {
    width: 100%;
    display: block;
    background: #fff;
}

.achievement-highlight-caption {
    display: grid;
    gap: 0.35rem;
    padding: 1.2rem 1.3rem 1.35rem;
    color: var(--surface-light-text);
}

.achievement-highlight-caption strong {
    color: var(--surface-light-heading);
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
}

.achievement-highlight-caption span {
    color: var(--surface-light-muted);
}

.achievement-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "card1 card2"
        "card1 card3"
        "card4 card3";
    gap: 1rem;
    min-height: 540px;
}

.achievement-mosaic-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 170px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 48px rgba(8, 18, 34, 0.12);
}

.achievement-mosaic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 11, 20, 0.04), rgba(6, 11, 20, 0.7));
}

.achievement-mosaic-card-1 {
    grid-area: card1;
}

.achievement-mosaic-card-2 {
    grid-area: card2;
}

.achievement-mosaic-card-3 {
    grid-area: card3;
}

.achievement-mosaic-card-4 {
    grid-area: card4;
}

.achievement-mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
}

.achievement-mosaic-overlay {
    position: absolute;
    inset: auto 1rem 1rem;
    z-index: 1;
    display: grid;
    gap: 0.3rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(9, 18, 33, 0.58);
    backdrop-filter: blur(14px);
    color: #fff;
}

.achievement-mosaic-overlay strong {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.achievement-mosaic-overlay span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
}

.achievement-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.achievement-stat-card,
.achievement-timeline-card,
.achievement-photo-card,
.achievement-video-card,
.achievement-empty-media {
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 38px rgba(8, 18, 34, 0.08);
}

.achievement-stat-card {
    padding: 1.4rem 1.45rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--surface-light-text);
}

.achievement-stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--surface-light-heading);
}

.achievement-stat-card span {
    display: block;
    font-weight: 800;
    color: var(--surface-light-heading);
}

.achievement-stat-card small {
    display: block;
    margin-top: 0.4rem;
    color: var(--surface-light-muted);
}

.achievement-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.achievement-timeline-card {
    position: relative;
    height: 100%;
    padding: 1.6rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.14), transparent 44%);
    color: var(--surface-light-text);
    overflow: hidden;
}

.achievement-timeline-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
}

.achievement-timeline-year {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.achievement-timeline-card h3,
.achievement-video-body h3 {
    color: var(--surface-light-heading);
    font-size: 1.18rem;
}

.achievement-timeline-card p,
.achievement-video-body p {
    color: var(--surface-light-muted);
    margin-bottom: 0;
}

.achievement-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.achievement-gallery-grid-award {
    align-items: start;
}

.achievement-photo-card,
.achievement-video-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.96);
    color: var(--surface-light-text);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.achievement-photo-card:hover,
.achievement-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(8, 18, 34, 0.12);
}

.achievement-photo-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #fff;
    padding: 1rem;
}

.achievement-gallery-grid-award .achievement-photo-card img {
    aspect-ratio: auto;
    object-fit: cover;
    padding: 0;
}

.achievement-photo-content,
.achievement-video-body {
    display: grid;
    gap: 0.35rem;
    padding: 1.2rem 1.25rem 1.3rem;
}

.achievement-photo-content strong,
.achievement-video-body h3 {
    color: var(--surface-light-heading);
}

.achievement-photo-content small {
    color: var(--surface-light-muted);
}

.achievement-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.achievement-video-media {
    background: #fff;
    padding: 0.9rem;
}

.achievement-video-media .ratio,
.achievement-video-media video {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.achievement-video-media iframe,
.achievement-video-media video {
    border: 0;
}

.achievement-empty-media {
    padding: 2.4rem 1.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    color: var(--surface-light-text);
}

.achievement-empty-media .feature-icon {
    margin-bottom: 1rem;
}

.achievement-empty-media h3 {
    color: var(--surface-light-heading);
    font-size: 1.3rem;
}

.achievement-empty-media p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--surface-light-muted);
}

.achievement-empty-media-compact {
    min-height: 320px;
    display: grid;
    place-items: center;
    align-content: center;
}

.blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.blog-tag-list-article {
    margin: 1.5rem 0;
}

.blog-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    background: rgba(11, 87, 208, 0.08);
    border: 1px solid rgba(11, 87, 208, 0.12);
}

.blog-tag-pill.active,
.blog-tag-pill:hover {
    background: var(--primary);
    color: #fff;
}

.blog-mini-list {
    display: grid;
    gap: 0.95rem;
}

.blog-mini-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    text-decoration: none;
    color: var(--surface-light-text);
}

.blog-mini-item img {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    padding: 0.45rem;
}

.blog-mini-item strong {
    display: block;
    line-height: 1.4;
    color: var(--surface-light-heading);
}

.blog-mini-item span {
    color: var(--surface-light-muted);
    font-size: 0.9rem;
}

.blog-article {
    padding: 1.8rem;
}

.blog-article-hero {
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 0.5rem;
}

.blog-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-gallery-card {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
}

.blog-content {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--surface-light-text);
}

.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    font-family: 'Sora', sans-serif;
    color: var(--surface-light-heading);
}

.blog-content h2 {
    font-size: 1.65rem;
}

.blog-content h3 {
    font-size: 1.2rem;
}

.blog-content p,
.blog-content ul,
.blog-content ol,
.blog-content blockquote,
.blog-content table {
    margin-bottom: 1rem;
    color: var(--surface-light-text);
}

.blog-content a {
    color: var(--primary);
    font-weight: 700;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.blog-content table {
    width: 100%;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.blog-content table th,
.blog-content table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-content table tr:last-child th,
.blog-content table tr:last-child td {
    border-bottom: 0;
}

.blog-content table th {
    width: 35%;
    background: rgba(15, 23, 42, 0.04);
    font-weight: 800;
    color: var(--surface-light-heading);
}

.blog-content blockquote {
    padding: 1.2rem 1.4rem;
    border-left: 4px solid var(--brand-color);
    background: rgba(15, 23, 42, 0.04);
    border-radius: 18px;
}

.blog-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.blog-meta-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--surface-light-muted);
}

.blog-meta-list strong {
    color: var(--surface-light-heading);
}

.blog-article-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-article-footer strong {
    color: var(--surface-light-heading);
}

.related-blog-block {
    margin-top: 2.5rem;
}

@media (max-width: 1199px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .blog-card-body,
    .blog-sidebar-card,
    .blog-article {
        padding: 1.15rem;
    }

    .blog-content h2 {
        font-size: 1.4rem;
    }

    .blog-card-body h2,
    .blog-card-body h3 {
        font-size: 1.2rem;
    }

    .blog-mini-item {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .category-catalog-note {
        align-items: flex-start;
    }

    .category-catalog-note .hero-actions {
        width: 100%;
    }

    .category-catalog-note .btn {
        width: 100%;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    --btn-radius: 999px;
    --btn-padding-y: 0.9rem;
    --btn-padding-x: 1.35rem;
    --btn-font-weight: 800;
    --btn-letter-spacing: 0;
    --btn-text-transform: none;
    --btn-border-width: 1px;
    --btn-hover-transform: translateY(-1px);
    --btn-brand-bg: linear-gradient(135deg, var(--primary), var(--primary-2));
    --btn-brand-border: transparent;
    --btn-brand-color: #fff;
    --btn-brand-hover-bg: linear-gradient(135deg, var(--primary), var(--primary-2));
    --btn-brand-hover-border: transparent;
    --btn-brand-hover-color: #fff;
    --btn-brand-shadow: 0 14px 32px rgba(var(--primary-rgb), 0.28);
    --btn-brand-hover-shadow: 0 18px 36px rgba(var(--primary-rgb), 0.3);
    --btn-outline-bg: rgba(255, 255, 255, 0.72);
    --btn-outline-border: rgba(var(--primary-rgb), 0.2);
    --btn-outline-color: var(--heading);
    --btn-outline-shadow: none;
    --btn-outline-hover-bg: rgba(var(--primary-rgb), 0.06);
    --btn-outline-hover-border: var(--primary);
    --btn-outline-hover-color: var(--primary);
    --btn-outline-hover-shadow: none;
    background:
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(var(--primary-rgb), 0.08), transparent 34%),
        var(--bg);
    line-height: 1.7;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    color: var(--heading);
    line-height: 1.15;
    margin: 0 0 0.85rem;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.page-shell {
    min-height: 100vh;
    overflow: clip;
}

.section-space {
    padding: 96px 0;
}

.section-muted {
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.04), rgba(var(--primary-rgb), 0));
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.section-heading.narrow,
.banner-content.narrow {
    max-width: 720px;
    margin-inline: auto;
}

.btn {
    border-radius: var(--btn-radius);
    font-weight: var(--btn-font-weight);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    border-width: var(--btn-border-width);
    letter-spacing: var(--btn-letter-spacing);
    text-transform: var(--btn-text-transform);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-brand {
    background: var(--btn-brand-bg);
    border-color: var(--btn-brand-border);
    color: var(--btn-brand-color);
    box-shadow: var(--btn-brand-shadow);
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--btn-brand-hover-bg);
    border-color: var(--btn-brand-hover-border);
    color: var(--btn-brand-hover-color);
    transform: var(--btn-hover-transform);
    box-shadow: var(--btn-brand-hover-shadow);
}

.btn-outline-brand {
    border-color: var(--btn-outline-border);
    color: var(--btn-outline-color);
    background: var(--btn-outline-bg);
    box-shadow: var(--btn-outline-shadow);
    backdrop-filter: blur(12px);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: var(--btn-outline-hover-bg);
    border-color: var(--btn-outline-hover-border);
    color: var(--btn-outline-hover-color);
    transform: var(--btn-hover-transform);
    box-shadow: var(--btn-outline-hover-shadow);
}

body.button-style-soft {
    --btn-radius: 18px;
    --btn-brand-bg: linear-gradient(135deg, rgba(var(--primary-rgb), 0.95), rgba(var(--primary-rgb), 0.72));
    --btn-brand-shadow: 0 18px 34px rgba(var(--primary-rgb), 0.18);
    --btn-brand-hover-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.22);
    --btn-outline-bg: rgba(var(--primary-rgb), 0.08);
    --btn-outline-border: rgba(var(--primary-rgb), 0.12);
    --btn-outline-hover-bg: rgba(var(--primary-rgb), 0.12);
}

body.button-style-sharp {
    --btn-radius: 10px;
    --btn-letter-spacing: 0.04em;
    --btn-text-transform: uppercase;
    --btn-border-width: 2px;
    --btn-brand-bg: linear-gradient(135deg, #102038, var(--primary));
    --btn-brand-shadow: 0 16px 32px rgba(16, 32, 56, 0.2);
    --btn-outline-bg: transparent;
    --btn-outline-border: rgba(var(--primary-rgb), 0.38);
    --btn-outline-hover-bg: rgba(var(--primary-rgb), 0.08);
    --btn-outline-hover-color: var(--heading);
}

body.button-style-shadow {
    --btn-brand-shadow: 0 24px 44px rgba(8, 18, 34, 0.22);
    --btn-brand-hover-shadow: 0 28px 56px rgba(8, 18, 34, 0.28);
    --btn-outline-bg: #fff;
    --btn-outline-shadow: 0 16px 34px rgba(8, 18, 34, 0.08);
    --btn-outline-hover-shadow: 0 20px 40px rgba(8, 18, 34, 0.12);
}

body.button-style-glass {
    --btn-radius: 18px;
    --btn-brand-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(var(--primary-rgb), 0.88));
    --btn-brand-border: rgba(255, 255, 255, 0.28);
    --btn-brand-shadow: 0 16px 34px rgba(var(--primary-rgb), 0.22);
    --btn-outline-bg: rgba(255, 255, 255, 0.46);
    --btn-outline-border: rgba(255, 255, 255, 0.58);
    --btn-outline-color: var(--heading);
    --btn-outline-shadow: 0 14px 28px rgba(8, 18, 34, 0.08);
}

body.button-style-outline {
    --btn-brand-bg: transparent;
    --btn-brand-border: rgba(var(--primary-rgb), 0.45);
    --btn-brand-color: var(--heading);
    --btn-brand-hover-bg: linear-gradient(135deg, var(--primary), var(--primary-2));
    --btn-brand-hover-border: transparent;
    --btn-brand-hover-color: #fff;
    --btn-brand-shadow: none;
    --btn-outline-bg: transparent;
    --btn-outline-border: rgba(var(--primary-rgb), 0.24);
    --btn-outline-color: var(--muted);
    --btn-outline-hover-bg: rgba(var(--primary-rgb), 0.08);
    --btn-outline-hover-border: rgba(var(--primary-rgb), 0.42);
    --btn-outline-hover-color: var(--heading);
}

body.button-style-duotone {
    --btn-brand-bg: linear-gradient(135deg, var(--primary), var(--primary-2), #7cd4ff);
    --btn-brand-shadow: 0 20px 36px rgba(var(--primary-rgb), 0.24);
    --btn-outline-bg: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(124, 212, 255, 0.18));
    --btn-outline-border: rgba(var(--primary-rgb), 0.18);
    --btn-outline-hover-bg: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(124, 212, 255, 0.24));
}

body.button-style-industrial {
    --btn-radius: 12px;
    --btn-text-transform: uppercase;
    --btn-letter-spacing: 0.05em;
    --btn-padding-y: 0.95rem;
    --btn-padding-x: 1.5rem;
    --btn-brand-bg: linear-gradient(135deg, #0f1d2f, #223c61);
    --btn-brand-border: rgba(255, 255, 255, 0.08);
    --btn-brand-shadow: 0 20px 38px rgba(8, 18, 34, 0.2);
    --btn-outline-bg: rgba(255, 255, 255, 0.05);
    --btn-outline-border: rgba(12, 23, 43, 0.18);
    --btn-outline-color: var(--heading);
}

body.button-style-dark {
    --btn-radius: 16px;
    --btn-brand-bg: linear-gradient(135deg, #0b1220, #18273b);
    --btn-brand-border: rgba(255, 255, 255, 0.12);
    --btn-brand-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
    --btn-outline-bg: rgba(8, 18, 34, 0.06);
    --btn-outline-border: rgba(8, 18, 34, 0.16);
    --btn-outline-color: #081222;
}

body.button-style-elevated {
    --btn-radius: 20px;
    --btn-brand-bg: linear-gradient(180deg, #ffffff, #dfe8f8);
    --btn-brand-border: rgba(var(--primary-rgb), 0.12);
    --btn-brand-color: var(--heading);
    --btn-brand-hover-bg: linear-gradient(135deg, #ffffff, #eef3fb);
    --btn-brand-hover-color: var(--heading);
    --btn-brand-shadow: 0 20px 42px rgba(8, 18, 34, 0.12);
    --btn-brand-hover-shadow: 0 24px 48px rgba(8, 18, 34, 0.14);
    --btn-outline-bg: #ffffff;
    --btn-outline-border: rgba(var(--primary-rgb), 0.12);
    --btn-outline-color: var(--muted);
    --btn-outline-shadow: 0 12px 30px rgba(8, 18, 34, 0.06);
    --btn-outline-hover-color: var(--heading);
}

body.button-style-amber {
    --btn-brand-bg: linear-gradient(135deg, #f2a531, #ffbf3f);
    --btn-brand-hover-bg: linear-gradient(135deg, #e1951d, #ffbf3f);
    --btn-brand-shadow: 0 18px 36px rgba(242, 165, 49, 0.32);
    --btn-outline-bg: rgba(242, 165, 49, 0.08);
    --btn-outline-border: rgba(242, 165, 49, 0.28);
    --btn-outline-color: #8a5600;
    --btn-outline-hover-bg: rgba(242, 165, 49, 0.16);
    --btn-outline-hover-border: #f2a531;
    --btn-outline-hover-color: #6f4500;
}

body.button-style-forest {
    --btn-radius: 16px;
    --btn-brand-bg: linear-gradient(135deg, #1f7a45, #49a561);
    --btn-brand-hover-bg: linear-gradient(135deg, #176238, #49a561);
    --btn-brand-shadow: 0 18px 34px rgba(31, 122, 69, 0.28);
    --btn-outline-bg: rgba(31, 122, 69, 0.08);
    --btn-outline-border: rgba(31, 122, 69, 0.24);
    --btn-outline-color: #185d35;
    --btn-outline-hover-bg: rgba(31, 122, 69, 0.14);
    --btn-outline-hover-border: #1f7a45;
    --btn-outline-hover-color: #185d35;
}

body.button-style-tech {
    --btn-radius: 14px;
    --btn-letter-spacing: 0.03em;
    --btn-brand-bg: linear-gradient(135deg, #071a2b, #0f62a8);
    --btn-brand-hover-bg: linear-gradient(135deg, #05111d, #0f62a8);
    --btn-brand-shadow: 0 16px 32px rgba(15, 98, 168, 0.28);
    --btn-outline-bg: rgba(8, 18, 34, 0.02);
    --btn-outline-border: rgba(9, 167, 176, 0.28);
    --btn-outline-color: #0a5b6b;
    --btn-outline-hover-bg: rgba(49, 191, 212, 0.12);
    --btn-outline-hover-color: #063842;
}

body.button-style-luxe {
    --btn-radius: 14px;
    --btn-brand-bg: linear-gradient(135deg, #101720, #2b3d54);
    --btn-brand-hover-bg: linear-gradient(135deg, #0a1018, #2b3d54);
    --btn-brand-border: rgba(255, 255, 255, 0.16);
    --btn-brand-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
    --btn-outline-bg: rgba(255, 255, 255, 0.04);
    --btn-outline-border: rgba(255, 255, 255, 0.14);
    --btn-outline-color: var(--heading);
}

body.button-style-minimal {
    --btn-font-weight: 700;
    --btn-brand-bg: var(--heading);
    --btn-brand-hover-bg: #000;
    --btn-brand-shadow: none;
    --btn-brand-hover-shadow: none;
    --btn-outline-bg: transparent;
    --btn-outline-border: rgba(12, 23, 43, 0.12);
    --btn-outline-color: var(--heading);
    --btn-outline-hover-bg: rgba(12, 23, 43, 0.04);
    --btn-outline-hover-color: var(--heading);
    --btn-outline-hover-border: rgba(12, 23, 43, 0.22);
}

body.button-style-solid {
    --btn-radius: 12px;
    --btn-brand-bg: var(--primary);
    --btn-brand-hover-bg: #0a4ab3;
    --btn-brand-shadow: none;
    --btn-brand-hover-shadow: none;
    --btn-outline-bg: #eff4fb;
    --btn-outline-border: transparent;
    --btn-outline-color: var(--heading);
    --btn-outline-shadow: none;
    --btn-outline-hover-bg: #e4edf9;
    --btn-outline-hover-color: var(--heading);
}

body.button-style-split {
    --btn-radius: 18px;
    --btn-brand-bg: linear-gradient(90deg, var(--primary) 0 55%, var(--primary-2) 55% 100%);
    --btn-brand-shadow: 0 18px 34px rgba(var(--primary-rgb), 0.24);
    --btn-outline-bg: linear-gradient(90deg, rgba(var(--primary-rgb), 0.08) 0 55%, rgba(9, 167, 176, 0.08) 55% 100%);
    --btn-outline-border: rgba(var(--primary-rgb), 0.16);
}

body.button-style-surface {
    --btn-radius: 18px;
    --btn-brand-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(var(--primary-rgb), 0.18));
    --btn-brand-border: rgba(var(--primary-rgb), 0.18);
    --btn-brand-color: var(--heading);
    --btn-brand-hover-bg: linear-gradient(180deg, #ffffff, rgba(var(--primary-rgb), 0.24));
    --btn-brand-hover-color: var(--heading);
    --btn-brand-shadow: 0 14px 30px rgba(8, 18, 34, 0.1);
    --btn-brand-hover-shadow: 0 18px 34px rgba(8, 18, 34, 0.12);
    --btn-outline-bg: rgba(255, 255, 255, 0.8);
    --btn-outline-border: rgba(var(--primary-rgb), 0.12);
    --btn-outline-color: var(--heading);
}

body.button-style-compact {
    --btn-padding-y: 0.75rem;
    --btn-padding-x: 1.1rem;
    --btn-font-weight: 700;
    --btn-brand-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.2);
    --btn-brand-hover-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.22);
    --btn-outline-bg: rgba(255, 255, 255, 0.64);
}

body.button-style-monolith {
    --btn-radius: 8px;
    --btn-text-transform: uppercase;
    --btn-letter-spacing: 0.06em;
    --btn-border-width: 2px;
    --btn-brand-bg: #0a111b;
    --btn-brand-hover-bg: #000;
    --btn-brand-border: #0a111b;
    --btn-brand-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
    --btn-outline-bg: transparent;
    --btn-outline-border: #0a111b;
    --btn-outline-color: #0a111b;
    --btn-outline-hover-bg: #0a111b;
    --btn-outline-hover-color: #fff;
    --btn-outline-hover-border: #0a111b;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled .main-navbar {
    box-shadow: 0 18px 40px rgba(8, 18, 34, 0.1);
}

.header-topbar {
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    padding: 0.6rem 0;
}

.header-topbar a,
.topbar-copy span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-social-links {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.topbar-social-links a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: none;
}

.topbar-social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.main-navbar {
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.main-navbar .container {
    min-height: 68px;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.header-social-links {
    display: inline-flex;
    align-items: center;
}

.header-social-links a {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--heading);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    box-shadow: none;
}

.header-social-links a:hover {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}

.header-classic .header-topbar {
    background: var(--surface-dark);
}

.header-glass .header-topbar {
    background: rgba(var(--primary-rgb), 0.2);
    backdrop-filter: blur(18px);
}

.header-glass .main-navbar {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(255, 255, 255, 0.35);
}

.header-boxed .main-navbar {
    margin: 0.9rem auto 0;
    width: min(1220px, calc(100% - 24px));
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--primary-rgb), 0.14);
}

.header-stripe .header-topbar {
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    color: #fff;
}

.header-stripe .header-topbar a,
.header-stripe .topbar-copy span {
    color: #fff;
}

.header-minimal .header-topbar {
    display: none;
}

.header-minimal .main-navbar {
    background: rgba(255, 255, 255, 0.98);
}

.header-pill .main-navbar {
    margin: 0.8rem auto 0;
    width: min(1240px, calc(100% - 28px));
    border-radius: 999px;
    padding-block: 0.45rem;
    border: 1px solid rgba(var(--primary-rgb), 0.16);
}

.header-darkband .header-topbar {
    display: none;
}

.header-darkband .main-navbar {
    background: rgba(8, 18, 34, 0.95);
    border-color: rgba(255, 255, 255, 0.08);
}

.header-darkband .nav-link,
.header-darkband .navbar-brand,
.header-darkband .navbar-toggler {
    color: #fff;
}

.header-darkband .nav-link.active,
.header-darkband .nav-link:hover {
    color: var(--primary-2);
}

.header-darkband .btn-outline-brand {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.16);
}

.header-darkband .header-social-links a,
.header-industrial .header-social-links a {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.header-darkband .header-social-links a:hover,
.header-industrial .header-social-links a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--primary-2);
}

.header-split .main-navbar .container {
    gap: 1.25rem;
}

.header-split .navbar-nav {
    padding-inline: 1.2rem;
    border-inline: 1px solid rgba(var(--primary-rgb), 0.12);
}

.header-industrial .header-topbar {
    background: linear-gradient(90deg, #10181f, #26333f);
}

.header-industrial .main-navbar {
    border-bottom: 3px solid rgba(var(--primary-rgb), 0.45);
}

.header-outline .header-topbar {
    display: none;
}

.header-outline .main-navbar {
    background: transparent;
    border: 2px solid rgba(var(--primary-rgb), 0.16);
}

.header-floating .header-topbar {
    display: none;
}

.header-floating .main-navbar {
    margin: 1rem auto 0;
    width: min(1240px, calc(100% - 26px));
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(8, 18, 34, 0.14);
}

.header-duotone .header-topbar {
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.92), rgba(var(--primary-rgb), 0.6));
    color: #fff;
}

.header-duotone .header-topbar a,
.header-duotone .topbar-copy span {
    color: #fff;
}

.header-duotone .main-navbar {
    background: rgba(255, 255, 255, 0.97);
}

.header-premium .header-topbar {
    background: #081222;
    color: rgba(255, 255, 255, 0.82);
}

.header-premium .main-navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.94));
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.18);
    box-shadow: 0 18px 38px rgba(8, 18, 34, 0.08);
}

:is(.header-glass, .header-boxed, .header-minimal, .header-pill, .header-floating, .header-duotone, .header-premium) .main-navbar .nav-link,
:is(.header-glass, .header-boxed, .header-minimal, .header-pill, .header-floating, .header-duotone, .header-premium) .main-navbar .navbar-brand,
:is(.header-glass, .header-boxed, .header-minimal, .header-pill, .header-floating, .header-duotone, .header-premium) .main-navbar .navbar-toggler {
    color: var(--surface-light-heading);
}

:is(.header-glass, .header-boxed, .header-minimal, .header-pill, .header-floating, .header-duotone, .header-premium) .main-navbar .nav-link.active,
:is(.header-glass, .header-boxed, .header-minimal, .header-pill, .header-floating, .header-duotone, .header-premium) .main-navbar .nav-link:hover {
    color: var(--primary);
}

:is(.header-glass, .header-boxed, .header-minimal, .header-pill, .header-floating, .header-duotone, .header-premium) .main-navbar .btn-outline-brand {
    color: var(--surface-light-heading);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(var(--primary-rgb), 0.18);
    box-shadow: 0 12px 24px rgba(8, 18, 34, 0.06);
}

:is(.header-glass, .header-boxed, .header-minimal, .header-pill, .header-floating, .header-duotone, .header-premium) .main-navbar .btn-outline-brand:hover,
:is(.header-glass, .header-boxed, .header-minimal, .header-pill, .header-floating, .header-duotone, .header-premium) .main-navbar .btn-outline-brand:focus {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.3);
}

:is(.header-glass, .header-boxed, .header-minimal, .header-pill, .header-floating, .header-duotone, .header-premium) .main-navbar .btn-brand {
    color: #fff;
}

.navbar-brand img {
    width: 208px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.24rem 0.58rem;
    min-height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 8px 20px rgba(8, 18, 34, 0.08);
}

.header-darkband .brand-logo-frame,
.header-industrial .brand-logo-frame {
    background: rgba(255, 255, 255, 0.96);
}

.nav-link {
    color: var(--heading);
    font-weight: 700;
    position: relative;
    white-space: nowrap;
    font-size: 0.92rem;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.nav-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    border: 0;
    background: transparent;
    line-height: inherit;
    font-size: 0.92rem;
}

.header-buttons {
    gap: 0.5rem !important;
}

.header-buttons .btn {
    padding: 0.62rem 0.88rem;
    font-size: 0.82rem;
    border-radius: 14px;
}

.nav-item-mega {
    position: relative;
}

.nav-link-mega-shell {
    display: flex;
    align-items: stretch;
}

.nav-link-mega-anchor {
    padding-right: 0.45rem;
}

.nav-link-mega-toggle {
    justify-content: center;
    min-width: 2.45rem;
    padding-left: 0.58rem;
    padding-right: 0.58rem;
}

.nav-item-mega.is-open .nav-link-mega-anchor {
    color: var(--primary);
}

.nav-link-mega-toggle i,
.mobile-mega-toggle i {
    font-size: 0.78rem;
    transition: transform 0.2s ease;
}

.nav-item-mega.is-open .nav-link-mega-toggle i,
.mobile-mega-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mega-menu-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    width: min(1080px, calc(100vw - 36px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1040;
}

.nav-item-mega.is-open > .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(var(--primary-rgb), 0.14);
    box-shadow: 0 28px 60px rgba(8, 18, 34, 0.14);
}

.mega-menu-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.85rem;
    padding: 1.1rem;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(var(--primary-rgb), 0.08), rgba(255, 255, 255, 0.94)),
        #fff;
    border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.mega-menu-lead-copy {
    display: grid;
    gap: 0.35rem;
}

.mega-menu-kicker {
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mega-menu-lead h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.mega-menu-lead-copy p {
    margin-bottom: 0;
    max-width: 34ch;
    font-size: 0.84rem;
    line-height: 1.5;
}

.mega-menu-lead-actions {
    display: grid;
    gap: 0.75rem;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    max-height: min(62vh, 520px);
    padding-right: 0.25rem;
    overflow-y: auto;
}

.mega-menu-groups {
    display: grid;
    gap: 1rem;
    max-height: min(62vh, 520px);
    padding-right: 0.25rem;
    overflow-y: auto;
}

.mega-menu-group {
    display: grid;
    gap: 0.8rem;
}

.mega-menu-group-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.3rem 0.1rem 0;
    color: inherit;
}

.mega-menu-group-link strong {
    color: var(--heading);
    font-size: 1rem;
}

.mega-menu-group-link small {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mega-menu-group-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.mega-menu-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    width: 100%;
    padding: 0.78rem;
    border-radius: 18px;
    background: rgba(var(--primary-rgb), 0.04);
    border: 1px solid transparent;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.mega-menu-card-trigger {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.mega-menu-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.16);
    background: rgba(var(--primary-rgb), 0.08);
}

.mega-menu-card-media {
    display: block;
    width: 76px;
    height: 76px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(12, 23, 43, 0.08);
}

.mega-menu-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.4rem;
    background: #fff;
}

.mega-menu-card-body {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.mega-menu-card-body strong {
    color: var(--heading);
    font-size: 0.95rem;
    line-height: 1.35;
}

.mega-menu-card-body small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mega-menu-card-action {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mega-menu-subpanel[hidden] {
    display: none !important;
}

.mobile-mega-group {
    border-bottom: 1px solid rgba(12, 23, 43, 0.08);
}

.mobile-mega-group .list-group-item {
    border: 0;
}

.mobile-mega-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.mobile-mega-collapse {
    padding: 0 0.75rem 0.9rem;
}

.mobile-mega-parent-link {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 800;
}

.mobile-mega-stack {
    display: grid;
    gap: 1rem;
}

.mobile-mega-section + .mobile-mega-section {
    padding-top: 0.15rem;
    border-top: 1px solid rgba(12, 23, 43, 0.08);
}

.mobile-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mobile-mega-card {
    display: grid;
    gap: 0.45rem;
    padding: 0.72rem;
    border-radius: 18px;
    background: rgba(var(--primary-rgb), 0.06);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
}

.mobile-mega-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 0.45rem;
    border-radius: 14px;
    background: #fff;
}

.mobile-mega-card span {
    color: var(--heading);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
}

.mobile-mega-card small {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offcanvas {
    background: var(--surface);
}

.hero-section {
    position: relative;
    padding: 110px 0 84px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), transparent 42%),
        radial-gradient(circle at 85% 10%, rgba(var(--primary-rgb), 0.12), transparent 20%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: clamp(2.9rem, 6vw, 4.8rem);
    letter-spacing: -0.04em;
    margin-top: 1rem;
    margin-bottom: 1.1rem;
}

.hero-copy p {
    font-size: 1.08rem;
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-stat-card {
    padding: 1.1rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow-sm);
}

.hero-stat-card strong {
    display: block;
    color: var(--heading);
    font-size: 1.2rem;
    font-weight: 800;
}

.hero-stat-card span {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
}

.hero-media-card {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    padding: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
    box-shadow: var(--shadow-lg);
}

.hero-media-top,
.hero-media-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.35rem 0;
}

.hero-media-top {
    color: var(--heading);
    font-weight: 800;
    font-size: 0.9rem;
}

.hero-media-top img {
    object-fit: contain;
    background: #fff;
}

.hero-media-card img {
    margin: 1rem 0;
    border-radius: calc(var(--radius-xl) - 10px);
    width: 100%;
    background: #fff;
    padding: 0.75rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.hero-media-bottom {
    align-items: end;
}

.hero-media-bottom strong {
    display: block;
    color: var(--heading);
}

.hero-media-bottom span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-media-bottom a {
    color: var(--primary);
    font-weight: 800;
}

.hero-section.hero-segment-section {
    padding-top: 1rem;
    padding-bottom: 1.35rem;
    overflow: hidden;
}

.hero-section.hero-segment-section::before {
    display: none;
}

.hero-segment-fluid {
    padding-inline: clamp(0.55rem, 1.65vw, 1.6rem);
}

.home-slider-page .hero-section.hero-segment-section {
    padding-top: 0.25rem;
    padding-bottom: 0.7rem;
}

.home-slider-page .hero-segment-fluid {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: clamp(0.45rem, 1.2vw, 1.35rem);
}

.home-slider-page .main-navbar .container {
    min-height: 68px;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.home-slider-page .navbar-brand img {
    width: 208px;
}

.home-slider-page .brand-logo-frame {
    min-height: 56px;
    padding: 0.24rem 0.58rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(8, 18, 34, 0.08);
}

.home-slider-page .nav-link,
.home-slider-page .nav-link-button {
    font-size: 0.92rem;
}

.home-slider-page .header-buttons {
    gap: 0.5rem !important;
}

.home-slider-page .header-buttons .btn {
    padding: 0.62rem 0.88rem;
    font-size: 0.82rem;
    border-radius: 14px;
}

.home-slider-page .hero-segment-carousel .carousel-inner,
.home-slider-page .hero-segment-carousel .carousel-item {
    min-height: clamp(310px, 42vh, 380px);
}

.hero-segment-carousel {
    position: relative;
}

.hero-segment-carousel .carousel-inner,
.hero-segment-carousel .carousel-item {
    min-height: clamp(660px, 84vh, 920px);
}

.hero-segment-shell {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: clamp(660px, 84vh, 920px);
    padding: clamp(1.4rem, 2.8vw, 2.5rem);
    border-radius: 40px;
    background:
        linear-gradient(92deg, rgba(8, 11, 14, 0.94) 0%, rgba(8, 11, 14, 0.82) 34%, rgba(8, 11, 14, 0.44) 64%, rgba(8, 11, 14, 0.22) 100%),
        radial-gradient(circle at top right, var(--segment-glow), transparent 26%),
        var(--segment-image) center center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 80px rgba(8, 18, 34, 0.2);
}

.home-slider-page .hero-segment-shell {
    width: 100%;
    min-height: clamp(310px, 42vh, 380px);
    padding: 0.55rem 0.55rem 0;
    border-radius: 18px 18px 0 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(171, 201, 79, 0.12), transparent 20%),
        linear-gradient(90deg, rgba(10, 16, 22, 0.98) 0%, rgba(10, 16, 22, 0.95) 64%, rgba(10, 16, 22, 0.92) 100%),
        linear-gradient(180deg, #182028, #10161d);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(8, 18, 34, 0.18);
}

.home-slider-page .hero-segment-shell::before,
.home-slider-page .hero-segment-shell::after {
    display: none;
}

.home-slider-page .hero-segment-stage {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: calc(clamp(310px, 42vh, 380px) - 42px);
    padding: 0.8rem 0.9rem;
    border-radius: 14px 14px 0 0;
    border: 3px solid rgba(255, 255, 255, 0.78);
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.home-slider-page .hero-segment-stage .row {
    min-height: 100%;
}

.hero-segment-shell > .row {
    flex: 1 1 auto;
    min-height: 100%;
}

.hero-segment-shell::before,
.hero-segment-shell::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-segment-shell::before {
    width: 260px;
    height: 260px;
    top: -82px;
    right: -92px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-segment-shell::after {
    width: 180px;
    height: 180px;
    bottom: -72px;
    left: -54px;
    background: var(--segment-soft);
}

.hero-segment-copy,
.hero-segment-media {
    position: relative;
    z-index: 1;
}

.hero-segment-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding-block: clamp(0.6rem, 4vh, 2rem);
}

.home-slider-page .hero-segment-copy {
    padding-block: 0.1rem;
    max-width: 640px;
}

.hero-segment-headline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.95rem;
}

.hero-segment-label,
.hero-segment-count {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-segment-label {
    background: var(--segment-soft);
    color: #fff;
}

.hero-segment-count {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
}

.hero-segment-copy .section-kicker,
.hero-segment-copy h1,
.hero-segment-copy p {
    color: #fff;
}

.hero-segment-copy p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.04rem;
}

.hero-segment-copy h1 {
    max-width: 15ch;
    text-wrap: balance;
}

.home-slider-page .hero-segment-copy h1 {
    max-width: 11ch;
    margin-top: 0.35rem;
    margin-bottom: 0.28rem;
    font-size: clamp(1.55rem, 2.1vw, 2.25rem);
    line-height: 1;
}

.home-slider-page .hero-segment-copy p {
    max-width: 50ch;
    font-size: 0.82rem;
    line-height: 1.42;
    margin-bottom: 0;
}

.home-slider-page .hero-actions {
    margin-top: 0.58rem;
    gap: 0.45rem;
}

.home-slider-page .hero-actions .btn {
    padding: 0.62rem 0.86rem;
    font-size: 0.78rem;
}

.hero-segment-copy .section-kicker {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
}

.hero-segment-copy .btn-outline-brand {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.hero-segment-copy .btn-outline-brand:hover,
.hero-segment-copy .btn-outline-brand:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
}

.hero-segment-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.35rem;
}

.home-slider-page .hero-segment-chips {
    gap: 0.4rem;
    margin-top: 0.45rem;
}

.hero-segment-chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.58rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 700;
}

.home-slider-page .hero-segment-chips span {
    padding: 0.3rem 0.52rem;
    font-size: 0.68rem;
}

.hero-segment-shell .hero-stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.14);
}

.hero-segment-shell .hero-stat-card strong,
.hero-segment-shell .hero-stat-card span {
    color: #fff;
}

.hero-segment-media {
    height: 100%;
    max-width: min(100%, 680px);
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.home-slider-page .hero-segment-media {
    width: min(100%, 170px);
    max-width: none;
    margin-inline: 0;
    padding: 0.45rem;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 238, 244, 0.92));
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.hero-segment-visual {
    flex: 1 1 auto;
    display: flex;
    min-height: clamp(320px, 48vh, 560px);
    margin: 1rem 0 0.9rem;
    border-radius: calc(var(--radius-xl) - 10px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.home-slider-page .hero-segment-visual {
    min-height: 132px;
    margin: 0;
    border-radius: 10px;
    background: #eef3f8;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.hero-segment-media img {
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: clamp(320px, 46vh, 540px);
    aspect-ratio: auto;
    object-fit: cover;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.home-slider-page .hero-segment-media img {
    min-height: 132px;
    max-height: 132px;
    object-fit: contain;
}

.home-slider-page .hero-segment-media-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-top: 0.35rem;
    color: var(--surface-light-heading);
}

.home-slider-page .hero-segment-media-caption strong {
    display: block;
    font-size: 0.78rem;
    color: var(--surface-light-heading);
}

.home-slider-page .hero-segment-media-caption span {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.68rem;
    color: var(--surface-light-muted);
}

.home-slider-page .hero-segment-media-caption a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
}

.home-slider-page .hero-segment-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 320px;
    margin-left: auto;
    padding: 0.65rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-slider-page .hero-segment-showcase-head,
.home-slider-page .hero-segment-showcase-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.home-slider-page .hero-segment-showcase-head span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-slider-page .hero-segment-showcase-head strong {
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-slider-page .hero-segment-showcase-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 214px;
    padding: 0.55rem;
    border-radius: 12px;
    background: rgba(7, 12, 18, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.home-slider-page .hero-segment-showcase-frame img {
    width: 100%;
    height: 100%;
    max-height: 202px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.home-slider-page .hero-segment-showcase-foot small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 700;
}

.hero-segment-media .hero-media-top,
.hero-segment-media .hero-media-bottom {
    color: #fff;
}

.hero-segment-media .hero-media-top {
    padding-top: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-segment-media .hero-media-bottom strong,
.hero-segment-media .hero-media-bottom span {
    color: #fff;
}

.hero-segment-media .hero-media-bottom span {
    color: rgba(255, 255, 255, 0.76);
}

.hero-segment-media .hero-media-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff;
}

.hero-segment-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.05rem;
    padding-inline: 0.1rem;
}

.home-slider-page .hero-segment-controls {
    margin-top: 0;
    gap: 0;
    align-items: stretch;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    background: #111820;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 0;
}

.home-slider-page .hero-segment-indicators.carousel-indicators {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    flex: 1 1 auto;
}

.home-slider-page .hero-segment-indicator {
    min-height: 54px;
    padding: 0.72rem 0.9rem !important;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: none;
}

.home-slider-page .hero-segment-indicator small {
    display: none;
}

.home-slider-page .hero-segment-indicator strong {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.home-slider-page .hero-segment-indicator.active {
    background: linear-gradient(180deg, rgba(170, 200, 73, 0.34), rgba(138, 168, 44, 0.22)) !important;
}

.home-slider-page .hero-segment-indicator.active strong {
    color: #ffffff;
}

.home-slider-page .hero-segment-nav {
    display: none;
}


.hero-segment-indicators.carousel-indicators {
    position: static;
    inset: auto;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero-segment-indicator {
    width: 100%;
    height: auto;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 22px;
    padding: 0.9rem 1rem !important;
    text-indent: 0 !important;
    background: rgba(8, 18, 34, 0.46) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff;
    opacity: 1 !important;
    box-shadow: 0 16px 30px rgba(8, 18, 34, 0.12);
    text-align: left;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.hero-segment-indicator:hover {
    transform: translateY(-2px);
}

.hero-segment-indicator.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.hero-segment-indicator small,
.hero-segment-indicator strong {
    display: block;
}

.hero-segment-indicator small {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-segment-indicator strong {
    color: #fff;
    font-size: 0.92rem;
}

.hero-segment-nav {
    display: flex;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.hero-segment-arrow {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 18, 34, 0.46);
    color: #fff;
    box-shadow: 0 16px 30px rgba(8, 18, 34, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.hero-segment-arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.2);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card,
.mission-card,
.contact-card,
.contact-side-panel,
.inquiry-form-card,
.product-summary-card,
.filter-panel,
.empty-state,
.about-visual-panel,
.testimonial-card,
.team-card,
.cta-panel,
.category-card,
.hero-stat-card {
    border: 1px solid var(--border);
}

.feature-card,
.mission-card,
.contact-card,
.contact-side-panel,
.inquiry-form-card,
.product-summary-card,
.filter-panel,
.empty-state,
.about-visual-panel,
.testimonial-card,
.team-card,
.cta-panel {
    padding: 1.7rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.feature-card-emphasis {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(255, 255, 255, 0.96));
}

.feature-card h3,
.mission-card h3,
.contact-card h3 {
    font-size: 1.2rem;
    margin-top: 0.9rem;
}

.feature-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.14), rgba(var(--primary-rgb), 0.06));
    color: var(--primary);
    font-size: 1.3rem;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(8, 18, 34, 0.14);
}

.product-media {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #fff;
}

.product-media img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #fff;
    padding: 0.85rem;
    transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.04);
}

.product-category-chip {
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: inline-flex;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.92);
    color: var(--heading);
}

.product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-body h3 {
    font-size: 1.22rem;
}

.product-card-body h3 a:hover {
    color: var(--primary);
}

.product-card-body p {
    margin-bottom: 1.35rem;
}

.product-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: auto;
}

.product-card-meta,
.product-summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.product-card-meta span,
.product-summary-meta span {
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
}

.category-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.15), transparent 42%);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--heading);
    font-weight: 800;
    margin-bottom: 1rem;
}

.category-card strong {
    color: var(--primary);
}

.category-catalog-note {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.35rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(255, 255, 255, 0.86));
    border: 1px solid rgba(var(--primary-rgb), 0.14);
    box-shadow: var(--shadow-sm);
    color: var(--surface-light-text);
}

.category-catalog-note strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--surface-light-heading);
    font-family: 'Sora', sans-serif;
}

.category-catalog-note p {
    color: var(--surface-light-muted);
}

.catalog-count-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(var(--primary-rgb), 0.16);
    color: var(--surface-light-heading);
    font-weight: 800;
}

.why-choose-list {
    display: grid;
    gap: 0.95rem;
}

.why-item {
    display: flex;
    align-items: start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(8, 18, 34, 0.06);
}

.why-item i {
    color: var(--success);
    font-size: 1.15rem;
    margin-top: 0.2rem;
}

.testimonial-card {
    height: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 0.28rem;
    margin-bottom: 1rem;
    color: var(--warning);
}

.testimonial-author strong {
    display: block;
    color: var(--heading);
}

.testimonial-author span {
    color: var(--muted);
    font-size: 0.92rem;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), 0.92), rgba(var(--primary-rgb), 0.6)),
        linear-gradient(180deg, #000, transparent);
    color: #fff;
    overflow: hidden;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .section-kicker {
    color: #fff;
}

.cta-panel p {
    opacity: 0.88;
}

.cta-panel .section-kicker {
    background: rgba(255, 255, 255, 0.12);
}

.cta-panel .btn-outline-brand {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.page-banner {
    padding: 78px 0 48px;
    background:
        linear-gradient(180deg, rgba(var(--primary-rgb), 0.08), rgba(255, 255, 255, 0)),
        var(--bg);
}

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

.banner-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-top: 1rem;
}

.breadcrumb-nav {
    margin-top: 1.4rem;
}

.breadcrumb {
    display: inline-flex;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(8, 18, 34, 0.08);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--muted);
}

.filter-panel {
    margin-bottom: 2rem;
}

.results-summary {
    margin-bottom: 1.5rem;
    color: var(--muted);
}

.results-summary strong {
    color: var(--heading);
}

.empty-state {
    text-align: center;
}

.catalog-theme {
    background:
        radial-gradient(circle at top center, rgba(var(--primary-rgb), 0.18), transparent 24%),
        linear-gradient(180deg, #090a0b, #111214 34%, #0b0b0c 100%);
    color: rgba(255, 255, 255, 0.92);
}

.catalog-theme main {
    position: relative;
}

.catalog-theme .site-header {
    backdrop-filter: blur(22px);
}

.catalog-theme .header-topbar {
    background: rgba(6, 7, 8, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.catalog-theme .main-navbar {
    background: rgba(10, 11, 12, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-theme .site-header.is-scrolled .main-navbar {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.catalog-theme .nav-link,
.catalog-theme .navbar-brand,
.catalog-theme .navbar-toggler,
.catalog-theme .header-topbar a,
.catalog-theme .topbar-copy span {
    color: rgba(255, 255, 255, 0.9);
}

.catalog-theme .nav-link.active,
.catalog-theme .nav-link:hover {
    color: #fff;
}

.catalog-theme .brand-logo-frame {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.catalog-theme .mega-menu-shell {
    background: linear-gradient(180deg, rgba(18, 19, 21, 0.98), rgba(12, 13, 15, 0.98));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 66px rgba(0, 0, 0, 0.34);
}

.catalog-theme .mega-menu-lead,
.catalog-theme .mega-menu-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.catalog-theme .mega-menu-kicker,
.catalog-theme .mega-menu-card-body small,
.catalog-theme .mobile-mega-card small,
.catalog-theme .mega-menu-group-link small {
    color: rgba(255, 255, 255, 0.62);
}

.catalog-theme .mega-menu-lead h3,
.catalog-theme .mega-menu-group-link strong,
.catalog-theme .mega-menu-card-body strong,
.catalog-theme .mobile-mega-card span,
.catalog-theme .mobile-mega-parent-link,
.catalog-theme .mobile-mega-toggle {
    color: #fff;
}

.catalog-theme .mega-menu-lead p {
    color: rgba(255, 255, 255, 0.7);
}

.catalog-theme .mega-menu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.catalog-theme .mobile-mega-group {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.catalog-theme .mobile-mega-section + .mobile-mega-section {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.catalog-theme .mobile-mega-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.catalog-theme .header-buttons .btn-outline-brand,
.catalog-theme .catalog-banner .btn-outline-brand,
.catalog-theme .catalog-section .btn-outline-brand {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    box-shadow: none;
}

.catalog-theme .header-buttons .btn-outline-brand:hover,
.catalog-theme .header-buttons .btn-outline-brand:focus,
.catalog-theme .catalog-banner .btn-outline-brand:hover,
.catalog-theme .catalog-banner .btn-outline-brand:focus,
.catalog-theme .catalog-section .btn-outline-brand:hover,
.catalog-theme .catalog-section .btn-outline-brand:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.header-contrast-theme .site-header {
    backdrop-filter: blur(22px);
}

.header-contrast-theme .header-topbar {
    background: rgba(6, 7, 8, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-contrast-theme .main-navbar {
    background: rgba(10, 11, 12, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-contrast-theme .site-header.is-scrolled .main-navbar {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.header-contrast-theme .main-navbar .nav-link,
.header-contrast-theme .main-navbar .navbar-brand,
.header-contrast-theme .main-navbar .navbar-toggler,
.header-contrast-theme .header-topbar a,
.header-contrast-theme .topbar-copy span {
    color: rgba(255, 255, 255, 0.9);
}

.header-contrast-theme .main-navbar .nav-link.active,
.header-contrast-theme .main-navbar .nav-link:hover {
    color: #fff;
}

.header-contrast-theme .brand-logo-frame {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.header-contrast-theme .mega-menu-shell {
    background: linear-gradient(180deg, rgba(18, 19, 21, 0.98), rgba(12, 13, 15, 0.98));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 66px rgba(0, 0, 0, 0.34);
}

.header-contrast-theme .mega-menu-lead,
.header-contrast-theme .mega-menu-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.header-contrast-theme .mega-menu-kicker,
.header-contrast-theme .mega-menu-card-body small,
.header-contrast-theme .mobile-mega-card small,
.header-contrast-theme .mega-menu-group-link small {
    color: rgba(255, 255, 255, 0.62);
}

.header-contrast-theme .mega-menu-lead h3,
.header-contrast-theme .mega-menu-group-link strong,
.header-contrast-theme .mega-menu-card-body strong,
.header-contrast-theme .mobile-mega-card span,
.header-contrast-theme .mobile-mega-parent-link,
.header-contrast-theme .mobile-mega-toggle {
    color: #fff;
}

.header-contrast-theme .mega-menu-lead p {
    color: rgba(255, 255, 255, 0.7);
}

.header-contrast-theme .mega-menu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.header-contrast-theme .mobile-mega-group {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-contrast-theme .mobile-mega-section + .mobile-mega-section {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.header-contrast-theme .mobile-mega-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.header-contrast-theme .main-navbar .btn-outline-brand {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    box-shadow: none;
}

.header-contrast-theme .main-navbar .btn-outline-brand:hover,
.header-contrast-theme .main-navbar .btn-outline-brand:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.header-contrast-theme .offcanvas {
    background: rgba(11, 12, 14, 0.98);
    color: #fff;
}

.header-contrast-theme .offcanvas .list-group-item {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.header-contrast-theme .offcanvas .list-group-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.header-contrast-theme .offcanvas-title {
    color: #fff;
}

.header-contrast-theme .btn-close {
    filter: invert(1);
}

.catalog-theme .catalog-banner,
.catalog-theme .catalog-section,
.catalog-theme .catalog-panel p,
.catalog-theme .catalog-sidebar-card p,
.catalog-theme .catalog-product-body p {
    color: rgba(255, 255, 255, 0.72);
}

.catalog-theme .catalog-banner {
    padding: 28px 0 32px;
}

.catalog-banner-shell {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    min-height: 360px;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-radius: 32px;
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.74) 52%, rgba(255, 255, 255, 0.92) 100%),
        radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.16), transparent 38%),
        var(--catalog-banner-image) center center / cover no-repeat;
    box-shadow: 0 24px 54px rgba(8, 18, 34, 0.1);
}

.catalog-banner-copy {
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.catalog-banner-kicker,
.catalog-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalog-banner-kicker,
.catalog-panel-label {
    color: var(--primary);
}

.catalog-sidebar-label,
.catalog-family-meta,
.catalog-banner-stat span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--surface-light-muted);
}

.catalog-banner-copy h1,
.catalog-sidebar-card h2,
.catalog-sidebar-card h3,
.catalog-panel h2,
.catalog-empty-state h3,
.catalog-product-body h3 a,
.catalog-context-pill strong {
    color: var(--surface-light-heading);
}

.catalog-banner-copy h1 {
    max-width: 11ch;
    margin-top: 0.9rem;
    margin-bottom: 1rem;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    letter-spacing: -0.05em;
}

.catalog-banner-copy p {
    max-width: 58ch;
    font-size: 1.04rem;
    color: var(--surface-light-text);
}

.catalog-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.catalog-banner-stats {
    position: relative;
    z-index: 1;
    width: min(320px, 100%);
    display: grid;
    gap: 0.9rem;
}

.catalog-banner-stat {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    backdrop-filter: blur(12px);
}

.catalog-banner-stat strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--surface-light-heading);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.catalog-banner-links {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 1rem 0 0.2rem;
    scrollbar-width: none;
}

.catalog-banner-links::-webkit-scrollbar {
    display: none;
}

.catalog-banner-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    color: var(--surface-light-text);
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.catalog-banner-link:hover,
.catalog-banner-link.is-active {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.24);
    color: var(--primary);
}

.catalog-breadcrumb {
    margin-top: 1rem;
}

.catalog-theme .catalog-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.catalog-theme .catalog-breadcrumb .breadcrumb-item,
.catalog-theme .catalog-breadcrumb .breadcrumb-item a,
.catalog-theme .catalog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.catalog-theme .catalog-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.catalog-section {
    padding: 0 0 88px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 1rem;
}

.catalog-page {
    background:
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.1), transparent 24%),
        linear-gradient(180deg, #f8f9fc 0%, #eef3fb 100%);
}

.catalog-page main {
    position: relative;
}

.catalog-sidebar-card,
.catalog-panel,
.catalog-product-card {
    border-radius: 28px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94));
    box-shadow: 0 18px 42px rgba(8, 18, 34, 0.08);
}

.catalog-sidebar-card,
.catalog-panel {
    padding: 1.35rem;
}

.catalog-sidebar-card h2,
.catalog-sidebar-card h3,
.catalog-panel h2 {
    margin-top: 0.2rem;
    margin-bottom: 0.7rem;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.catalog-family-list {
    display: grid;
    gap: 0.55rem;
}

.catalog-family-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    color: var(--surface-light-text);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.catalog-family-link-item strong {
    color: var(--surface-light-heading);
    font-size: 0.88rem;
}

.catalog-family-link-item:hover,
.catalog-family-link-item.is-active {
    transform: translateX(2px);
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.22);
    color: var(--primary);
}

.catalog-filter-form {
    display: grid;
    gap: 0.95rem;
}

.catalog-filter-form .form-label {
    color: var(--surface-light-heading);
    font-size: 0.88rem;
    font-weight: 700;
}

.catalog-filter-form .form-control,
.catalog-filter-form .form-select {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(12, 23, 43, 0.12);
    color: var(--surface-light-text);
}

.catalog-filter-form .form-control::placeholder {
    color: var(--surface-light-muted);
}

.catalog-filter-form .form-control:focus,
.catalog-filter-form .form-select:focus {
    background: #fff;
    border-color: rgba(var(--primary-rgb), 0.46);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.18);
    color: var(--surface-light-text);
}

.catalog-filter-form .form-select option {
    color: #111;
}

.catalog-support-actions {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.catalog-main {
    display: grid;
    gap: 1.5rem;
}

.catalog-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.catalog-panel-head p {
    margin-bottom: 0;
}

.catalog-reset-link {
    flex: 0 0 auto;
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(var(--primary-rgb), 0.24);
    text-underline-offset: 0.3rem;
}

.catalog-family-grid,
.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.catalog-family-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-family-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 280px;
    border-radius: 26px;
    background: #dfe6f3;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 18px 42px rgba(8, 18, 34, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-family-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 27, 0.06), rgba(7, 14, 27, 0.78));
}

.catalog-family-card:hover,
.catalog-family-card.is-active {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(8, 18, 34, 0.14);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.catalog-family-media {
    position: absolute;
    inset: 0;
}

.catalog-family-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.02);
}

.catalog-family-body {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    gap: 0.38rem;
    padding: 1.2rem;
}

.catalog-family-body strong {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 1.18rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

.catalog-family-cta {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.catalog-results-summary {
    display: inline-grid;
    gap: 0.1rem;
    justify-items: end;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(var(--primary-rgb), 0.06);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.catalog-results-summary strong {
    color: var(--surface-light-heading);
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
}

.catalog-results-summary span {
    color: var(--surface-light-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.catalog-product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-product-media {
    display: grid;
    place-items: center;
    min-height: 250px;
    padding: 1rem;
    background: linear-gradient(180deg, #f8f8f8, #d9d9d9);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.catalog-product-media img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.catalog-product-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
    padding: 1.2rem;
}

.catalog-product-body h3 {
    margin-bottom: 0;
    font-size: 1.08rem;
}

.catalog-product-body h3 a:hover {
    color: var(--primary);
}

.catalog-product-body p {
    margin-bottom: 0;
}

.catalog-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.catalog-product-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.68rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: auto;
}

.catalog-product-grid[data-count="1"] {
    grid-template-columns: minmax(0, 760px);
}

.catalog-product-grid[data-count="1"] .catalog-product-card {
    display: grid;
    grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
}

.catalog-product-grid[data-count="1"] .catalog-product-media {
    min-height: 100%;
    padding: 1.25rem;
    border-bottom: 0;
    border-right: 1px solid rgba(var(--primary-rgb), 0.08);
}

.catalog-product-grid[data-count="1"] .catalog-product-media img {
    height: clamp(220px, 24vw, 300px);
}

.catalog-product-grid[data-count="1"] .catalog-product-body {
    padding: 1.35rem 1.4rem;
    align-content: center;
}

.catalog-product-grid[data-count="1"] .catalog-product-body h3 {
    font-size: 1.26rem;
}

.catalog-product-grid[data-count="1"] .catalog-product-body p {
    max-width: 54ch;
}

.catalog-empty-state {
    padding: 2.7rem 1.5rem;
    border-radius: 24px;
    border: 1px dashed rgba(var(--primary-rgb), 0.16);
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.catalog-empty-state p {
    max-width: 560px;
    margin: 0 auto 1.2rem;
}

.catalog-context-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.catalog-context-pill {
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.catalog-context-pill span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--surface-light-muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.catalog-context-pill strong {
    display: block;
    font-size: 1rem;
}

.catalog-page .catalog-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    box-shadow: 0 12px 28px rgba(8, 18, 34, 0.08);
}

.catalog-page .page-link {
    background: rgba(255, 255, 255, 0.9);
    color: var(--surface-light-heading);
    border-color: rgba(var(--primary-rgb), 0.12);
}

.catalog-page .page-link:hover {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border-color: rgba(var(--primary-rgb), 0.22);
}

.catalog-page .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.68);
    color: rgba(8, 18, 34, 0.38);
    border-color: rgba(var(--primary-rgb), 0.08);
}

.catalog-theme .page-link {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.1);
}

.catalog-theme .page-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.catalog-theme .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.06);
}

.about-visual-panel img {
    border-radius: calc(var(--radius-lg) - 8px);
    width: 100%;
    background: #fff;
    padding: 0.75rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.team-card h4 {
    margin-bottom: 0.6rem;
    font-family: 'Sora', sans-serif;
    color: var(--heading);
}

.content-block p:last-child {
    margin-bottom: 0;
}

.product-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.product-gallery-main img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    background: #fff;
    padding: 1rem;
}

.product-thumbnails {
    display: flex;
    gap: 0.9rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
}

.product-thumb {
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    flex: 0 0 92px;
    cursor: pointer;
}

.product-thumb.active {
    border-color: var(--primary);
}

.product-thumb img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    background: #fff;
    padding: 0.35rem;
}

.product-summary-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.product-summary-lead {
    font-size: 1.05rem;
}

.product-summary-points {
    display: grid;
    gap: 0.7rem;
    margin: 1.4rem 0 1.8rem;
}

.product-summary-points div {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    background: var(--surface-2);
    color: var(--heading);
}

.product-summary-note {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.4rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
}

.product-tabs-wrap {
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.product-tabs-nav {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-tabs-nav .nav-link {
    border-radius: 999px;
    padding: 0.82rem 1.2rem;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--heading);
}

.product-tabs-nav .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.26);
}

.product-tabs-nav .nav-link.active::after {
    display: none;
}

.product-tab-content {
    min-height: 220px;
}

.specification-table-wrap {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 16px 36px rgba(8, 18, 34, 0.08);
}

.specification-table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--surface-light-text);
    margin-bottom: 0;
}

.specification-table th,
.specification-table td {
    padding: 1rem 1rem;
    border-color: rgba(12, 23, 43, 0.1);
    background: transparent;
    color: var(--surface-light-text);
}

.specification-table th {
    color: var(--surface-light-heading);
    background: rgba(var(--primary-rgb), 0.06);
    width: 32%;
    font-weight: 800;
}

.specification-table td {
    color: var(--surface-light-text);
    background: rgba(255, 255, 255, 0.98);
}

.contact-card p:last-child,
.contact-side-panel p:last-child {
    margin-bottom: 0;
}

.site-footer {
    padding: 72px 0 30px;
    background: var(--footer-bg);
    color: var(--footer-text);
}

.footer-corporate.site-footer {
    background: var(--footer-bg);
}

.footer-grid .footer-main > div > *:not(h5) {
    padding: 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.footer-dark.site-footer {
    background:
        radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.22), transparent 24%),
        #030811;
}

.footer-dark .footer-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(var(--primary-rgb), 0.36));
}

.footer-band .footer-cta {
    border-radius: 999px;
    padding-inline: 2.4rem;
}

.footer-slate.site-footer {
    background: linear-gradient(180deg, #101c2e, #1a2a3b);
}

.footer-slate .footer-brand img {
    background: rgba(255, 255, 255, 0.92);
}

.footer-center .footer-cta,
.footer-center .footer-main,
.footer-center .footer-bottom {
    text-align: center;
}

.footer-center .footer-cta,
.footer-center .footer-main .social-links,
.footer-center .footer-cta-actions {
    justify-content: center;
    justify-items: center;
}

.footer-center .footer-main {
    justify-content: center;
}

.footer-industrial.site-footer {
    background:
        linear-gradient(180deg, #081222, #0d1828),
        var(--footer-bg);
}

.footer-industrial .footer-main > div {
    border-top: 3px solid rgba(var(--primary-rgb), 0.28);
    padding-top: 1rem;
}

.footer-gradient.site-footer {
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.26), #07121f 32%, #03070d 100%);
}

.footer-gradient .footer-cta {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.95), rgba(255, 255, 255, 0.16));
}

.footer-border.site-footer {
    border-top: 6px solid rgba(var(--primary-rgb), 0.52);
}

.footer-border .footer-cta,
.footer-border .footer-main {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem;
    border-radius: 28px;
}

.footer-compact.site-footer {
    padding-top: 52px;
}

.footer-compact .footer-cta {
    padding: 1.4rem 1.6rem;
}

.footer-compact .footer-main {
    margin-bottom: 1.25rem;
}

.footer-premium.site-footer {
    background:
        radial-gradient(circle at top center, rgba(var(--primary-rgb), 0.18), transparent 18%),
        #050b14;
}

.footer-premium .footer-cta {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.footer-column .footer-main > div {
    position: relative;
}

.footer-column .footer-main > div:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0.4rem;
    right: calc(var(--bs-gutter-x) * -0.5);
    bottom: 0.4rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-tech.site-footer {
    background:
        linear-gradient(180deg, #07101c, #03070d),
        var(--footer-bg);
    position: relative;
}

.footer-tech.site-footer::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-2), transparent);
}

.footer-tech .social-links a {
    box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), 0.22);
}

.footer-frame.site-footer {
    background: linear-gradient(180deg, #0a1321, #081222);
}

.footer-frame .footer-cta,
.footer-frame .footer-main {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    padding: 1.6rem;
    border-radius: 28px;
}

.footer-frame .footer-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(var(--primary-rgb), 0.3));
}

.footer-wave.site-footer {
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.24), #081222 36%, #04080f 100%);
    position: relative;
    overflow: hidden;
}

.footer-wave.site-footer::after {
    content: '';
    position: absolute;
    inset: auto -10% 0 -10%;
    height: 120px;
    background:
        radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.08), transparent 34%),
        radial-gradient(circle at 70% 0, rgba(var(--primary-rgb), 0.18), transparent 30%);
    pointer-events: none;
}

.footer-wave .footer-cta {
    position: relative;
    z-index: 1;
    border-radius: 30px 30px 18px 18px;
}

.footer-panel .footer-main > div {
    padding: 1.25rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.footer-monolith.site-footer {
    background: linear-gradient(180deg, #02050a, #08101a);
}

.footer-monolith .footer-cta {
    background: #0f1b29;
    border-left: 6px solid var(--primary);
    border-radius: 22px;
}

.footer-monolith .footer-main {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.footer-sunset.site-footer {
    background: linear-gradient(180deg, rgba(242, 165, 49, 0.16), #081222 30%, #050a12 100%);
}

.footer-sunset .footer-cta {
    background: linear-gradient(135deg, #f2a531, rgba(var(--primary-rgb), 0.78));
}

.footer-sunset .footer-cta .section-kicker {
    background: rgba(8, 18, 34, 0.14);
}

.footer-aero.site-footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(var(--primary-rgb), 0.16), #081222 52%, #040811 100%);
}

.footer-aero .footer-cta,
.footer-aero .footer-main {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    padding: 1.6rem;
    border-radius: 28px;
}

.footer-aero .footer-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(var(--primary-rgb), 0.28));
}

.footer-lattice .footer-main > div {
    position: relative;
    padding-left: 1.3rem;
}

.footer-lattice .footer-main > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.9), rgba(var(--primary-rgb), 0.18));
    border-radius: 999px;
}

.site-footer h3,
.site-footer h5,
.site-footer strong {
    color: #fff;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.9), rgba(var(--primary-rgb), 0.5));
    margin-bottom: 3rem;
}

.footer-cta .section-kicker {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.85);
}

.footer-cta-actions {
    display: grid;
    gap: 0.9rem;
    justify-items: end;
    flex: 0 0 auto;
}

.footer-cta-actions .btn {
    min-width: 192px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding-inline: 1.45rem;
}

.footer-main {
    margin-bottom: 2rem;
}

.footer-brand-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.78rem 0.98rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.footer-brand img {
    width: 280px;
    height: auto;
    object-fit: contain;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.footer-links a,
.footer-links span {
    color: var(--footer-text);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact i {
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-links-sm {
    gap: 0.55rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.social-links-sm a {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.16);
}

.header-social-links.social-links a {
    background: #fff;
    color: var(--heading);
    border: 1px solid rgba(12, 23, 43, 0.1);
    box-shadow: 0 10px 22px rgba(8, 18, 34, 0.06);
}

.header-social-links.social-links a:hover {
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
}

.header-darkband .header-social-links.social-links a,
.header-industrial .header-social-links.social-links a {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.header-darkband .header-social-links.social-links a:hover,
.header-industrial .header-social-links.social-links a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--primary-2);
}

.footer-social-links a {
    width: 38px;
    height: 38px;
}

.header-buttons {
    flex-shrink: 0;
}

.footer-brochure {
    margin-top: 1.2rem;
}

.footer-brochure a {
    color: #fff;
    font-weight: 700;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.94rem;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.15rem;
    border-radius: 999px;
    background: #1bd741;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(27, 215, 65, 0.35);
}

.floating-whatsapp i {
    font-size: 1.15rem;
}

.lead-chatbot-shell {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1051;
}

.lead-chatbot-shell.has-whatsapp .floating-chatbot {
    bottom: 90px;
}

.lead-chatbot-shell.has-whatsapp .lead-chatbot-panel {
    bottom: 154px;
}

.floating-chatbot {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1051;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 54px;
    padding: 0.82rem 1rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #081222, #16314f);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 20px 42px rgba(8, 18, 34, 0.26);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.floating-chatbot:hover {
    transform: translateY(-1px);
}

.lead-chatbot-shell.is-open .floating-chatbot {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.96);
}

.floating-chatbot-icon {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.96rem;
}

.lead-chatbot-panel {
    position: fixed;
    right: 22px;
    bottom: 88px;
    width: min(360px, calc(100vw - 24px));
    border-radius: 24px;
    border: 1px solid rgba(12, 23, 43, 0.08);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 30px 80px rgba(8, 18, 34, 0.18);
    backdrop-filter: blur(18px);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--surface-light-text);
}

.lead-chatbot-shell.is-open .lead-chatbot-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.lead-chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.95rem 0.95rem 0.8rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb), 0.04));
    border-bottom: 1px solid rgba(12, 23, 43, 0.08);
}

.lead-chatbot-header strong {
    display: block;
    color: var(--surface-light-heading);
    font-family: 'Sora', sans-serif;
}

.lead-chatbot-header p {
    margin-top: 0.25rem;
    font-size: 0.84rem;
    color: var(--surface-light-muted);
}

.lead-chatbot-close {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(8, 18, 34, 0.06);
    color: var(--surface-light-heading);
}

.lead-chatbot-body {
    max-height: 290px;
    overflow-y: auto;
    padding: 0.9rem;
    display: grid;
    gap: 0.7rem;
    background:
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.08), transparent 28%),
        #fbfdff;
}

.chatbot-message {
    display: flex;
}

.chatbot-message.user {
    justify-content: flex-end;
}

.chatbot-bubble {
    max-width: 88%;
    padding: 0.82rem 0.92rem;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(8, 18, 34, 0.06);
}

.chatbot-message.assistant .chatbot-bubble {
    background: #fff;
    color: var(--surface-light-text);
    border-top-left-radius: 8px;
}

.chatbot-message.user .chatbot-bubble {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    border-top-right-radius: 8px;
}

.chatbot-message.user .chatbot-bubble p,
.chatbot-message.user .chatbot-bubble strong,
.chatbot-message.user .chatbot-bubble span {
    color: #fff;
}

.chatbot-bubble p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.chatbot-message.assistant .chatbot-bubble p,
.chatbot-message.assistant .chatbot-bubble strong,
.chatbot-message.assistant .chatbot-bubble span {
    color: var(--surface-light-text);
}

.chatbot-message.assistant-card .chatbot-bubble {
    max-width: 100%;
}

.chatbot-summary-card {
    display: grid;
    gap: 0.7rem;
}

.chatbot-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(12, 23, 43, 0.08);
}

.chatbot-summary-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.chatbot-summary-row span {
    color: var(--surface-light-muted);
    font-size: 0.86rem;
}

.chatbot-summary-row strong {
    color: var(--surface-light-heading);
    font-size: 0.92rem;
    text-align: right;
}

.lead-chatbot-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0 0.9rem 0.8rem;
}

.chatbot-chip {
    border: 1px solid rgba(var(--primary-rgb), 0.16);
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--surface-light-heading);
    border-radius: 999px;
    padding: 0.52rem 0.82rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.chatbot-chip:hover {
    border-color: rgba(var(--primary-rgb), 0.32);
    background: rgba(var(--primary-rgb), 0.12);
}

.lead-chatbot-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding: 0 0.9rem 0.9rem;
}

.lead-chatbot-form .form-control {
    min-height: 48px;
    padding: 0.8rem 0.9rem;
}

.lead-chatbot-form .btn {
    min-width: 48px;
    padding-inline: 0.9rem;
}

.lead-chatbot-status {
    padding: 0 0.9rem 0.9rem;
    color: var(--surface-light-muted);
    font-size: 0.82rem;
}

.page-link {
    color: var(--primary);
    border-radius: 999px !important;
    border: 1px solid var(--border);
    margin-inline: 0.25rem;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: transparent;
}

.form-control,
.form-select {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border-color: rgba(12, 23, 43, 0.12);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.12);
}

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

    .mega-menu-panel {
        display: none;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-family-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-segment-indicators.carousel-indicators {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .achievement-stat-grid,
    .achievement-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .achievement-timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-pill .main-navbar,
    .header-boxed .main-navbar,
    .header-floating .main-navbar {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
    }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 78px 0;
    }

    .catalog-banner-shell {
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-banner-copy h1 {
        max-width: none;
    }

    .catalog-banner-stats {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .catalog-family-grid,
    .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-product-grid[data-count="1"] {
        grid-template-columns: 1fr;
    }

    .catalog-product-grid[data-count="1"] .catalog-product-card {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    }

    .hero-section {
        padding-top: 84px;
    }

    .hero-stats,
    .feature-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-segment-carousel .carousel-inner,
    .hero-segment-carousel .carousel-item {
        min-height: 0;
    }

    .hero-segment-shell {
        min-height: clamp(760px, 96vh, 1040px);
        border-radius: 32px;
        background:
            linear-gradient(180deg, rgba(8, 11, 14, 0.88) 0%, rgba(8, 11, 14, 0.72) 34%, rgba(8, 11, 14, 0.42) 100%),
            radial-gradient(circle at top right, var(--segment-glow), transparent 28%),
            var(--segment-image) center center / cover no-repeat;
    }

    .home-slider-page .hero-section.hero-segment-section {
        padding-top: 0.22rem;
        padding-bottom: 0.6rem;
    }

    .home-slider-page .hero-segment-shell {
        min-height: clamp(320px, 44vh, 390px);
        padding: 0.45rem 0.45rem 0;
        background:
            radial-gradient(circle at 22% 18%, rgba(171, 201, 79, 0.12), transparent 20%),
            linear-gradient(90deg, rgba(10, 16, 22, 0.98) 0%, rgba(10, 16, 22, 0.95) 62%, rgba(10, 16, 22, 0.9) 100%),
            linear-gradient(180deg, #182028, #10161d);
    }

    .home-slider-page .hero-segment-stage {
        min-height: calc(clamp(320px, 44vh, 390px) - 42px);
        padding: 0.72rem;
        border-width: 2px;
    }

    .hero-segment-copy {
        padding-block: 0.35rem 0;
    }

    .home-slider-page .hero-segment-copy h1 {
        font-size: clamp(1.38rem, 3.1vw, 1.8rem);
    }

    .home-slider-page .hero-segment-copy p {
        font-size: 0.76rem;
    }

    .home-slider-page .header-buttons {
        gap: 0.45rem !important;
    }

    .home-slider-page .header-buttons .btn {
        padding: 0.65rem 0.82rem;
        font-size: 0.82rem;
    }

    .hero-segment-media {
        max-width: none;
    }

    .home-slider-page .hero-segment-media {
        width: min(100%, 150px);
    }

    .home-slider-page .hero-segment-visual,
    .home-slider-page .hero-segment-media img {
        min-height: 118px;
        max-height: 118px;
    }

    .home-slider-page .hero-segment-showcase {
        max-width: 250px;
        padding: 0.5rem;
    }

    .home-slider-page .hero-segment-showcase-frame {
        min-height: 160px;
    }

    .home-slider-page .hero-segment-showcase-frame img {
        max-height: 148px;
    }

    .home-slider-page .hero-segment-indicators.carousel-indicators {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hero-segment-visual,
    .hero-segment-media img {
        min-height: 320px;
    }

    .hero-segment-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-segment-nav {
        justify-content: flex-end;
    }

    .achievement-mosaic,
    .achievement-video-grid {
        grid-template-columns: 1fr;
    }

    .achievement-mosaic {
        grid-template-areas:
            "card1"
            "card2"
            "card3"
            "card4";
        min-height: 0;
    }

    .achievement-mosaic-card {
        min-height: 220px;
    }

    .footer-cta,
    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta-actions {
        width: 100%;
        justify-items: stretch;
    }

    .footer-center .footer-cta,
    .footer-center .footer-main,
    .footer-center .footer-bottom {
        text-align: left;
    }

    .footer-column .footer-main > div::after {
        display: none;
    }

    .footer-lattice .footer-main > div::before {
        display: none;
    }

    .product-gallery-main img {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .hero-segment-indicators.carousel-indicators {
        grid-template-columns: 1fr;
    }

    .hero-segment-shell {
        min-height: 0;
        padding: 1rem;
        border-radius: 24px;
    }

    .home-slider-page .hero-section.hero-segment-section {
        padding-top: 0.18rem;
        padding-bottom: 0.5rem;
    }

    .home-slider-page .hero-segment-shell {
        min-height: auto;
        padding: 0.35rem 0.35rem 0;
        border-radius: 14px 14px 0 0;
        background:
            linear-gradient(180deg, rgba(10, 16, 22, 0.98) 0%, rgba(10, 16, 22, 0.94) 100%),
            linear-gradient(180deg, #182028, #10161d);
    }

    .home-slider-page .hero-segment-stage {
        min-height: auto;
        padding: 0.6rem;
        border-radius: 10px 10px 0 0;
    }

    .hero-segment-copy {
        padding-block: 0.2rem 0;
    }

    .hero-segment-copy h1 {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .home-slider-page .hero-segment-copy h1 {
        max-width: none;
        font-size: clamp(1.32rem, 5.2vw, 1.74rem);
        margin-top: 0.3rem;
        margin-bottom: 0.28rem;
    }

    .home-slider-page .hero-segment-copy p {
        font-size: 0.74rem;
    }

    .home-slider-page .hero-actions .btn {
        width: 100%;
    }

    .home-slider-page .navbar-brand img {
        width: 176px;
    }

    .home-slider-page .brand-logo-frame {
        min-height: 52px;
        padding: 0.2rem 0.45rem;
    }

    .hero-segment-visual,
    .hero-segment-media img {
        min-height: 240px;
    }

    .home-slider-page .hero-segment-media {
        width: min(100%, 180px);
        margin-inline: auto;
    }

    .home-slider-page .hero-segment-visual,
    .home-slider-page .hero-segment-media img {
        min-height: 128px;
        max-height: 128px;
    }

    .home-slider-page .hero-segment-showcase {
        display: none;
    }

    .hero-segment-chips {
        gap: 0.55rem;
    }

    .hero-segment-chips span {
        font-size: 0.8rem;
    }

    .hero-segment-nav {
        justify-content: space-between;
    }

    .home-slider-page .hero-segment-indicators.carousel-indicators {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-slider-page .hero-segment-controls {
        border-radius: 0 0 14px 14px;
    }

    .home-slider-page .hero-segment-indicator {
        min-height: 46px;
        padding: 0.58rem 0.7rem !important;
    }

    .home-slider-page .hero-segment-indicator strong {
        font-size: 0.74rem;
    }

    .mobile-mega-grid {
        grid-template-columns: 1fr;
    }

    .catalog-theme .catalog-banner {
        padding-top: 22px;
    }

    .catalog-banner-shell {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .catalog-banner-copy h1 {
        font-size: clamp(2.25rem, 9vw, 3.4rem);
    }

    .catalog-banner-stats,
    .catalog-sidebar,
    .catalog-context-bar,
    .catalog-family-grid,
    .catalog-family-grid-compact,
    .catalog-product-grid {
        grid-template-columns: 1fr;
    }

    .catalog-product-grid[data-count="1"] .catalog-product-card {
        grid-template-columns: 1fr;
    }

    .catalog-product-grid[data-count="1"] .catalog-product-media {
        border-right: 0;
        border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
    }

    .catalog-panel-head,
    .catalog-product-actions,
    .catalog-banner-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-results-summary {
        justify-items: start;
    }

    .catalog-banner-actions .btn,
    .catalog-product-actions .btn,
    .catalog-support-actions .btn {
        width: 100%;
    }

    .catalog-product-media {
        min-height: 220px;
    }

    .catalog-product-media img {
        height: 190px;
    }

    .catalog-sidebar-card,
    .catalog-panel {
        padding: 1.1rem;
        border-radius: 22px;
    }

    .hero-copy h1,
    .banner-content h1,
    .product-summary-card h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .section-space {
        padding: 64px 0;
    }

    .hero-actions,
    .product-card-actions {
        flex-direction: column;
    }

    .achievement-stat-grid,
    .achievement-timeline-grid,
    .achievement-gallery-grid,
    .achievement-video-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn,
    .product-card-actions .btn,
    .footer-cta-actions .btn {
        width: 100%;
    }

    .product-media img {
        height: 230px;
    }

    .product-gallery-main img {
        height: 340px;
    }

    .achievements-copy,
    .achievement-stat-card,
    .achievement-timeline-card,
    .achievement-photo-content,
    .achievement-video-body,
    .achievement-empty-media {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .header-topbar {
        display: none;
    }

    .floating-whatsapp span {
        display: none;
    }

    .brand-logo-frame {
        min-height: 70px;
        padding: 0.55rem 0.75rem;
        border-radius: 20px;
    }

    .navbar-brand img {
        width: 240px;
    }

    .footer-brand-frame {
        padding: 0.65rem 0.8rem;
    }

    .footer-brand img {
        width: 230px;
    }

    .floating-whatsapp,
    .floating-chatbot {
        right: 12px;
        bottom: 12px;
    }

    .lead-chatbot-shell.has-whatsapp .floating-chatbot {
        bottom: 76px;
    }

    .lead-chatbot-shell.has-whatsapp .lead-chatbot-panel {
        bottom: 138px;
    }

    .floating-chatbot {
        min-height: 46px;
        padding: 0.72rem 0.85rem;
        gap: 0.48rem;
        font-size: 0.84rem;
    }

    .floating-chatbot span:last-child {
        display: inline;
        max-width: 82px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lead-chatbot-shell,
    .lead-chatbot-panel,
    .floating-chatbot {
        right: 12px;
    }

    .lead-chatbot-panel {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 68px;
        border-radius: 22px;
        max-height: calc(100vh - 88px);
    }

    .lead-chatbot-header {
        padding: 0.85rem 0.85rem 0.75rem;
    }

    .lead-chatbot-header p {
        font-size: 0.8rem;
    }

    .lead-chatbot-body {
        max-height: min(46vh, 320px);
        padding: 0.8rem;
    }

    .chatbot-bubble {
        max-width: 92%;
        padding: 0.78rem 0.84rem;
    }

    .chatbot-bubble p {
        font-size: 0.86rem;
    }

    .lead-chatbot-quick {
        padding: 0 0.8rem 0.72rem;
    }

    .chatbot-chip {
        font-size: 0.76rem;
        padding: 0.48rem 0.72rem;
    }

    .lead-chatbot-form {
        padding: 0 0.8rem 0.8rem;
        grid-template-columns: minmax(0, 1fr) 44px;
    }

    .lead-chatbot-form .form-control {
        min-height: 44px;
        font-size: 0.92rem;
        padding: 0.72rem 0.82rem;
    }

    .lead-chatbot-form .btn {
        min-width: 44px;
        padding-inline: 0.75rem;
    }

    .lead-chatbot-status {
        padding: 0 0.8rem 0.8rem;
        font-size: 0.78rem;
    }

    .chatbot-summary-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .chatbot-summary-row strong {
        text-align: left;
    }
}

/* Premium polish final overrides */
.site-header {
    backdrop-filter: blur(22px);
}

.header-topbar {
    background: linear-gradient(90deg, #07111f 0%, #68192f 58%, #c7848d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
    padding: 0.72rem 0;
}

.main-navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 14px 38px rgba(8, 18, 34, 0.05);
}

.site-header.is-scrolled .main-navbar {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 48px rgba(8, 18, 34, 0.09);
}

.main-navbar .container {
    min-height: 82px;
    gap: 1.15rem;
}

.navbar-brand img {
    width: 212px;
}

.brand-logo-frame {
    min-height: 72px;
    padding: 0.55rem 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 14px 32px rgba(8, 18, 34, 0.08);
}

.navbar-nav {
    gap: 0.25rem;
}

.nav-link,
.nav-link-button {
    padding: 1rem 0.9rem;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.nav-link::before,
.nav-link-button::before {
    content: '';
    position: absolute;
    inset: 0.48rem 0.42rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.06);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link-button:hover::before,
.nav-link.active::before,
.nav-link-button.active::before {
    opacity: 1;
}

.nav-link.active::after {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.35rem;
    height: 2px;
}

.header-buttons .btn {
    min-height: 50px;
    padding: 0.84rem 1.2rem;
    border-radius: 18px;
    font-size: 0.92rem;
}

.mega-menu-shell {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.35rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 249, 253, 0.98));
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 34px 70px rgba(8, 18, 34, 0.16);
}

.mega-menu-lead {
    padding: 1.35rem;
    border-radius: 24px;
    background: radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.12), transparent 45%), linear-gradient(180deg, #f7f9fc, #eef3f9);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.mega-menu-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 16px 34px rgba(8, 18, 34, 0.06);
}

.offcanvas {
    border-left: 1px solid rgba(12, 23, 43, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.98));
}

.offcanvas-header {
    align-items: flex-start;
    padding: 1.1rem 1.1rem 0.9rem;
    border-bottom: 1px solid rgba(12, 23, 43, 0.08);
}

.section-space {
    padding: clamp(72px, 9vw, 108px) 0;
}

.section-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(241, 245, 251, 0.96));
}

.section-heading h2 {
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.content-page .page-banner,
.catalog-page .page-banner,
.page-banner {
    position: relative;
    overflow: hidden;
    padding: 94px 0 52px;
    background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.12), transparent 26%), linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(245, 248, 252, 0.96));
    border-bottom: 1px solid rgba(12, 23, 43, 0.06);
}

.banner-content h1 {
    margin-top: 1.15rem;
    font-size: clamp(2.8rem, 5.6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.breadcrumb {
    gap: 0.35rem;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(12, 23, 43, 0.08);
    backdrop-filter: blur(14px);
}

.feature-card,
.mission-card,
.contact-card,
.contact-side-panel,
.inquiry-form-card,
.product-summary-card,
.about-visual-panel,
.testimonial-card,
.team-card,
.cta-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.96));
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 20px 44px rgba(8, 18, 34, 0.08);
}

.about-visual-panel img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.product-gallery {
    position: sticky;
    top: 132px;
    gap: 1rem;
}

.product-gallery-main {
    padding: 1.4rem;
    min-height: 560px;
    border-radius: 32px;
    background: radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.08), transparent 24%), linear-gradient(180deg, #ffffff, #f4f7fb);
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 22px 48px rgba(8, 18, 34, 0.08);
}

.product-gallery-main img {
    height: 500px;
}

.product-summary-card {
    position: sticky;
    top: 132px;
    display: grid;
    gap: 1rem;
}

.product-summary-card h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.product-summary-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-summary-points div,
.product-fact-card,
.product-spec-preview-item {
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(12, 23, 43, 0.08);
}

.product-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-tabs-wrap {
    padding: 1.2rem;
    border-radius: 32px;
    border: 1px solid rgba(12, 23, 43, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.96));
    box-shadow: 0 18px 42px rgba(8, 18, 34, 0.07);
}

.catalog-banner-shell {
    min-height: 420px;
    padding: clamp(1.8rem, 3.5vw, 2.4rem);
    border-radius: 34px;
    box-shadow: 0 28px 62px rgba(8, 18, 34, 0.12);
}

.catalog-sidebar {
    top: 132px;
}

.catalog-sidebar-card,
.catalog-panel,
.catalog-product-card {
    border-radius: 30px;
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 22px 48px rgba(8, 18, 34, 0.08);
}

.catalog-family-card {
    min-height: 310px;
}

.catalog-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(8, 18, 34, 0.12);
    border-color: rgba(var(--primary-rgb), 0.16);
}

.catalog-product-media {
    background: linear-gradient(180deg, #fbfcfe, #edf2f7);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #07111f 0%, #111c2a 50%, #3f1224 100%);
    padding: 0 0 28px;
}

.footer-cta {
    padding: 2rem 2.15rem;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(165, 21, 53, 0.88), rgba(101, 12, 37, 0.94)), linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.footer-main {
    padding: 2.4rem 0 2rem;
}

.footer-brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.15rem;
}

.footer-brand-pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.58rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
}

.footer-catalog-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-resource-card {
    margin-top: 1.2rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1199.98px) {
    .main-navbar .container {
        min-height: 76px;
    }

    .product-gallery,
    .product-summary-card,
    .catalog-sidebar {
        position: static;
    }

    .product-gallery-main {
        min-height: 460px;
    }

    .product-gallery-main img {
        height: 400px;
    }

    .mega-menu-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .main-navbar .container {
        min-height: 70px;
    }

    .navbar-brand img {
        width: 176px;
    }

    .brand-logo-frame {
        min-height: 60px;
        padding: 0.45rem 0.75rem;
    }

    .page-banner,
    .content-page .page-banner,
    .catalog-page .page-banner {
        padding: 72px 0 44px;
    }

    .banner-content h1 {
        font-size: clamp(2.3rem, 10vw, 3.2rem);
    }

    .product-summary-points,
    .product-fact-grid {
        grid-template-columns: 1fr;
    }

    .catalog-banner-shell,
    .footer-cta {
        border-radius: 26px;
    }
}

.mega-menu-lead-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 1.15rem;
}

.mega-menu-lead-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.58rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    color: var(--surface-light-heading);
    font-size: 0.82rem;
    font-weight: 700;
}

.mega-menu-contact-card {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(8, 18, 34, 0.04);
    border: 1px solid rgba(12, 23, 43, 0.08);
}

.mega-menu-contact-label {
    color: var(--surface-light-muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mega-menu-contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--surface-light-heading);
    font-weight: 700;
}

.home-showcase-section {
    padding-top: 14px;
}

.home-showcase-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.25fr);
    gap: 1.2rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.98));
    border: 1px solid rgba(12, 23, 43, 0.08);
    box-shadow: 0 28px 58px rgba(8, 18, 34, 0.08);
}

.home-showcase-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 0.5rem;
}

.home-showcase-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.home-showcase-copy p {
    margin-bottom: 0;
    color: var(--surface-light-muted);
}

.home-showcase-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-showcase-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: 26px;
    background: #dde6f2;
    box-shadow: 0 18px 38px rgba(8, 18, 34, 0.08);
}

.home-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 27, 0.08), rgba(7, 14, 27, 0.84));
}

.home-showcase-card:hover img {
    transform: scale(1.05);
}

.home-showcase-card-overlay {
    position: absolute;
    inset: auto 1.1rem 1.1rem 1.1rem;
    z-index: 1;
    display: grid;
    gap: 0.28rem;
}

.home-showcase-card-overlay small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-showcase-card-overlay strong,
.home-showcase-card-overlay span {
    color: #fff;
}

.home-showcase-card-1 {
    grid-row: span 2;
    min-height: 460px;
}

.product-media {
    position: relative;
}

.product-media-cta,
.catalog-product-hover-cta {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border-radius: 999px;
    background: rgba(8, 18, 34, 0.82);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.product-card:hover .product-media-cta,
.catalog-product-card:hover .catalog-product-hover-cta {
    opacity: 1;
    transform: translateY(0);
}

.product-card-glance,
.catalog-product-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 0.1rem;
}

.product-card-glance span,
.catalog-product-meta-grid span {
    display: grid;
    gap: 0.18rem;
    padding: 0.78rem 0.85rem;
    border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    color: var(--surface-light-muted);
    font-size: 0.83rem;
}

.product-card-glance strong,
.catalog-product-meta-grid strong {
    color: var(--surface-light-heading);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.category-card {
    overflow: hidden;
    padding: 0;
}

.category-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e4ebf5;
}

.category-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card-media img {
    transform: scale(1.05);
}

.category-card-top,
.category-card h3,
.category-card p,
.category-card-stats {
    padding-inline: 1.4rem;
}

.category-card-top {
    margin-bottom: 0.8rem;
    margin-top: 1.2rem;
}

.category-card-arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
}

.category-card h3 {
    font-size: 1.45rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.category-card p {
    margin-bottom: 1rem;
}

.category-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-bottom: 1.4rem;
}

.category-card-stats strong {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--surface-light-heading);
    font-size: 0.82rem;
}

.catalog-family-body p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    max-width: 34ch;
}

.catalog-family-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.9rem;
}

.catalog-family-stat {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
}

.catalog-conversion-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(255, 255, 255, 0.94)),
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.16), transparent 36%);
    border: 1px solid rgba(var(--primary-rgb), 0.14);
}

.catalog-conversion-strip strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--surface-light-heading);
}

.catalog-conversion-strip p {
    margin-bottom: 0;
    color: var(--surface-light-muted);
}

.catalog-conversion-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.catalog-product-media {
    position: relative;
    overflow: hidden;
}

.catalog-product-media img {
    transition: transform 0.4s ease;
}

.catalog-product-card:hover .catalog-product-media img {
    transform: scale(1.05);
}

@media (max-width: 1199.98px) {
    .home-showcase-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .catalog-conversion-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-showcase-card-1 {
        grid-row: span 1;
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .home-showcase-mosaic,
    .product-card-glance,
    .catalog-product-meta-grid {
        grid-template-columns: 1fr;
    }

    .catalog-family-foot,
    .catalog-conversion-actions,
    .category-card-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-media-cta,
    .catalog-product-hover-cta {
        opacity: 1;
        transform: none;
    }
}

/* Compact desktop mega menu */
.mega-menu-panel {
    top: calc(100% + 8px);
    width: min(720px, calc(100vw - 220px));
}

.mega-menu-shell {
    display: block;
    padding: 0.65rem;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(8, 18, 34, 0.12);
}

.mega-menu-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.68rem 0.78rem;
    margin-bottom: 0.55rem;
    border-radius: 14px;
}

.mega-menu-lead-copy {
    gap: 0.2rem;
}

.mega-menu-kicker {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
}

.mega-menu-lead h3 {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1;
}

.mega-menu-lead-copy p {
    max-width: 54ch;
    font-size: 0.64rem;
    line-height: 1.35;
}

.mega-menu-lead-actions {
    gap: 0.35rem;
    margin-left: auto;
}

.mega-menu-lead-actions .btn {
    min-height: 32px;
    padding: 0.48rem 0.72rem;
    border-radius: 12px;
    font-size: 0.72rem;
}

.mega-menu-content {
    display: grid;
    gap: 0.45rem;
}

.mega-menu-content > .mega-menu-group-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0.4rem;
    overflow: visible;
    padding-bottom: 0;
}

.mega-menu-content > .mega-menu-group-grid > .mega-menu-item {
    min-width: 0;
    width: auto;
    flex: none;
}

.mega-menu-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0.45rem 0.35rem;
    border-radius: 12px;
    min-height: 0;
    align-content: start;
}

.mega-menu-item.is-active .mega-menu-card,
.mega-menu-card:hover,
.mega-menu-card:focus-visible {
    border-color: rgba(var(--primary-rgb), 0.22);
    background: rgba(var(--primary-rgb), 0.08);
    box-shadow: 0 10px 24px rgba(8, 18, 34, 0.08);
}

.mega-menu-card-media {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.mega-menu-card-media img {
    padding: 0.18rem;
}

.mega-menu-card-body {
    gap: 0.12rem;
    justify-items: center;
}

.mega-menu-card-body strong {
    font-size: 0.72rem;
    line-height: 1.2;
}

.mega-menu-card-body small {
    font-size: 0.58rem;
    line-height: 1.2;
}

.mega-menu-card-action {
    font-size: 0.52rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.mega-menu-subpanels {
    position: relative;
}

.mega-menu-subpanel {
    display: none;
    gap: 0.45rem;
    padding: 0.55rem;
    border-radius: 14px;
    background: rgba(248, 250, 253, 0.96);
    border: 1px solid rgba(12, 23, 43, 0.08);
}

.mega-menu-subpanel.is-active {
    display: grid;
}

.mega-menu-subpanel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.mega-menu-subpanel-head strong {
    font-size: 0.72rem;
    line-height: 1.2;
    color: var(--heading);
}

.mega-menu-subpanel-head a {
    color: var(--primary);
    font-size: 0.62rem;
    font-weight: 800;
    white-space: nowrap;
    min-height: 0;
    padding: 0.32rem 0.56rem;
}

.mega-menu-subcategory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-height: 124px;
    overflow-y: auto;
    padding-right: 0.12rem;
}

.mega-menu-subcategory-link {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    min-height: 28px;
    padding: 0.28rem 0.42rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(12, 23, 43, 0.08);
    color: var(--heading);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.1;
}

.mega-menu-subcategory-thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(12, 23, 43, 0.08);
    flex: 0 0 18px;
}

.mega-menu-subcategory-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-subcategory-link:hover,
.mega-menu-subcategory-link:focus-visible {
    border-color: rgba(var(--primary-rgb), 0.22);
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
}

@media (max-width: 1399.98px) {
    .mega-menu-panel {
        width: min(660px, calc(100vw - 160px));
    }

    .mega-menu-content > .mega-menu-group-grid {
        display: grid !important;
    }
}
