:root {
    --site-bg: #f7f2e8;
    --site-surface: #fffdf8;
    --site-surface-soft: #f6efe1;
    --site-surface-strong: #eadfcb;
    --site-ink: #11261d;
    --site-ink-soft: #355244;
    --site-muted: #66756d;
    --site-line: rgba(17, 38, 29, 0.1);
    --site-line-strong: rgba(17, 38, 29, 0.18);
    --site-navy: #10271e;
    --site-navy-soft: #183629;
    --site-navy-muted: rgba(233, 240, 234, 0.78);
    --site-accent: #d18737;
    --site-accent-strong: #ae6221;
    --site-accent-soft: rgba(209, 135, 55, 0.14);
    --site-success: #2f8b57;
    --site-danger: #b35745;
    --site-shadow-lg: 0 30px 90px rgba(10, 20, 35, 0.14);
    --site-shadow-md: 0 18px 45px rgba(13, 24, 40, 0.12);
    --site-shadow-sm: 0 12px 28px rgba(13, 24, 40, 0.08);
    --site-shadow-hover: 0 24px 60px rgba(166, 184, 208, 0.24), 0 10px 30px rgba(13, 24, 40, 0.1);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container-max: 1320px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--site-ink);
    background:
        radial-gradient(circle at top left, rgba(217, 133, 59, 0.12), transparent 26%),
        radial-gradient(circle at bottom right, rgba(20, 34, 54, 0.08), transparent 24%),
        linear-gradient(180deg, #eff3f7 0%, #f7f9fb 52%, #edf2f7 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(19, 32, 51, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 32, 51, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.6), transparent 88%);
    pointer-events: none;
    z-index: -1;
}

body.site-loading {
    overflow: hidden;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(7, 13, 22, 0.3);
    backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 1040;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.section-title .title {
    font-family: 'Archivo', sans-serif;
    color: var(--site-ink);
    letter-spacing: 0;
    line-height: 1.1;
}

[data-split-reveal-ready="true"] {
    visibility: visible;
}

.split-reveal-char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.split-reveal-char {
    display: inline-block;
    backface-visibility: hidden;
    transform: translateZ(0);
}

p {
    color: var(--site-ink-soft);
    line-height: 1.75;
}

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

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

iframe {
    width: 100%;
}

.container {
    max-width: var(--container-max);
}

.text-muted {
    color: var(--site-muted) !important;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.eyebrow::before {
    content: '';
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: 0.65;
}

.section {
    position: relative;
    padding: 104px 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 252, 0.96)),
        radial-gradient(circle at right top, rgba(217, 133, 59, 0.08), transparent 26%);
}

.section-ink {
    background:
        radial-gradient(circle at top left, rgba(217, 133, 59, 0.16), transparent 24%),
        linear-gradient(160deg, #09111d 0%, #102238 52%, #122a42 100%);
    color: #fff;
}

.section-overlap {
    padding-top: 0;
    margin-top: -84px;
    z-index: 4;
}

.section-heading {
    display: grid;
    gap: 22px;
}

.section-heading h2 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.45rem);
}

.section-subtitle {
    max-width: 700px;
    margin: 0;
    font-size: 1.02rem;
    color: var(--site-muted);
}

.split-heading {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: end;
}

.section-heading-light h2,
.section-heading-light p,
.section-heading-light .section-subtitle,
.section-heading-light h3 {
    color: #f7fbff;
}

.section-heading-light .section-subtitle {
    color: rgba(232, 238, 245, 0.78);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--site-ink);
    transition: color 0.25s ease, gap 0.25s ease;
}

.link-arrow i[class^='iconoir-'],
.link-arrow i[class*=' iconoir-'] {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.link-arrow:hover,
.link-arrow:focus {
    color: var(--site-accent-strong);
    gap: 16px;
}

.link-arrow:hover i[class^='iconoir-'],
.link-arrow:hover i[class*=' iconoir-'],
.link-arrow:focus i[class^='iconoir-'],
.link-arrow:focus i[class*=' iconoir-'] {
    transform: translateX(2px);
}

.icon-chip,
.number-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(140deg, rgba(217, 133, 59, 0.16), rgba(11, 20, 34, 0.08));
    color: var(--site-accent-strong);
    font-size: 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(217, 133, 59, 0.18);
}

.number-chip {
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-list span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--site-line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--site-ink-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.bullet-list,
.meta-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bullet-list li,
.meta-list li {
    position: relative;
    padding-left: 24px;
    color: var(--site-ink-soft);
}

.bullet-list li::before,
.meta-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    box-shadow: 0 0 0 6px rgba(217, 133, 59, 0.14);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0.75rem 1.45rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 18px 34px rgba(184, 105, 35, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #e19452, #b7651d);
    color: #fff;
    border-color: transparent;
}

.btn-outline-dark {
    background: transparent;
    border-color: rgba(19, 32, 51, 0.18);
    color: var(--site-ink);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background: rgba(19, 32, 51, 0.06);
    border-color: rgba(19, 32, 51, 0.28);
    color: var(--site-ink);
}

.hero-actions .btn-outline-dark,
.section-ink .btn-outline-dark,
.site-footer .btn-outline-dark,
.page-hero .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.26);
    color: #fff;
}

.hero-actions .btn-outline-dark:hover,
.hero-actions .btn-outline-dark:focus,

.section-ink .btn-outline-dark:hover,
.section-ink .btn-outline-dark:focus,
.site-footer .btn-outline-dark:hover,
.site-footer .btn-outline-dark:focus,
.page-hero .btn-outline-dark:hover,
.page-hero .btn-outline-dark:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(41, 128, 185, 0.16), transparent 35%),
        radial-gradient(circle at bottom right, rgba(20, 34, 54, 0.22), transparent 30%),
        linear-gradient(160deg, rgba(237, 241, 245, 0.98), rgba(247, 249, 251, 0.98));
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader::before {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(19, 32, 51, 0.08);
    border-radius: 30px;
    background-image:
        linear-gradient(rgba(19, 32, 51, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 32, 51, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), transparent 86%);
    pointer-events: none;
}

#preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#preloader #status {
    width: min(100%, 340px);
    padding: 34px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(241, 244, 248, 0.82));
    box-shadow: 0 40px 100px rgba(13, 24, 40, 0.14);
    backdrop-filter: blur(22px) saturate(160%);
}

.preloader-layout {
    display: grid;
    justify-items: center;
    gap: 20px;
}

.preloader-engine {
    position: relative;
    display: grid;
    place-items: center;
    width: 152px;
    height: 152px;
}

.preloader-engine::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 38px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(225, 238, 250, 0.88));
    border: 1px solid rgba(17, 38, 80, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 16px 32px rgba(13, 24, 40, 0.08);
}

.preloader-icon {
    position: relative;
    z-index: 1;
    width: 136px;
    height: 136px;
    overflow: visible;
}

.preloader-icon .preloader-glow,
.preloader-icon .preloader-wave,
.preloader-icon .preloader-hull,
.preloader-icon .preloader-deck,
.preloader-icon .preloader-container-a,
.preloader-icon .preloader-container-b,
.preloader-icon .preloader-container-c,
.preloader-icon .preloader-smokestack,
.preloader-icon .preloader-smoke {
    transform-box: fill-box;
    transform-origin: center;
}

.preloader-glow {
    fill: rgba(41, 128, 185, 0.18);
    filter: blur(4px);
    animation: preloader-glow 2s ease-in-out infinite;
}

.preloader-wave {
    animation: preloader-wave 2.4s ease-in-out infinite;
}

.preloader-hull,
.preloader-deck,
.preloader-container-a,
.preloader-container-b,
.preloader-container-c,
.preloader-smokestack {
    animation: preloader-bob 2s ease-in-out infinite;
}

.preloader-smoke {
    fill: none;
    stroke: rgba(60, 80, 100, 0.55);
    stroke-width: 4.5;
    stroke-linecap: round;
    opacity: 0;
    animation: preloader-smoke 2.4s ease-in-out infinite;
}

.smoke-2 {
    animation-delay: 0.22s;
}

.preloader-copy {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
}

.preloader-copy span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.preloader-copy strong {
    font-family: 'Archivo', sans-serif;
    font-size: 1.1rem;
    color: var(--site-ink);
}

@keyframes preloader-glow {

    0%,
    100% {
        opacity: 0.38;
        transform: scaleX(0.94);
    }

    50% {
        opacity: 0.64;
        transform: scaleX(1.04);
    }
}

@keyframes preloader-wave {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-6px);
    }
}

@keyframes preloader-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes preloader-smoke {

    0% {
        opacity: 0;
        transform: translateY(8px) scaleY(0.9);
    }

    25%,
    55% {
        opacity: 0.65;
    }

    100% {
        opacity: 0;
        transform: translateY(-12px) scaleY(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {

    .preloader-glow,
    .preloader-wave,
    .preloader-hull,
    .preloader-deck,
    .preloader-container-a,
    .preloader-container-b,
    .preloader-container-c,
    .preloader-smokestack,
    .preloader-smoke {
        animation: none !important;
    }
}

@media (max-width: 575.98px) {
    #preloader::before {
        inset: 16px;
        border-radius: 22px;
    }

    #preloader #status {
        width: min(100%, 300px);
        padding: 28px 22px;
        border-radius: 28px;
    }

    .preloader-engine {
        width: 136px;
        height: 136px;
    }

    .preloader-engine::before {
        inset: 10px;
        border-radius: 32px;
    }

    .preloader-icon {
        width: 120px;
        height: 120px;
    }
}

#topnav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1050;
    background: transparent;
}

#topnav.nav-sticky {
    background: transparent !important;
    box-shadow: none !important;
}

.utility-bar {
    padding: 14px 0 8px;
    max-height: 140px;
    overflow: hidden;
    transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.32s ease, transform 0.32s ease;
}

.utility-bar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px 22px;
    padding: 14px 18px 14px 20px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, rgba(7, 16, 28, 0.88), rgba(17, 29, 44, 0.84));
    box-shadow: 0 14px 40px rgba(5, 12, 22, 0.18);
    backdrop-filter: blur(18px);
}

.utility-bar-copy {
    display: flex;
    align-items: center;
    gap: 16px;
}

.utility-bar-copy p {
    margin: 0;
    color: rgba(231, 238, 246, 0.74);
    font-size: 0.92rem;
    line-height: 1.5;
}

.utility-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(217, 133, 59, 0.14);
    color: #ffd0a2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.utility-bar-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.utility-bar-links a {
    color: rgba(231, 238, 246, 0.82);
    font-size: 0.92rem;
    font-weight: 600;
}

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

.nav-shell {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
    padding: 18px 24px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(252, 249, 244, 0.50), rgba(255, 255, 255, 0.50));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 26px 54px rgba(6, 14, 25, 0.18);
    backdrop-filter: blur(20px) saturate(155%);
    overflow: hidden;
    transition: margin-top 0.32s ease, transform 0.32s ease;
}

.nav-shell::before {
    content: '';
    position: absolute;
    left: 44%;
    bottom: -165px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 133, 59, 0.18), transparent 72%);
    pointer-events: none;
}

.nav-shell::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 360px;
    background: linear-gradient(90deg, rgba(10, 27, 38, 0.035), transparent);
    pointer-events: none;
}

.brand-panel,
#navigation,
.nav-actions {
    position: relative;
    z-index: 1;
}

body.home #topnav.nav-sticky {
    background: transparent !important;
    box-shadow: none !important;
}

#topnav.nav-sticky .utility-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* #topnav.nav-sticky .nav-shell {
    margin-top: 0;
} */

.menu-extras {
    display: none;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 152px;
    max-width: 100%;
}

.brand-caption {
    display: grid;
    gap: 4px;
    max-width: 280px;
}

.brand-caption strong {
    font-family: 'Archivo', sans-serif;
    font-size: 0.94rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--site-navy);
}

.brand-caption small {
    color: var(--site-muted);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.brand-support {
    max-width: 320px;
    margin: 0;
    color: var(--site-muted);
    font-size: 0.84rem;
    line-height: 1.55;
    font-weight: 600;
}

.brand-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-keywords span {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(19, 32, 51, 0.06);
    color: var(--site-ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .nav-shell {
        overflow: visible;
    }

    #topnav .navigation-menu.nav-light>li>a {
        color: var(--site-ink) !important;
    }

    #topnav .navigation-menu.nav-light>li.active>a,
    #topnav .navigation-menu.nav-light>li:hover>a,
    #topnav .navigation-menu.nav-light>li:focus-within>a {
        color: var(--site-accent-strong) !important;
        background: rgba(217, 133, 59, 0.12);
    }

    #topnav .navigation-menu.nav-light>li>.menu-arrow {
        border-right-color: rgba(19, 32, 51, 0.42) !important;
        border-bottom-color: rgba(19, 32, 51, 0.42) !important;
    }

    #topnav .navigation-menu.nav-light>li:hover>.menu-arrow,
    #topnav .navigation-menu.nav-light>li:focus-within>.menu-arrow,
    #topnav .navigation-menu.nav-light>li.active>.menu-arrow {
        border-right-color: var(--site-accent-strong) !important;
        border-bottom-color: var(--site-accent-strong) !important;
    }
}

.nav-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 12px;
    min-width: 0;
    justify-self: end;
}

.nav-cta-desktop {
    min-width: 190px;
}

.language-switcher {
    position: relative;
    width: 220px;
}

.nav-actions .language-switcher {
    width: 56px;
    flex: 0 0 auto;
}

.nav-actions .language-switcher__summary {
    justify-content: center;
    gap: 0;
    min-height: 52px;
    padding: 10px;
    border-radius: 16px;
}

.nav-actions .language-switcher__summary-flag {
    font-size: 1.15rem;
}

.nav-actions .language-switcher__summary-copy,
.nav-actions .language-switcher__summary-copy small {
    display: none;
}

.nav-actions .language-switcher__caret {
    display: none;
}

.nav-actions .language-switcher__menu {
    width: 240px;
}

.language-switcher__summary {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--site-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(13, 24, 40, 0.08);
    cursor: pointer;
    list-style: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.language-switcher__summary::-webkit-details-marker {
    display: none;
}

.language-switcher__summary:hover,
.language-switcher[open] .language-switcher__summary {
    border-color: rgba(209, 135, 55, 0.45);
    box-shadow: 0 16px 32px rgba(13, 24, 40, 0.1);
    transform: translateY(-1px);
}

.language-switcher__summary-flag,
.language-switcher__flag {
    font-size: 1.25rem;
    line-height: 1;
}

.language-switcher__summary-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.language-switcher__summary-copy strong {
    color: var(--site-ink);
    font-size: 0.95rem;
    line-height: 1;
}

.language-switcher__summary-copy small {
    color: var(--site-muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.language-switcher__caret {
    margin-left: auto;
    color: var(--site-muted);
    font-size: 0.9rem;
    transition: transform 0.22s ease;
}

.language-switcher[open] .language-switcher__caret {
    transform: rotate(180deg);
}

.language-switcher__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 30;
    width: 280px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(17, 38, 29, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 54px rgba(6, 14, 25, 0.18);
    backdrop-filter: blur(16px);
}

.language-switcher__menu-label {
    margin-bottom: 10px;
    color: var(--site-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.language-switcher__list {
    display: grid;
    gap: 6px;
}

.language-switcher__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    color: var(--site-ink);
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.language-switcher__link:hover,
.language-switcher__link:focus,
.language-switcher__link.is-active {
    background: rgba(209, 135, 55, 0.12);
    color: var(--site-accent-strong);
    transform: translateX(2px);
}

.language-switcher__meta {
    display: grid;
    gap: 2px;
}

.language-switcher__name {
    font-weight: 700;
    line-height: 1.1;
}

.language-switcher__code {
    color: var(--site-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar-toggle {
    display: none;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: #fff;
}

.navbar-toggle .lines {
    display: grid;
    gap: 6px;
    justify-items: center;
}

.navbar-toggle .lines span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggle.open .lines span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.open .lines span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.open .lines span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#navigation {
    flex: 1 1 auto;
    min-width: 0;
}

.nav-panel-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav-panel-top,
.mobile-nav-cta {
    display: none;
}

.navigation-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation-menu>li {
    position: relative;
}

#topnav .navigation-menu>li>a {
    display: inline-flex;
    align-items: center;
    padding: 13px 14px;
    border-radius: 16px;
    color: var(--site-ink);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-link-title {
    display: inline;
}

.nav-link-desc {
    display: none;
}

#topnav .navigation-menu>li.active>a,
#topnav .navigation-menu>li:hover>a,
#topnav .navigation-menu>li:focus-within>a {
    color: var(--site-accent-strong);
    background: rgba(217, 133, 59, 0.12);
}

.has-submenu {
    padding-right: 4px;
}

.menu-arrow {
    position: absolute;
    right: 11px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid rgba(19, 32, 51, 0.42);
    border-bottom: 2px solid rgba(19, 32, 51, 0.42);
    transform: rotate(45deg);
    transition: transform 0.25s ease, border-right-color 0.25s ease, border-bottom-color 0.25s ease;
}

.has-submenu:hover>.menu-arrow,
.has-submenu:focus-within>.menu-arrow,
.has-submenu.open>.menu-arrow {
    border-right-color: var(--site-accent-strong);
    border-bottom-color: var(--site-accent-strong);
    transform: rotate(45deg) translate(-1px, -1px);
}

.submenu {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 280px;
    margin: 0;
    padding: 12px;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--site-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 35;
}

.submenu li+li {
    margin-top: 6px;
}

.submenu li a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--site-ink-soft);
    font-weight: 600;
}

.submenu li.active a,
.submenu li a:hover,
.submenu li a:focus {
    background: rgba(217, 133, 59, 0.1);
    color: var(--site-accent-strong);
}

@media (min-width: 992px) {

    .has-submenu:hover>.submenu,
    .has-submenu:focus-within>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.hero-slider-section {
    position: relative;
    min-height: 100svh;
    padding: 0;
}

.hero-slider-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 100%;
}

.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    width: 100%;
    /* border-radius: 0 0 40px 40px; */
    box-shadow: 0 36px 90px rgba(7, 15, 27, 0.2);
}

.hero-slider-wrapper .tns-outer,
.hero-slider-wrapper .tns-inner,
.hero-slider-wrapper .slick-list,
.hero-slider-wrapper .slick-track,
.hero-slider {
    overflow: hidden;
    min-height: inherit;
    height: 100%;
}

.hero-slider {
    position: relative;
    min-height: inherit;
}

.hero-slider:not(.slick-initialized) .hero-slide:not(:first-child) {
    display: none !important;
}

.hero-slider.slick-slider {
    margin-bottom: 0;
}

.hero-slider-wrapper .slick-track {
    display: flex;
}

.hero-slider-wrapper .slick-slide {
    height: auto;
}

.hero-slide {
    position: relative;
    display: flex !important;
    align-items: center;
    min-height: 100svh;
    padding: clamp(220px, 24vh, 280px) clamp(32px, 4vw, 52px) clamp(44px, 8vh, 78px);
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(8, 16, 28, 0.24), transparent 46%),
        linear-gradient(180deg, rgba(8, 16, 28, 0.12), rgba(8, 16, 28, 0.45));
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 220px;
    background: linear-gradient(180deg, transparent, rgba(8, 16, 28, 0.55));
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    width: min(1320px, 100%);
    margin: 0 auto;
}

.hero-content-wrap {
    display: block;
}

/* [dir="rtl"] .hero-content-wrap{
    display: flex !important;
    justify-content: flex-end !important;
} */

.hero-copy {
    max-width: 700px;
}

.hero-copy .eyebrow {
    color: #ffd0a2;
}

.hero-copy h1 {
    margin: 22px 0 22px;
    font-size: clamp(1.95rem, 3.4vw, 3.55rem);
    color: #ffffff;
    line-height: 1.08;
}

.hero-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(235, 241, 247, 0.86);
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-slider-wrapper .tns-controls,
.hero-slider-wrapper .slick-arrow {
    position: absolute;
    bottom: 28px;
    z-index: 5;
}

.hero-slider-wrapper .tns-controls {
    right: 26px;
    display: flex;
    gap: 10px;
}

.hero-slider-wrapper .slick-prev {
    right: 88px;
}

.hero-slider-wrapper .slick-next {
    right: 26px;
}

.hero-slider-wrapper .tns-controls button,
.hero-slider-wrapper .slick-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
    backdrop-filter: blur(16px);
}

.hero-slider-wrapper .slick-arrow::before,
.category-slider-arrow::before,
.brand-logo-slider-arrow::before {
    display: none;
}

.hero-slider-wrapper .tns-controls button:hover,
.hero-slider-wrapper .slick-arrow:hover,
.hero-slider-wrapper .slick-arrow:focus {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-slider-wrapper .slick-arrow.slick-disabled {
    opacity: 0.42;
    pointer-events: none;
}

.hero-slider-wrapper .tns-nav,
.hero-slider-wrapper .slick-dots {
    position: absolute;
    left: 32px;
    bottom: 38px;
    z-index: 5;
    display: flex;
    gap: 8px;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-slider-wrapper .slick-dots li {
    margin: 0;
}

.hero-slider-wrapper .tns-nav button,
.hero-slider-wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    font-size: 0;
    line-height: 0;
}

.hero-slider-wrapper .slick-dots li button::before {
    display: none;
}

.hero-slider-wrapper .tns-nav button.tns-nav-active,
.hero-slider-wrapper .slick-dots li.slick-active button {
    width: 46px;
    background: linear-gradient(90deg, var(--site-accent), #ffd0a2);
}

.home-about-section {
    position: relative;
    overflow: hidden;
    /* padding: 88px 0 0; */
}

.home-about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left top, rgba(209, 135, 55, 0.14), transparent 24%),
        radial-gradient(circle at right center, rgba(17, 38, 29, 0.08), transparent 30%);
    pointer-events: none;
}

.home-about-shell {
    position: relative;
    padding: clamp(24px, 3vw, 38px);
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.96)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.1), transparent 30%);
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 28px 60px rgba(13, 24, 40, 0.1);
    overflow: hidden;
}

.home-about-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 28%),
        repeating-linear-gradient(105deg, rgba(209, 135, 55, 0.06) 0 2px, transparent 2px 28px);
    opacity: 0.38;
    pointer-events: none;
}

.home-about-shell>.row {
    position: relative;
    z-index: 1;
}

.home-about-visual {
    position: relative;
    min-height: 100%;
    background: #0d1724;
}

.home-about-visual img {
    display: block;
    min-height: 520px;
}

.home-about-visual-note {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    gap: 10px;
    max-width: min(320px, calc(100% - 48px));
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(9, 17, 29, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(6, 13, 24, 0.26);
    backdrop-filter: blur(16px);
    color: #fff;
}

.home-about-visual-note span {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffd0a2;
}

.home-about-visual-note strong {
    font-size: 1.08rem;
    line-height: 1.45;
}

.home-about-content {
    display: grid;
    gap: 28px;
    align-content: center;
}

.home-about-copy {
    display: grid;
    gap: 18px;
}

.home-about-copy h2 {
    margin: 0;
    font-size: clamp(2.2rem, 3.4vw, 3.45rem);
    line-height: 1.08;
    color: var(--site-ink);
}

.home-about-copy p {
    max-width: 62ch;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.75;
}

.home-about-points {
    display: grid;
    gap: 0;
}

.home-about-point {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(17, 38, 29, 0.08);
}

.home-about-point:first-child {
    padding-top: 0;
    border-top: 0;
}

.home-about-point strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.04rem;
    color: var(--site-ink);
}

.home-about-point p {
    margin: 0;
    color: var(--site-ink-soft);
    line-height: 1.65;
}

.home-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.category-slider-shell {
    position: relative;
}

.category-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.category-slider.slick-initialized {
    display: block;
}

.category-slider.slick-slider {
    margin-bottom: 0;
}

.category-slider .slick-list {
    margin: 0 -10px;
    padding: 8px 0 16px;
}

.category-slider .slick-track {
    display: flex;
}

.category-slider .slick-slide {
    height: auto;
    padding: 0 10px;
}

.category-slider-item,
.category-slider-item .category-card {
    height: 100%;
}

.category-slider-arrow {
    position: absolute;
    top: -106px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(17, 38, 29, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.92);
    color: var(--site-ink);
    box-shadow: var(--site-shadow-sm);
}

.category-slider-arrow.slick-prev {
    right: 68px;
}

.category-slider-arrow.slick-next {
    right: 0;
}

.category-slider-arrow:hover,
.category-slider-arrow:focus {
    background: rgba(255, 255, 255, 0.98);
    color: var(--site-accent-strong);
    border-color: rgba(209, 135, 55, 0.22);
}

.category-slider-arrow.slick-disabled {
    opacity: 0.42;
    pointer-events: none;
}

.category-slider-shell .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: auto;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.category-slider-shell .slick-dots li {
    margin: 0;
}

.category-slider-shell .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 38, 29, 0.16);
    font-size: 0;
    line-height: 0;
}

.category-slider-shell .slick-dots li button::before {
    display: none;
}

.category-slider-shell .slick-dots li.slick-active button {
    width: 42px;
    background: linear-gradient(90deg, var(--site-accent), rgba(17, 38, 29, 0.78));
}

.brand-logo-section {
    position: relative;
    overflow: hidden;
}

.brand-logo-section::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 100%;
    background:
        radial-gradient(circle at left top, rgba(209, 135, 55, 0.14), transparent 40%),
        radial-gradient(circle at right top, rgba(17, 38, 29, 0.08), transparent 34%);
    pointer-events: none;

}

.brand-logo-section .container {
    position: relative;
    z-index: 1;
}

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

.brand-logo-slider-shell {
    position: relative;
}

.brand-logo-slider {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.brand-logo-slider.slick-initialized {
    display: block;
}

.brand-logo-slider.slick-slider {
    margin-bottom: 0;
}

.brand-logo-slider .slick-list {
    margin: 0 -10px;
    padding: 10px 0 18px;
}

.brand-logo-slider .slick-track {
    display: flex;
    padding: 28px 0;
}

.brand-logo-slider .slick-slide {
    height: auto;
    padding: 0 10px;
}

.brand-logo-slider-item,
.brand-logo-slider-item .brand-logo-card {
    height: 100%;
}

.brand-logo-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 15px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.98)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.08), transparent 32%);
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 16px 32px rgba(13, 24, 40, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.brand-logo-card:hover,
.brand-logo-card:focus {
    transform: translateY(-4px);
    border-color: rgba(209, 135, 55, 0.24);
    box-shadow: 0 22px 40px rgba(13, 24, 40, 0.12);
}

.brand-logo-card img {
    display: block;
    width: 100%;
    max-width: 240px;
    max-height: 100px;
    object-fit: contain;
}

.brand-logo-slider-arrow {
    position: absolute;
    top: -106px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(17, 38, 29, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.92);
    color: var(--site-ink);
    box-shadow: var(--site-shadow-sm);
}

.brand-logo-slider-arrow.slick-prev {
    right: 68px;
}

.brand-logo-slider-arrow.slick-next {
    right: 0;
}

.brand-logo-slider-arrow:hover,
.brand-logo-slider-arrow:focus {
    background: rgba(255, 255, 255, 0.98);
    color: var(--site-accent-strong);
    border-color: rgba(209, 135, 55, 0.22);
}

.brand-logo-slider-arrow.slick-disabled {
    opacity: 0.42;
    pointer-events: none;
}

.brand-logo-slider-shell .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: auto;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.brand-logo-slider-shell .slick-dots li {
    margin: 0;
}

.brand-logo-slider-shell .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 38, 29, 0.16);
    font-size: 0;
    line-height: 0;
}

.brand-logo-slider-shell .slick-dots li button::before {
    display: none;
}

.brand-logo-slider-shell .slick-dots li.slick-active button {
    width: 42px;
    background: linear-gradient(90deg, var(--site-accent), rgba(17, 38, 29, 0.78));
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 260px 0 60px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(7, 16, 29, 0.26), transparent 44%),
        linear-gradient(180deg, rgba(7, 16, 29, 0.24), rgba(7, 16, 29, 0.86));
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, rgba(7, 16, 29, 0.34));
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.75fr);
    gap: 26px;
    align-items: end;
}

.page-hero-shell-wide {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.8fr);
}

.page-hero-copy h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.4rem, 2.5vw, 4.6rem);
    color: #fff;
}

.page-hero-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(231, 238, 246, 0.86);
    font-size: 1.08rem;
}

.page-hero .breadcrumb-inline {
    margin-top: 26px;
}

.page-hero-aside {
    display: grid;
    gap: 16px;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(5, 12, 22, 0.18);
    backdrop-filter: blur(16px);
}

.hero-aside-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffd0a2;
}

.page-hero-aside strong {
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.35;
}

.page-hero-aside p {
    margin: 0;
    color: rgba(231, 238, 246, 0.76);
}

.hero-aside-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-aside-tags span {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
}

.breadcrumb-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(231, 238, 246, 0.78);
    font-size: 0.92rem;
}

.breadcrumb-inline a:hover {
    color: #fff;
}

.insight-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--site-shadow-lg);
    backdrop-filter: blur(18px);
}

.insight-item {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(246, 248, 251, 0.96), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(19, 32, 51, 0.06);
}

.insight-label,
.card-kicker {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--site-accent-strong);
}

.insight-item h3 {
    margin: 0;
    font-size: 1.35rem;
}

.insight-item p {
    margin: 0;
}

.story-panel,
.split-card,
.overview-card,
.detail-card,
.process-card,
.contact-info-card,
.form-card,
.quote-request-form-card {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--site-shadow-sm);
}

.section-ink .split-card,
.section-ink .overview-card,
.section-ink .detail-card,
.section-ink .process-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.section-ink .split-card h3,
.section-ink .overview-card h3,
.section-ink .detail-card h3,
.section-ink .process-card h3,
.section-ink .process-card h4,
.section-ink .metric-card strong,
.section-ink .metric-card span,
.section-ink .process-card p {
    color: #fff;
}

.section-ink .process-card p {
    color: rgba(231, 238, 246, 0.78);
}

.story-panel {
    gap: 22px;
}

.about-hover-card {
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.about-hover-card:hover,
.about-hover-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow: var(--site-shadow-hover);
}

.story-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.story-list {
    display: grid;
    gap: 18px;
}

.story-point {
    padding-top: 18px;
    border-top: 1px solid var(--site-line);
}

.story-point strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--site-ink);
}

.story-point p {
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.metric-card {
    display: grid;
    gap: 12px;
    padding: 30px 26px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(11, 20, 34, 0.96), rgba(20, 34, 54, 0.96));
    box-shadow: 0 22px 50px rgba(6, 13, 24, 0.18);
}

.metric-card strong {
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.metric-card span {
    color: rgba(229, 236, 245, 0.78);
    line-height: 1.7;
}

.overview-card h3,
.detail-card h3,
.split-card h3,
.process-card h4,
.contact-info-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.process-card {
    align-content: start;
}

.process-card p {
    margin: 0;
}

.section-process-showcase {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(246, 239, 225, 0.82), rgba(255, 253, 248, 0.98)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(17, 38, 29, 0.06), transparent 24%);
}

.section-process-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 28%),
        repeating-linear-gradient(100deg, rgba(209, 135, 55, 0.08) 0 2px, transparent 2px 24px);
    opacity: 0.34;
    pointer-events: none;
}

.process-showcase-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 48px;
}

.process-showcase-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.78fr) auto;
    gap: 34px;
    align-items: center;
}

.process-showcase-heading {
    max-width: 760px;
}

.process-showcase-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 16px 28px rgba(13, 24, 40, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--site-accent-strong);
}

.process-showcase-heading h2 {
    margin: 0;
    font-size: clamp(2.9rem, 5.8vw, 5.8rem);
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--site-ink);
}

.process-showcase-heading h2 span {
    color: rgba(17, 38, 29, 0.4);
}

.process-showcase-summary {
    max-width: 560px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--site-ink-soft);
}

.process-showcase-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 14px 16px 14px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 24px 44px rgba(184, 105, 35, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.process-showcase-cta:hover,
.process-showcase-cta:focus {
    color: #fff;
    background: linear-gradient(135deg, #e19452, #b7651d);
    box-shadow: 0 28px 50px rgba(184, 105, 35, 0.28);
}

.process-showcase-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(16, 39, 30, 0.94);
}

.process-showcase-cta-icon i[class^='iconoir-'],
.process-showcase-cta-icon i[class*=' iconoir-'] {
    font-size: 1rem;
    line-height: 1;
}

.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.process-flow-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 22px;
    min-height: 420px;
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 22px 50px rgba(13, 24, 40, 0.09);
    overflow: visible;
}

.process-flow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(209, 135, 55, 0.06), transparent 42%);
    pointer-events: none;
}

.process-flow-card:not(:last-child)::after {
    content: '>';
    position: absolute;
    top: 50%;
    right: -46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: rgba(247, 242, 232, 0.96);
    border: 8px solid rgba(234, 223, 203, 0.98);
    box-shadow: 0 20px 36px rgba(13, 24, 40, 0.1);
    font-family: 'Archivo', sans-serif;
    font-size: 1.3rem;
    color: var(--site-accent-strong);
    transform: translateY(-50%);
    z-index: 2;
}

.process-flow-number {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: clamp(4.8rem, 8vw, 6.6rem);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.09em;
    color: rgba(209, 135, 55, 0.34);
    background: linear-gradient(180deg, rgba(209, 135, 55, 0.92), rgba(17, 38, 29, 0.06));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-flow-card h3 {
    margin: 0;
    max-width: 11.5ch;
    font-size: clamp(1.5rem, 2.5vw, 1.5rem);
    line-height: 1.1;
}

.process-flow-card p {
    margin: 0;
    max-width: 28ch;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--site-ink-soft);
}

@media (max-width: 1199.98px) {
    .home-about-visual img {
        min-height: 460px;
    }

    .home-about-copy h2 {
        font-size: clamp(2rem, 4vw, 2.9rem);
    }

    .process-showcase-top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    }

    .process-showcase-cta {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .process-flow-card {
        padding: 34px 30px;
    }

    .process-flow-card:not(:last-child)::after {
        right: -38px;
        width: 72px;
        height: 72px;
        border-width: 6px;
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .home-about-shell {
        padding: 28px;
    }

    .home-about-visual img {
        min-height: 420px;
    }

    .home-about-content {
        gap: 24px;
    }

    .process-showcase-shell {
        gap: 36px;
    }

    .process-showcase-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-showcase-summary {
        max-width: 100%;
    }

    .process-showcase-cta {
        grid-column: auto;
    }

    .process-flow-grid {
        grid-template-columns: 1fr;
    }

    .process-flow-card {
        min-height: 0;
    }

    .process-flow-card:not(:last-child)::after {
        display: none;
    }
}

.image-panel {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(10, 20, 35, 0.14);
}

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

.category-card,
.reference-preview-card,
.case-card {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 100%;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--site-shadow-sm);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover,
.reference-preview-card:hover,
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--site-shadow-md);
}

.category-card img,
.reference-preview-card img,
.case-card img {
    width: 100%;
    border-radius: 22px;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
}

.category-card h3,
.reference-preview-card h3,
.case-card h3 {
    margin: 0;
    font-size: 1.55rem;
}

.category-card p,
.reference-preview-card p,
.case-card p {
    margin: 0;
}

.cta-band {
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(11, 20, 34, 0.96), rgba(20, 34, 54, 0.94)),
        radial-gradient(circle at right top, rgba(217, 133, 59, 0.2), transparent 28%);
    color: #fff;
    box-shadow: var(--site-shadow-lg);
}

.cta-band h3,
.cta-band p {
    color: #fff;
}

.cta-band p {
    color: rgba(231, 238, 246, 0.8);
    margin: 0;
}

.contact-info-card strong,
.overview-card strong,
.detail-card strong {
    font-size: 1rem;
}

.contact-info-card a:hover,
.overview-card a:hover,
.detail-card a:hover {
    color: var(--site-accent-strong);
}

.map-frame {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--site-shadow-md);
}

.map-frame iframe {
    min-height: 520px;
}

.site-footer {
    position: relative;
    padding-top: 40px;
    background:
        radial-gradient(circle at top right, rgba(217, 133, 59, 0.18), transparent 24%),
        linear-gradient(180deg, #09111d 0%, #0d1827 52%, #111f30 100%);
    color: #fff;
    /* overflow: hidden; */
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.55), transparent 86%);
    pointer-events: none;
}

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

.footer-cta-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px 34px;
    padding: 30px 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 244, 248, 0.96));
    box-shadow: 0 32px 70px rgba(6, 13, 24, 0.2);
    transform: translateY(-58px);
    margin-bottom: -10px;
}

.footer-cta-copy {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.footer-cta-copy h3 {
    margin: 0;
    max-width: 680px;
    color: var(--site-ink);
    font-size: clamp(1.55rem, 2.2vw, 2.3rem);
    line-height: 1.14;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.footer-cta-actions .btn {
    min-width: 200px;
}

.footer-cta-strip .btn-outline-dark {
    border-color: rgba(17, 38, 29, 0.14);
    background: rgba(17, 38, 29, 0.04);
    color: var(--site-ink);
}

.footer-cta-strip .btn-outline-dark:hover,
.footer-cta-strip .btn-outline-dark:focus {
    background: rgba(17, 38, 29, 0.08);
    border-color: rgba(17, 38, 29, 0.24);
    color: var(--site-ink);
}

.footer-main {
    padding: 48px 0 54px;
}

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

.logo-footer img {
    width: 170px;
}

.footer-copy {
    max-width: 360px;
    margin: 18px 0 22px;
    color: rgba(231, 238, 246, 0.78);
}

.footer-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badge span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
}

.footer-head {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.05rem;
}

.footer-list,
.footer-contact-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a {
    color: rgba(231, 238, 246, 0.76);
    font-weight: 600;
}

.footer-list a:hover,
.footer-contact-list a:hover {
    color: #fff;
}

.footer-contact-list li {
    display: grid;
    gap: 4px;
}

.footer-contact-list span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 208, 162, 0.92);
}

.footer-contact-list strong,
.footer-contact-list a {
    color: rgba(231, 238, 246, 0.82);
    font-size: 0.96rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0 34px;
}

.footer-bottom-inner p {
    margin: 0;
    color: rgba(231, 238, 246, 0.64);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(231, 238, 246, 0.76);
    font-weight: 600;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(184, 105, 35, 0.26);
    line-height: 50px;

}

.back-to-top:hover {
    box-shadow: 0 22px 50px rgba(184, 105, 35, 0.32);
}

.back-to-top .icons {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.catalog-section {
    padding-top: 20px;
}

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

.catalog-sidebar {
    display: grid;
    gap: 20px;
}

.catalog-filter-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--site-shadow-sm);
}

.catalog-filter-card-head h2 {
    margin: 0 0 18px;
    font-size: 1.24rem;
}

.catalog-filter-card-body {
    display: grid;
    gap: 16px;
}

.catalog-filter-card-accent {
    background: linear-gradient(135deg, rgba(11, 20, 34, 0.96), rgba(20, 34, 54, 0.94));
    border-color: rgba(255, 255, 255, 0.08);
}

.catalog-filter-card-accent h3,
.catalog-filter-card-accent p,
.catalog-filter-card-accent .eyebrow {
    color: #fff;
}

.catalog-filter-card-accent p {
    color: rgba(231, 238, 246, 0.78);
}

.catalog-search-field {
    position: relative;
}

.catalog-search-field input {
    width: 100%;
    height: 58px;
    padding: 0 58px 0 18px;
    border-radius: 18px;
    border: 1px solid var(--site-line);
    background: var(--site-surface-soft);
    color: var(--site-ink);
}

.catalog-search-field input:focus {
    outline: 0;
    border-color: rgba(217, 133, 59, 0.55);
    box-shadow: 0 0 0 4px rgba(217, 133, 59, 0.12);
}

.catalog-search-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 20px;
    height: 20px;
    color: var(--site-muted);
    transform: translateY(-50%);
}

.catalog-search-note {
    margin: 0;
    color: var(--site-muted);
    font-size: 0.92rem;
}

.catalog-sidebar-links {
    display: grid;
    gap: 10px;
}

.catalog-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--site-surface-soft);
    border: 1px solid transparent;
    color: var(--site-ink);
    font-weight: 700;
}

.catalog-sidebar-link span {
    color: var(--site-ink-soft);
}

.catalog-sidebar-link strong {
    min-width: 38px;
    text-align: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11, 20, 34, 0.06);
    color: var(--site-ink);
    font-size: 0.84rem;
}

.catalog-sidebar-link:hover,
.catalog-sidebar-link.active {
    border-color: rgba(217, 133, 59, 0.26);
    background: rgba(217, 133, 59, 0.12);
}

.catalog-sidebar-link:hover span,
.catalog-sidebar-link.active span,
.catalog-sidebar-link.active strong {
    color: var(--site-accent-strong);
}

.catalog-main {
    min-width: 0;
}

.catalog-main-topbar,
.catalog-main-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--site-shadow-sm);
}

.catalog-main-topbar {
    align-items: end;
    margin-bottom: 18px;
}

.catalog-main-copy {
    display: grid;
    gap: 10px;
}

.catalog-main-copy h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2.4vw, 2.8rem);
}

.catalog-main-copy p {
    margin: 0;
    max-width: 760px;
}

.catalog-main-actions {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.catalog-main-summary {
    display: grid;
    gap: 6px;
    text-align: right;
}

.catalog-main-summary strong {
    font-family: 'Archivo', sans-serif;
    font-size: 1.7rem;
    color: var(--site-ink);
}

.catalog-main-summary span {
    color: var(--site-muted);
    font-size: 0.96rem;
}

.catalog-inline-cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(217, 133, 59, 0.12);
    color: var(--site-accent-strong);
    font-size: 0.88rem;
    font-weight: 700;
}

.catalog-tools-label {
    color: var(--site-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalog-sort-panel-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalog-sort-select {
    min-width: 240px;
    height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid var(--site-line);
    background: var(--site-surface-soft);
    color: var(--site-ink);
    font-weight: 700;
}

.catalog-sort-select:focus {
    outline: 0;
    border-color: rgba(217, 133, 59, 0.55);
    box-shadow: 0 0 0 4px rgba(217, 133, 59, 0.12);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.catalog-empty-state {
    grid-column: 1 / -1;
    padding: 50px 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--site-shadow-sm);
    text-align: center;
}

.catalog-empty-state h3 {
    margin: 0 0 10px;
}

.catalog-empty-state p {
    margin: 0;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--site-shadow-sm);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--site-shadow-md);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.95;
    background: linear-gradient(180deg, #ecf1f6, #ffffff);
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-card-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(11, 20, 34, 0.82);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card-quick-action {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--site-ink);
    box-shadow: 0 10px 18px rgba(13, 24, 40, 0.08);
}

.product-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    padding: 24px;
}

.product-card-category {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(217, 133, 59, 0.12);
    color: var(--site-accent-strong);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card-title {
    position: relative;
    z-index: 2;
}

.product-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.product-card p {
    margin: 0;
    color: var(--site-muted);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--site-line);
}

.product-card-code-label {
    display: block;
    color: var(--site-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card-code {
    color: var(--site-ink);
    font-size: 1rem;
}

.product-card-action {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--site-navy);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.catalog-pagination-wrap {
    margin-top: 28px;
}

.catalog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.catalog-pagination-button,
.catalog-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 24px rgba(13, 24, 40, 0.07);
    font-weight: 700;
    color: var(--site-ink);
}

.catalog-pagination-button.is-active {
    background: var(--site-navy);
    color: #fff;
}

.catalog-pagination-button.is-disabled {
    opacity: 0.48;
    pointer-events: none;
}

.product-gallery {
    display: grid;
    gap: 16px;
}

.product-gallery-main-panel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--site-shadow-sm);
}

.product-gallery-lightbox-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-gallery-lightbox-trigger img {
    width: 100%;
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
    transition: opacity 0.25s ease, transform 0.4s ease;
}

.product-gallery-main-panel.is-image-switching img {
    opacity: 0.35;
    transform: scale(1.02);
}

.product-gallery-lightbox-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(11, 20, 34, 0.76);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.product-gallery-thumb {
    display: block;
    padding: 6px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(13, 24, 40, 0.06);
}

.product-gallery-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.product-gallery-thumb.active {
    border-color: rgba(217, 133, 59, 0.38);
    box-shadow: 0 18px 30px rgba(184, 105, 35, 0.12);
}

.product-gallery-lightbox-links {
    display: none;
}

.product-detail-card h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.product-detail-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.product-detail-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(217, 133, 59, 0.12);
    color: var(--site-accent-strong);
    font-size: 0.84rem;
    font-weight: 700;
}

.product-detail-code {
    color: var(--site-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.product-price-block {
    display: inline-grid;
    gap: 4px;
    width: fit-content;
    padding: 16px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 20, 34, 0.98), rgba(20, 34, 54, 0.96));
}

.product-price-label {
    color: rgba(231, 238, 246, 0.66);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.product-price-value {
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.product-detail-lead {
    margin: 0;
    font-size: 1.03rem;
}

.product-detail-richtext {
    display: grid;
    gap: 14px;
}

.product-detail-richtext p,
.product-detail-richtext li,
.product-detail-richtext strong,
.product-detail-richtext a {
    color: var(--site-ink-soft);
}

.product-detail-bullet-list {
    margin-top: 6px;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.product-process-steps {
    display: grid;
    gap: 14px;
}

.product-process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding-top: 16px;
    border-top: 1px solid var(--site-line);
}

.product-process-step p {
    margin: 0;
}

.catalog-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.catalog-heading-copy {
    display: grid;
    gap: 10px;
}

.catalog-heading-copy h2 {
    margin: 0;
    font-size: clamp(1.9rem, 2.7vw, 3rem);
}

.catalog-heading-copy p {
    margin: 0;
    max-width: 720px;
}

.form-card,
.quote-request-form-card {
    gap: 20px;
}

.form-card h3,
.quote-request-form-card h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.form-label {
    margin-bottom: 10px;
    color: var(--site-ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 56px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--site-line);
    background: var(--site-surface-soft);
    color: var(--site-ink);
    font-size: 0.98rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(217, 133, 59, 0.56);
    box-shadow: 0 0 0 4px rgba(217, 133, 59, 0.12);
    background: #fff;
}

.contact-meta-ltr {
    display: inline-block;
    max-width: 100%;
    direction: ltr;
    unicode-bidi: isolate;
}

.product-meta-ltr {
    display: inline-block;
    max-width: 100%;
    direction: ltr;
    unicode-bidi: isolate;
}

.quote-request-inline-note {
    margin: 0;
    color: var(--site-muted);
}

.quote-request-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quote-request-meta span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(11, 20, 34, 0.06);
    color: var(--site-ink);
    font-size: 0.86rem;
    font-weight: 700;
}

.quote-request-points {
    display: grid;
    gap: 14px;
}

.quote-request-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.quote-request-point p {
    margin: 0;
}

.quote-request-searchable-field {
    position: relative;
}

.quote-request-search-note {
    margin: 12px 0 0;
    color: var(--site-muted);
    font-size: 0.9rem;
}

.searchable-select-native {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.searchable-select-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    max-height: 320px;
    overflow: auto;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--site-shadow-md);
    z-index: 25;
}

[data-searchable-select-shell].is-open .searchable-select-dropdown {
    display: block;
}

.searchable-select-group-label {
    padding: 10px 12px 8px;
    color: var(--site-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.searchable-select-option {
    display: grid;
    gap: 6px;
    width: 100%;
    padding: 14px 16px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: var(--site-ink);
    text-align: left;
}

.searchable-select-option:hover,
.searchable-select-option:focus,
.searchable-select-option.is-selected {
    background: rgba(217, 133, 59, 0.12);
    outline: none;
}

.searchable-select-option-main {
    font-weight: 700;
}

.searchable-select-option-meta,
.searchable-select-empty {
    color: var(--site-muted);
    font-size: 0.88rem;
}

.searchable-select-empty {
    padding: 16px;
}

.quote-request-summary-box,
.product-quote-summary {
    display: grid;
    gap: 10px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11, 20, 34, 0.98), rgba(20, 34, 54, 0.96));
}

.product-quote-summary-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 208, 162, 0.92);
}

.quote-request-summary-box strong,
.product-quote-summary strong {
    color: #fff;
    font-size: 1.3rem;
}

.product-quote-summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-quote-summary-meta span {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(231, 238, 246, 0.82);
    font-size: 0.84rem;
    font-weight: 600;
}

.quote-request-detail-link,
.product-quote-summary .link-arrow {
    color: #fff;
}

.quote-request-detail-link.is-hidden {
    display: none;
}

.product-quote-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-quote-feedback {
    min-height: 0;
}

#error-msg,
#simple-msg {
    margin: 0;
}

.alert {
    padding: 14px 16px;
    border: 0;
    border-radius: 16px;
    font-weight: 600;
}

.alert-success {
    background: rgba(31, 138, 112, 0.12);
    color: #166b57;
}

.alert-warning {
    background: rgba(217, 133, 59, 0.12);
    color: #91561f;
}

.alert-danger {
    background: rgba(183, 75, 75, 0.12);
    color: #8f3030;
}

.quote-request-form-card .btn-outline-dark {
    border-color: rgba(19, 32, 51, 0.18);
    color: var(--site-ink);
}

.quote-request-form-card .btn-outline-dark:hover,
.quote-request-form-card .btn-outline-dark:focus {
    background: rgba(19, 32, 51, 0.06);
    color: var(--site-ink);
}

@media (max-width: 1199.98px) {
    .nav-shell {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 18px;
    }

    .brand-support {
        display: none;
    }

    .nav-actions {
        min-width: 0;
    }

    .split-heading,
    .page-hero-shell,
    .page-hero-shell-wide,
    .hero-content-wrap {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991.98px) {
    #topnav {
        top: 0;
        overflow: visible;
    }

    .utility-bar {
        display: none;
    }

    .nav-shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-top: 10px;
        padding: 12px 14px;
        border-radius: 26px;
        background: linear-gradient(145deg, rgba(252, 248, 242, 0.96), rgba(255, 255, 255, 0.9));
        border: 1px solid rgba(255, 255, 255, 0.76);
        box-shadow: 0 18px 40px rgba(6, 14, 25, 0.18);
        overflow: visible;
        isolation: isolate;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-shell::before,
    .nav-shell::after {
        display: none;
    }

    body.nav-open #topnav .nav-shell {
        background: linear-gradient(145deg, rgba(252, 248, 242, 0.98), rgba(255, 255, 255, 0.94));
        box-shadow: 0 20px 44px rgba(6, 14, 25, 0.22);
    }

    #topnav .container.position-relative {
        overflow: visible;
    }

    .logo img {
        width: 126px;
    }

    .brand-caption,
    .brand-support,
    .brand-keywords,
    .nav-actions {
        display: none;
    }

    .menu-extras {
        display: block;
    }

    .navbar-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        border: 1px solid rgba(19, 32, 51, 0.09);
        background: linear-gradient(180deg, rgba(19, 32, 51, 0.06), rgba(19, 32, 51, 0.02));
        color: var(--site-ink);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }

    .navbar-toggle.open {
        background: linear-gradient(180deg, rgba(217, 133, 59, 0.16), rgba(217, 133, 59, 0.08));
        border-color: rgba(217, 133, 59, 0.22);
        color: var(--site-accent-strong);
    }

    #navigation {
        position: fixed;
        inset: 0;
        display: block !important;
        padding: calc(120px + env(safe-area-inset-top, 0px)) 14px calc(18px + env(safe-area-inset-bottom, 0px));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
        z-index: 0;
    }

    #navigation.is-open,
    #navigation.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-panel-shell {
        position: relative;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 16px;
        align-content: stretch;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        height: calc(100svh - 112px - env(safe-area-inset-bottom, 0px));
        padding: 18px;
        border-radius: 30px;
        background:
            radial-gradient(circle at top right, rgba(217, 133, 59, 0.22), transparent 34%),
            linear-gradient(180deg, rgba(10, 19, 31, 0.98), rgba(16, 30, 48, 0.98));
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 30px 72px rgba(5, 12, 22, 0.42);
        overflow: hidden;
    }

    .nav-panel-shell::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.04);
        pointer-events: none;
    }

    .nav-panel-top,
    .mobile-nav-cta {
        display: grid;
        gap: 12px;
    }

    .nav-panel-top {
        align-items: start;
        padding: 0 0 4px;
    }

    .nav-panel-copy {
        display: grid;
        gap: 8px;
    }

    .nav-panel-label {
        color: rgba(255, 208, 162, 0.92);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .nav-panel-copy p {
        margin: 0;
        max-width: 32ch;
        color: rgba(220, 229, 240, 0.72);
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .nav-panel-phone {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        width: fit-content;
        padding: 12px 14px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        color: #fff;
        font-weight: 700;
        font-size: 0.92rem;
        line-height: 1;
        white-space: nowrap;
    }

    .nav-panel-phone i {
        color: #ffd7b4;
        font-size: 1.05rem;
    }

    .nav-panel-phone span {
        white-space: nowrap;
    }

    .navigation-menu {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        margin: 0;
        min-height: 0;
        gap: 10px;
        padding: 2px 2px 2px 0;
        overflow: auto;
        list-style: none;
        align-content: start;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        counter-reset: mobile-nav;
    }

    .navigation-menu>li {
        position: relative;
        width: 100%;
        border: 0;
        counter-increment: mobile-nav;
    }

    /* .navigation-menu>li::before {
        content: counter(mobile-nav, decimal-leading-zero);
        position: absolute;
        left: 18px;
        top: 18px;
        color: rgba(255, 208, 162, 0.72);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        line-height: 1;
        z-index: 1;
    } */

    #topnav .navigation-menu>li>a {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 7px;
        width: 100%;
        min-height: 48px;
        padding: 8px 44px 8px 18px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        color: rgba(245, 249, 253, 0.98);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: -0.01em;
        text-transform: none;
        text-align: left;
        transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
    }

    #topnav .navigation-menu>li>a::after {
        display: none;
    }

    .nav-link-title {
        display: block;
        font-family: 'Archivo', sans-serif;
        font-size: 13px;
        line-height: 1.05;
        letter-spacing: -0.01em;
        text-transform: none;
    }

    .nav-link-desc {
        display: block;
        color: rgba(215, 225, 237, 0.62);
        font-size: 0.76rem;
        font-weight: 600;
        line-height: 1.45;
        letter-spacing: 0.01em;
        text-transform: none;
    }

    #topnav .navigation-menu>li.active>a,
    #topnav .navigation-menu>li:hover>a,
    #topnav .navigation-menu>li:focus-within>a {
        color: #fff4ea;
        border-color: rgba(217, 133, 59, 0.18);
        background: linear-gradient(180deg, rgba(217, 133, 59, 0.16), rgba(255, 255, 255, 0.04));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 30px rgba(0, 0, 0, 0.12);
        /* transform: translateX(4px); */
    }

    #topnav .navigation-menu>li.active::before,
    #topnav .navigation-menu>li:hover::before,
    #topnav .navigation-menu>li:focus-within::before {
        color: #ffd7b4;
    }

    .has-submenu {
        width: 100%;
        padding-right: 0;
    }

    #topnav .navigation-menu>li:not(.has-submenu)>a {
        padding-right: 54px;
    }

    .menu-arrow {
        right: 16px;
        top: 50%;
        display: grid;
        place-items: center;
        width: 32px;
        height: 32px;
        margin-top: 0;
        border: 0 !important;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
        transform: translateY(-50%) !important;
        transition: background 0.22s ease, box-shadow 0.22s ease;
    }

    .menu-arrow::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid rgba(214, 224, 236, 0.64);
        border-bottom: 2px solid rgba(214, 224, 236, 0.64);
        transform: translate(-50%, -62%) rotate(45deg);
        transition: transform 0.22s ease, border-color 0.22s ease;
    }

    .has-submenu:hover>.menu-arrow,
    .has-submenu:focus-within>.menu-arrow,
    .has-submenu.open>.menu-arrow {
        background: rgba(217, 133, 59, 0.14);
        box-shadow: inset 0 0 0 1px rgba(217, 133, 59, 0.18);
        transform: translateY(-50%) !important;
    }

    .has-submenu:hover>.menu-arrow::before,
    .has-submenu:focus-within>.menu-arrow::before,
    .has-submenu.open>.menu-arrow::before {
        border-right-color: #ffd7b4;
        border-bottom-color: #ffd7b4;
    }

    .has-submenu.open>.menu-arrow::before {
        transform: translate(-50%, -34%) rotate(225deg);
    }

    .submenu {
        position: static;
        min-width: 0;
        margin: 8px 0 0;
        padding: 8px;
        border-radius: 20px;
        background: rgba(4, 11, 19, 0.38);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .submenu::before {
        display: none;
    }

    .submenu.open {
        display: grid;
        gap: 6px;
    }

    .submenu li+li {
        margin-top: 0;
    }

    .submenu li a {
        position: relative;
        padding: 13px 14px 13px 30px;
        border-radius: 16px;
        color: rgba(216, 225, 236, 0.78);
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid transparent;
        transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s ease;
    }

    /* .submenu li a::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 50%;
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: rgba(255, 208, 162, 0.44);
        transform: translateY(-50%);
    } */

    .submenu li.active a,
    .submenu li a:hover,
    .submenu li a:focus {
        background: rgba(217, 133, 59, 0.12);
        border-color: rgba(217, 133, 59, 0.14);
        color: #fff4ea;
        transform: translateX(2px);
    }

    .submenu li.active a::before,
    .submenu li a:hover::before,
    .submenu li a:focus::before {
        background: #ffd7b4;
    }

    .nav-panel-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(217, 133, 59, 0.12), rgba(255, 255, 255, 0.04));
        border: 1px solid rgba(255, 208, 162, 0.14);
    }

    .nav-panel-meta .eyebrow {
        color: rgba(255, 208, 162, 0.88);
        white-space: nowrap;
    }

    .nav-panel-meta p {
        display: none;
    }

    .nav-panel-meta .link-arrow {
        color: rgba(236, 241, 247, 0.84);
    }

    .nav-panel-meta .link-arrow {
        margin-left: auto;
        white-space: nowrap;
    }

    .mobile-nav-cta {
        gap: 10px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        /* background: linear-gradient(180deg, rgba(10, 19, 31, 0), rgba(10, 19, 31, 0.65) 32%, rgba(10, 19, 31, 0.95) 100%); */
    }

    .mobile-nav-cta .nav-cta {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        border-radius: 18px;
    }

    .language-switcher.language-switcher-mobile {
        width: 100%;
    }

    .language-switcher-mobile .language-switcher__summary {
        padding: 12px 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .language-switcher-mobile .language-switcher__summary-copy strong,
    .language-switcher-mobile .language-switcher__summary-copy small,
    .language-switcher-mobile .language-switcher__caret {
        color: #fff;
    }

    .language-switcher-mobile .language-switcher__menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .hero-slider-section {
        min-height: 100svh;
        padding-top: 0;
    }

    .hero-slider-wrapper {
        min-height: 100svh;
    }

    .hero-slide {
        min-height: 100svh;
        padding-top: 188px;
    }

    .page-hero {
        padding-top: 164px;
    }

    .section {
        padding: 86px 0;
    }

    .insight-band,
    .stats-grid,
    .catalog-layout,
    .catalog-heading-row,
    .footer-cta-strip,
    .footer-bottom-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .insight-band {
        gap: 14px;
    }

    .catalog-main-summary,
    .catalog-main-actions {
        text-align: left;
        justify-items: start;
    }

    .catalog-main-topbar,
    .catalog-main-tools,
    .footer-cta-strip,
    .footer-bottom-inner {
        align-items: start;
    }

    .catalog-main-tools {
        flex-direction: column;
    }

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

    .category-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta-strip {
        grid-template-columns: 1fr;
        transform: translateY(-34px);
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .home-about-shell {
        border-radius: 24px;
    }

    .home-about-visual-note {
        right: 18px;
        left: 18px;
        bottom: 18px;
        max-width: none;
        padding: 16px 18px;
        border-radius: 20px;
    }

    .home-about-copy h2 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .home-about-point {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .section {
        padding: 74px 0;
    }

    .cta-band,
    .footer-cta-strip,
    .story-panel,
    .split-card,
    .overview-card,
    .detail-card,
    .process-card,
    .contact-info-card,
    .form-card,
    .quote-request-form-card,
    .catalog-filter-card,
    .catalog-main-topbar,
    .catalog-main-tools,
    .category-card,
    .reference-preview-card,
    .case-card {
        border-radius: 24px;
    }

    .hero-slide {
        min-height: 100svh;
        padding: 138px 22px 84px;
    }

    .hero-copy h1 {
        font-size: clamp(1.45rem, 6vw, 2rem);
    }

    .hero-copy p {
        font-size: 0.88rem;
    }

    .hero-slider-wrapper {
        border-radius: 0 0 24px 24px;
    }

    .page-hero {
        padding: 156px 0 92px;
    }

    .page-hero-copy h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .section-heading h2,
    .catalog-main-copy h2,
    .catalog-heading-copy h2,
    .form-card h3,
    .quote-request-form-card h2,
    .story-panel h2 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .insight-band,
    .stats-grid,
    .category-slider,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .catalog-sort-select,
    .catalog-search-field input {
        width: 100%;
    }

    .catalog-pagination {
        justify-content: center;
    }

    .footer-main {
        padding-top: 30px;
    }

    .footer-cta-strip {
        padding: 26px;
        transform: translateY(-26px);
    }

    .footer-cta-actions .btn {
        min-width: 0;
        width: 100%;
    }

    .footer-bottom-links {
        gap: 12px;
    }

    .process-showcase-heading h2 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .process-showcase-cta {
        width: 100%;
        justify-content: space-between;
        padding-left: 22px;
    }

    .process-flow-card {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .process-flow-card h3,
    .process-flow-card p {
        max-width: none;
    }

    .process-flow-card h3 {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }
}

@media (max-width: 575.98px) {

    .nav-shell,
    .footer-cta-strip,
    .cta-band,
    .story-panel,
    .split-card,
    .overview-card,
    .detail-card,
    .process-card,
    .contact-info-card,
    .form-card,
    .quote-request-form-card,
    .catalog-filter-card,
    .catalog-main-topbar,
    .catalog-main-tools {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-slider-wrapper .tns-controls,
    .hero-slider-wrapper .slick-prev,
    .hero-slider-wrapper .slick-next {
        bottom: 18px;
    }

    .hero-slider-wrapper .tns-controls {
        right: 18px;
    }

    .hero-slider-wrapper .slick-next {
        right: 18px;
    }

    .hero-slider-wrapper .slick-prev {
        right: 80px;
    }

    html[dir="rtl"] .hero-slider-wrapper .slick-prev {
        left: 80px;
    }

    html[dir="rtl"] .hero-slider-wrapper .slick-next {
        left: 18px;
    }

    .hero-slider-wrapper .tns-nav,
    .hero-slider-wrapper .slick-dots {
        left: 18px;
        bottom: 24px;
    }

    .process-showcase-cta-icon {
        width: 48px;
        height: 48px;
    }

    .category-slider .slick-list {
        margin: 0 -8px;
    }

    .category-slider .slick-slide {
        padding: 0 8px;
    }

    .brand-logo-slider .slick-list {
        margin: 0 -8px;
    }

    .brand-logo-slider .slick-slide {
        padding: 0 8px;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

body.products,
body.products_category,
body.product_detail {
    background:
        radial-gradient(circle at top left, rgba(209, 135, 55, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(17, 38, 29, 0.08), transparent 22%),
        linear-gradient(180deg, #f4ecde 0%, #fbf7ef 45%, #f1eade 100%);
}

body.products::before,
body.products_category::before,
body.product_detail::before {
    background-image:
        linear-gradient(rgba(17, 38, 29, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 38, 29, 0.02) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 84%);
}

.page-hero-catalog,
.page-hero-detail {
    padding: 280px 0 104px;
}

.page-hero-catalog::before,
.page-hero-detail::before {
    background:
        linear-gradient(112deg, rgba(10, 23, 18, 0.5), rgba(10, 23, 18, 0.08) 46%),
        linear-gradient(180deg, rgba(10, 23, 18, 0.28), rgba(10, 23, 18, 0.84));
}

.page-hero-catalog::after,
.page-hero-detail::after {
    height: 132px;
    background: linear-gradient(180deg, transparent, rgba(10, 23, 18, 0.4));
}

.page-hero-shell-catalog,
.page-hero-shell-detail {
    gap: 34px;
}

.catalog-hero-chips,
.product-hero-chips,
.catalog-hero-summary,
.catalog-main-badges,
.catalog-support-tags,
.product-gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-hero-chips {
    margin-top: 20px;
}

.product-hero-chips {
    margin-top: 18px;
}

.catalog-hero-chips span,
.product-hero-chips span,
.catalog-hero-summary span,
.catalog-main-badges span,
.catalog-support-tags span,
.product-gallery-meta span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: capitalize;
}

.catalog-hero-aside,
.product-hero-aside {
    gap: 18px;
    padding: 24px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(13, 31, 23, 0.92), rgba(16, 39, 30, 0.9)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.18), transparent 34%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 50px rgba(5, 12, 22, 0.2);
}

.catalog-hero-summary span {
    background: rgba(255, 255, 255, 0.12);
}

.catalog-hero-summary span:first-child {
    letter-spacing: normal;
    text-transform: none;
}

.catalog-hero-actions,
.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-hero-price {
    margin: 0;
    color: #fff !important;
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
    line-height: 1.1;
}

.product-hero-tags span {
    background: rgba(255, 255, 255, 0.12);
}

.catalog-filter-card,
.catalog-main-topbar,
.catalog-main-tools,
.catalog-empty-state,
.product-card,
.product-gallery-main-panel,
.product-gallery-thumb,
.product-detail-card,
body.product_detail .overview-card,
body.product_detail .split-card,
body.products .cta-band,
body.products_category .cta-band,
body.product_detail .cta-band {
    border-radius: 20px;
}

.catalog-filter-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(247, 241, 231, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 14px 30px rgba(13, 24, 40, 0.08);
}

.catalog-filter-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--site-accent), rgba(17, 38, 29, 0.78));
}

.catalog-filter-card-accent {
    background:
        linear-gradient(180deg, rgba(13, 31, 23, 0.96), rgba(18, 40, 31, 0.94)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.16), transparent 30%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(8, 16, 13, 0.16);
}

.catalog-filter-card-accent::before {
    background: linear-gradient(90deg, #f4c58f, #d18737);
}

.catalog-search-field input,
.catalog-sort-select {
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(17, 38, 29, 0.1);
}

.catalog-sidebar-links {
    gap: 8px;
}

.catalog-sidebar-link {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(17, 38, 29, 0.06);
}

.catalog-sidebar-link strong {
    min-width: 34px;
    padding: 5px 8px;
    border-radius: 10px;
    background: rgba(17, 38, 29, 0.08);
}

.catalog-main-topbar,
.catalog-main-tools {
    position: relative;
    overflow: hidden;
    padding: 22px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 16px 32px rgba(13, 24, 40, 0.08);
}

.catalog-main-tools {
    overflow: visible;
}

.catalog-main-topbar::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--site-accent), rgba(17, 38, 29, 0.78));
}

.catalog-main-copy {
    gap: 12px;
}

.catalog-main-summary strong {
    font-size: 1.48rem;
}

.catalog-main-summary span {
    max-width: 300px;
}

.catalog-main-badges span,
.product-gallery-meta span {
    color: var(--site-ink-soft);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(17, 38, 29, 0.08);
}

.catalog-inline-cta {
    padding: 12px 15px;
    border-radius: 12px;
    background: linear-gradient(180deg, #143526, #10271e);
    color: #fff;
}

.catalog-grid {
    gap: 20px;
    margin-top: 20px;
}

.catalog-empty-state {
    padding: 44px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 14px 28px rgba(13, 24, 40, 0.07);
}

.product-card {
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(246, 240, 229, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 18px 34px rgba(13, 24, 40, 0.08);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(13, 24, 40, 0.12);
}

.product-card-media {
    /* aspect-ratio: 1 / 0.82; */
    background: linear-gradient(180deg, #ebe5d9, #fbf8f1);
}

.product-card-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 72px;
    background: linear-gradient(180deg, transparent, rgba(17, 38, 29, 0.12));
    pointer-events: none;
}

.product-card-badge {
    left: 16px;
    top: 16px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(17, 38, 29, 0.88);
    letter-spacing: 0.06em;
}

.product-card-quick-action {
    right: 16px;
    top: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(17, 38, 29, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
}

.product-card-quick-action svg {
    width: 18px;
    height: 18px;
}

.product-card-body {
    gap: 12px;
    padding: 20px;
}

.product-card-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 12px;
}

.product-card-category {
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
}

.product-card-status {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(17, 38, 29, 0.07);
    color: var(--site-ink);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 1.26rem;
    line-height: 1.3;
}

.product-card p {
    color: #506258;
    font-size: 0.95rem;
    line-height: 1.65;
}

.product-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-card-pills span {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(17, 38, 29, 0.08);
    background: rgba(255, 255, 255, 0.86);
    color: var(--site-ink-soft);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-card-footer {
    gap: 14px;
    padding-top: 14px;
}

.product-card-code-label {
    font-size: 0.72rem;
}

.product-card-action {
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, #143526, #10271e);
}

.product-gallery-main-panel {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 231, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 18px 34px rgba(13, 24, 40, 0.08);
}

.product-gallery-lightbox-badge {
    right: 18px;
    bottom: 18px;
    border-radius: 12px;
}

.product-gallery-thumbs {
    gap: 10px;
}

.product-gallery-thumb {
    padding: 5px;
    border-radius: 14px;
    border-color: rgba(17, 38, 29, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
}

.product-gallery-thumb img {
    border-radius: 10px;
}

.product-gallery-meta span {
    text-transform: none;
}

.product-detail-card {
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 18px 34px rgba(13, 24, 40, 0.08);
}

.product-detail-meta-line {
    gap: 10px 12px;
}

.product-detail-category {
    padding: 7px 10px;
    border-radius: 10px;
}

.product-detail-code {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(17, 38, 29, 0.06);
    color: var(--site-ink-soft);
}

.product-price-block {
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #143526, #10271e);
}

.product-detail-bullet-list {
    gap: 10px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(17, 38, 29, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.product-detail-actions {
    padding-top: 4px;
}

body.product_detail .overview-card,
body.product_detail .split-card {
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 231, 0.96));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 16px 30px rgba(13, 24, 40, 0.08);
}

.product-process-step {
    padding-top: 14px;
}

body.products .chip-list span,
body.products_category .chip-list span,
body.product_detail .chip-list span {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.86);
}

body.products .cta-band,
body.products_category .cta-band,
body.product_detail .cta-band {
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(14, 34, 25, 0.98), rgba(20, 46, 35, 0.96)),
        radial-gradient(circle at right top, rgba(217, 133, 59, 0.18), transparent 30%);
    box-shadow: 0 22px 48px rgba(10, 20, 35, 0.16);
}

@media (max-width: 1199.98px) {
    .catalog-main-actions {
        justify-items: start;
    }

    .catalog-main-summary {
        text-align: left;
    }
}

@media (max-width: 767.98px) {

    .brand-logo-card {
        min-height: 124px;
        padding: 22px 20px;
    }

    .brand-logo-card img {
        max-width: 180px;
        max-height: 58px;
    }

    .page-hero-catalog,
    .page-hero-detail {
        padding: 152px 0 88px;
    }

    .catalog-filter-card,
    .catalog-main-topbar,
    .catalog-main-tools,
    .catalog-empty-state,
    .product-card,
    .product-gallery-main-panel,
    .product-gallery-thumb,
    .product-detail-card,
    body.product_detail .overview-card,
    body.product_detail .split-card,
    body.products .cta-band,
    body.products_category .cta-band,
    body.product_detail .cta-band {
        border-radius: 18px;
    }

    .catalog-hero-actions,
    .product-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-hero-chips span,
    .product-hero-chips span,
    .catalog-hero-summary span,
    .catalog-main-badges span,
    .catalog-support-tags span,
    .product-gallery-meta span {
        padding: 8px 10px;
    }

    .product-card-body,
    .product-detail-card,
    body.product_detail .overview-card,
    body.product_detail .split-card {
        padding: 20px;
    }

    .product-detail-bullet-list {
        padding: 16px;
    }
}

@media (max-width: 575.98px) {

    .catalog-filter-card,
    .catalog-main-topbar,
    .catalog-main-tools,
    .product-detail-card,
    body.product_detail .overview-card,
    body.product_detail .split-card {
        padding-left: 18px;
        padding-right: 18px;
    }
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .utility-bar-inner,
html[dir="rtl"] .nav-shell,
html[dir="rtl"] .page-hero-shell,
html[dir="rtl"] .page-hero-shell-wide,
html[dir="rtl"] .split-heading,
html[dir="rtl"] .home-about-content,
html[dir="rtl"] .catalog-main-topbar,
html[dir="rtl"] .process-showcase-top,
html[dir="rtl"] .process-flow-grid {
    direction: rtl;
}

html[dir="rtl"] .utility-bar-links,
html[dir="rtl"] .nav-actions {
    align-items: center;
}

html[dir="rtl"] .breadcrumb-inline,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .chip-list {
    justify-content: flex-start;
}

html[dir="rtl"] .language-switcher__menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .hero-slider-wrapper .slick-prev,
html[dir="rtl"] .category-slider-arrow.slick-prev,
html[dir="rtl"] .brand-logo-slider-arrow.slick-prev {
    right: auto;
}

html[dir="rtl"] .hero-slider-wrapper .slick-next,
html[dir="rtl"] .category-slider-arrow.slick-next,
html[dir="rtl"] .brand-logo-slider-arrow.slick-next {
    right: auto;
}

html[dir="rtl"] .hero-slider-wrapper .slick-prev {
    left: 88px;
}

html[dir="rtl"] .hero-slider-wrapper .slick-next {
    left: 26px;
}

html[dir="rtl"] .category-slider-arrow.slick-prev {
    left: 68px;
}

html[dir="rtl"] .category-slider-arrow.slick-next {
    left: 0;
}

html[dir="rtl"] .brand-logo-slider-arrow.slick-prev {
    left: 68px;
}

html[dir="rtl"] .brand-logo-slider-arrow.slick-next {
    left: 0;
}

html[dir="rtl"] .hero-slider-wrapper .slick-dots {
    left: auto;
    right: 32px;
}

html[dir="rtl"] .process-showcase-cta {
    justify-self: start;
}

html[dir="rtl"] .process-flow-card:not(:last-child)::after {
    content: '<-';
    right: auto;
    left: -46px;
}

html[dir="rtl"] .home-about-visual-note {
    left: auto;
    right: 24px;
}

html[dir="rtl"] .brand-logo-section,
html[dir="rtl"] .brand-logo-section .section-heading,
html[dir="rtl"] .brand-logo-slider-shell {
    direction: rtl;
}

html[dir="rtl"] body.contact .page-hero-copy,
html[dir="rtl"] body.contact .page-hero-aside,
html[dir="rtl"] body.contact .contact-info-card,
html[dir="rtl"] body.contact .form-card,
html[dir="rtl"] body.contact .overview-card {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body.contact .hero-aside-kicker,
html[dir="rtl"] body.contact .eyebrow {
    letter-spacing: 0.08em;
}

html[dir="rtl"] body.contact .breadcrumb-inline,
html[dir="rtl"] body.contact .hero-aside-tags {
    justify-content: flex-start;
}

html[dir="rtl"] body.contact .bullet-list li {
    padding-left: 0;
    padding-right: 24px;
}

html[dir="rtl"] body.contact .bullet-list li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] body.contact .form-control,
html[dir="rtl"] body.contact .form-select,
html[dir="rtl"] body.contact textarea.form-control,
html[dir="rtl"] body.contact .form-label {
    text-align: right;
}

html[dir="rtl"] body.contact .link-arrow i.iconoir-arrow-right {
    transform: scaleX(-1);
}

html[dir="rtl"] body.contact .link-arrow:hover i.iconoir-arrow-right,
html[dir="rtl"] body.contact .link-arrow:focus i.iconoir-arrow-right {
    transform: translateX(-2px) scaleX(-1);
}

html[dir="rtl"] body.products .catalog-layout,
html[dir="rtl"] body.products_category .catalog-layout {
    direction: rtl;
}

html[dir="rtl"] body.products .catalog-search-field input,
html[dir="rtl"] body.products_category .catalog-search-field input {
    padding-right: 18px;
    padding-left: 58px;
    text-align: right;
}

html[dir="rtl"] body.products .catalog-search-icon,
html[dir="rtl"] body.products_category .catalog-search-icon {
    right: auto;
    left: 18px;
}

html[dir="rtl"] body.products .catalog-sort-select,
html[dir="rtl"] body.products_category .catalog-sort-select,
html[dir="rtl"] body.products .catalog-filter-card,
html[dir="rtl"] body.products_category .catalog-filter-card,
html[dir="rtl"] body.products .catalog-main-copy,
html[dir="rtl"] body.products_category .catalog-main-copy,
html[dir="rtl"] body.products .product-card-body,
html[dir="rtl"] body.products_category .product-card-body,
html[dir="rtl"] body.product_detail .product-card-body,
html[dir="rtl"] body.product_detail .product-detail-card,
html[dir="rtl"] body.product_detail .product-support-card,
html[dir="rtl"] body.product_detail .product-process-card,
html[dir="rtl"] body.product_detail .catalog-heading-copy,
html[dir="rtl"] body.product_detail .product-detail-richtext,
html[dir="rtl"] body.product_detail .product-detail-lead {
    text-align: right;
}

html[dir="rtl"] body.products .catalog-main-tools,
html[dir="rtl"] body.products_category .catalog-main-tools,
html[dir="rtl"] body.products .catalog-pagination,
html[dir="rtl"] body.products_category .catalog-pagination,
html[dir="rtl"] body.products .catalog-hero-chips,
html[dir="rtl"] body.products_category .catalog-hero-chips,
html[dir="rtl"] body.products .catalog-main-badges,
html[dir="rtl"] body.products_category .catalog-main-badges,
html[dir="rtl"] body.products .product-card-topline,
html[dir="rtl"] body.products_category .product-card-topline,
html[dir="rtl"] body.product_detail .product-card-topline,
html[dir="rtl"] body.products .product-card-footer,
html[dir="rtl"] body.products_category .product-card-footer,
html[dir="rtl"] body.product_detail .product-card-footer,
html[dir="rtl"] body.product_detail .product-hero-chips,
html[dir="rtl"] body.product_detail .product-hero-actions,
html[dir="rtl"] body.product_detail .product-hero-tags,
html[dir="rtl"] body.product_detail .product-gallery-thumbs,
html[dir="rtl"] body.product_detail .product-gallery-meta,
html[dir="rtl"] body.product_detail .product-detail-meta-line,
html[dir="rtl"] body.product_detail .product-detail-actions,
html[dir="rtl"] body.product_detail .catalog-heading-row {
    direction: rtl;
}

html[dir="rtl"] body.products .product-card-badge,
html[dir="rtl"] body.products_category .product-card-badge,
html[dir="rtl"] body.product_detail .product-card-badge {
    left: auto;
    right: 16px;
}

html[dir="rtl"] body.products .product-card-quick-action,
html[dir="rtl"] body.products_category .product-card-quick-action,
html[dir="rtl"] body.product_detail .product-card-quick-action {
    right: auto;
    left: 16px;
}

html[dir="rtl"] body.product_detail .product-gallery-lightbox-badge {
    right: auto;
    left: 18px;
}

html[dir="rtl"] body.products .catalog-sidebar-link strong,
html[dir="rtl"] body.products_category .catalog-sidebar-link strong {
    direction: ltr;
    unicode-bidi: isolate;
}

html[dir="rtl"] body.product_detail .product-detail-richtext ul,
html[dir="rtl"] body.product_detail .product-detail-richtext ol {
    padding-left: 0;
    padding-right: 1.25rem;
}

html[dir="rtl"] body.product_detail .product-detail-bullet-list li {
    padding-left: 0;
    padding-right: 24px;
}

html[dir="rtl"] body.product_detail .product-detail-bullet-list li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] body.product_detail .product-process-step {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    text-align: right;
}

html[dir="rtl"] body.product_detail .link-arrow i.iconoir-arrow-right {
    transform: scaleX(-1);
}

html[dir="rtl"] body.product_detail .link-arrow:hover i.iconoir-arrow-right,
html[dir="rtl"] body.product_detail .link-arrow:focus i.iconoir-arrow-right {
    transform: translateX(-2px) scaleX(-1);
}

html[dir="rtl"] body.products .catalog-main-summary,
html[dir="rtl"] body.products_category .catalog-main-summary {
    text-align: right;
}

html[dir="rtl"] .brand-logo-section {
    text-align: right;
}

html[dir="rtl"] .brand-logo-section::before {
    background:
        radial-gradient(circle at right top, rgba(209, 135, 55, 0.14), transparent 40%),
        radial-gradient(circle at left top, rgba(17, 38, 29, 0.08), transparent 34%);
}

html[dir="rtl"] .case-card {
    direction: rtl;
    text-align: right;
}

/* =============================================================
   ABOUT PAGES (about, about_corporate, about_process)
   ============================================================= */

html[dir="rtl"] body.about .page-hero-copy,
html[dir="rtl"] body.about_corporate .page-hero-copy,
html[dir="rtl"] body.about_process .page-hero-copy,
html[dir="rtl"] body.about .overview-card,
html[dir="rtl"] body.about_corporate .overview-card,
html[dir="rtl"] body.about_corporate .detail-card,
html[dir="rtl"] body.about_process .process-card,
html[dir="rtl"] body.about .cta-band {
    direction: rtl;
    text-align: right;
}

/* Keep centered sections centered */
html[dir="rtl"] body.about .text-center,
html[dir="rtl"] body.about_corporate .text-center,
html[dir="rtl"] body.about_process .text-center {
    text-align: center !important;
}

html[dir="rtl"] body.about .eyebrow,
html[dir="rtl"] body.about_corporate .eyebrow,
html[dir="rtl"] body.about_process .eyebrow {
    letter-spacing: 0.08em;
}

/* Story text column */
html[dir="rtl"] body.about .col-lg-6 > h2,
html[dir="rtl"] body.about .col-lg-6 > p,
html[dir="rtl"] body.about .col-lg-6 > span.eyebrow,
html[dir="rtl"] body.about .col-lg-6 > ul.bullet-list {
    direction: rtl;
    text-align: right;
}

/* Bullet list */
html[dir="rtl"] body.about .bullet-list li,
html[dir="rtl"] body.about .meta-list li {
    padding-left: 0;
    padding-right: 24px;
}

html[dir="rtl"] body.about .bullet-list li::before,
html[dir="rtl"] body.about .meta-list li::before {
    left: auto;
    right: 0;
}

/* Breadcrumb */
html[dir="rtl"] body.about .breadcrumb-inline,
html[dir="rtl"] body.about_corporate .breadcrumb-inline,
html[dir="rtl"] body.about_process .breadcrumb-inline {
    justify-content: flex-start;
}

/* "Daha Fazla" link in overview cards */
html[dir="rtl"] body.about .link-arrow i.iconoir-arrow-right,
html[dir="rtl"] body.about .link-primary i.iconoir-arrow-right {
    transform: scaleX(-1);
}

/* Corporate and process page hero (no .page-hero-shell wrapper) */
html[dir="rtl"] body.about_corporate .page-hero .container,
html[dir="rtl"] body.about_process .page-hero .container {
    direction: rtl;
    text-align: right;
}

/* Number chip stays LTR (numeric content) */
html[dir="rtl"] body.about_process .number-chip {
    direction: ltr;
    unicode-bidi: isolate;
}

/* =============================================================
   REAL ESTATE PAGE
   ============================================================= */

/* Hero */
.re-hero {
    min-height: 340px;
}

/* What I Do section */
.re-what-section {
    background: var(--site-surface);
}

.re-what-media {
    position: relative;
    display: inline-block;
    width: 100%;
}

.re-what-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    max-height: 440px;
}

.re-what-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--site-shadow-md);
}

.re-what-badge i {
    font-size: 2rem;
    color: var(--site-accent);
}

.re-what-badge strong {
    display: block;
    font-family: 'Archivo', sans-serif;
    color: var(--site-ink);
    font-size: 0.95rem;
}

.re-what-badge span {
    font-size: 0.78rem;
    color: var(--site-muted);
}

/* Service cards */
.re-service-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--site-line);
    height: 100%;
    transition: box-shadow 0.25s;
}

.re-service-card:hover {
    box-shadow: var(--site-shadow-sm);
}

.re-service-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--site-accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-accent);
    font-size: 1.35rem;
}

.re-service-card h4 {
    font-size: 1rem;
    margin: 0 0 4px;
    color: var(--site-ink);
}

.re-service-card p {
    font-size: 0.85rem;
    color: var(--site-muted);
    margin: 0;
}

/* Properties banner */
.re-properties-banner {
    --re-banner-parallax-shift: 0px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    padding-top: 40px;
    padding-bottom: 40px;
}

.re-properties-banner-media {
    position: absolute;
    inset: -56px 0;
    background-size: cover;
    background-position: center;
    transform: translate3d(0, var(--re-banner-parallax-shift), 0) scale(1.08);
    will-change: transform;
    pointer-events: none;
}

.re-properties-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(209,135,55,0.55) 0%, rgba(209,135,55,0.75) 100%);
    z-index: 1;
}

.re-properties-banner .container {
    z-index: 2;
}

.re-properties-banner h2 {
    position: relative;
    color: #fff;
    font-size: 2.2rem;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {

    .re-properties-banner-media {
        transform: none;
    }
}

/* Properties section */
.re-properties-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.re-properties-section + .re-properties-section {
    border-top: 1px solid var(--site-line);
}

/* Property card */
.re-prop-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--site-line);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.re-prop-card:hover {
    box-shadow: var(--site-shadow-md);
    transform: translateY(-4px);
}

.re-prop-media {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.re-prop-media-link {
    display: block;
    width: 100%;
    height: 100%;
}

.re-prop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

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

.re-prop-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--site-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    z-index: 2;
}

.re-prop-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.re-prop-price {
    font-family: 'Archivo', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--site-accent);
}

.re-prop-price span {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--site-muted);
    margin-left: 2px;
}

.re-prop-location {
    font-size: 0.8rem;
    color: var(--site-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.re-prop-location i {
    font-size: 0.95rem;
}

.re-prop-body h5 {
    font-size: 1rem;
    margin: 4px 0 2px;
    color: var(--site-ink);
}

.re-prop-body h5 a {
    color: inherit;
    text-decoration: none;
}

.re-prop-body p {
    font-size: 0.83rem;
    color: var(--site-muted);
    margin: 0 0 8px;
    flex: 1;
}

.re-prop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--site-ink-soft);
    padding-top: 10px;
    border-top: 1px solid var(--site-line);
    margin-top: auto;
}

.re-prop-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.re-prop-meta i {
    font-size: 1rem;
    color: var(--site-accent);
}

.re-prop-btn {
    margin-top: 14px;
    align-self: flex-start;
}

.re-detail-hero .page-hero-aside {
    min-width: min(100%, 360px);
}

.re-detail-hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
}

.re-detail-image-panel {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--site-shadow-md);
}

.re-detail-image-panel img {
    width: 100%;
    height: clamp(320px, 42vw, 520px);
    object-fit: cover;
}

.re-detail-overview-card,
.re-detail-highlight-card {
    border: 1px solid var(--site-line);
}

.re-detail-richtext p:last-child {
    margin-bottom: 0;
}

.re-detail-card h3 {
    font-size: 1.3rem;
}

.re-detail-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.re-detail-fact {
    border: 1px solid var(--site-line);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 16px;
}

.re-detail-fact span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--site-muted);
    margin-bottom: 6px;
}

.re-detail-fact strong {
    color: var(--site-ink);
    font-family: 'Archivo', sans-serif;
    font-size: 0.98rem;
}

.re-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.re-detail-highlight-list li + li {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .re-what-badge {
        position: static;
        margin-top: 16px;
        box-shadow: none;
        border: 1px solid var(--site-line);
    }

    .re-what-img {
        max-height: 260px;
    }

    .re-detail-fact-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── WhatsApp Float Button ─── */
.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
    color: #fff !important;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 2.4s ease-out infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.7); opacity: 0;   }
    100% { transform: scale(1.7); opacity: 0;   }
}
