:root {
    --blue: #002e6f;
    --orange: #ff5a00;
    --graphite: #293238;
    --deep: #001b44;
    --light: #f4f6f8;
    --white: #ffffff;
    --muted: #7d8793;
    --line: rgba(0, 46, 111, 0.14);
    --shadow: 0 24px 60px rgba(0, 27, 68, 0.16);
    --radius: 8px;
    --mx: 50vw;
    --my: 50vh;
    --page-gutter: clamp(1.15rem, 5.5vw, 7rem);
    --page-gutter-wide: clamp(1.15rem, 6.5vw, 8.5rem);
    --page-gutter-mobile: clamp(1rem, 5vw, 1.35rem);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--graphite);
    background:
        radial-gradient(circle at var(--mx) var(--my), rgba(255, 90, 0, 0.08), transparent 22rem),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 44%, #ffffff 100%);
    overflow-x: hidden;
}

.site-header,
main,
section,
.navbar,
.hero-slide,
.section,
.category-card,
.showcase-section,
.showcase-carousel {
    min-width: 0;
}

.site-header,
main,
.site-footer {
    animation: pageShellEnter 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

main {
    animation-delay: 0.04s;
}

.site-footer {
    animation-delay: 0.08s;
}

main.page-circuit-bg {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at var(--mx) var(--my), rgba(255, 90, 0, 0.055), transparent 24rem),
        linear-gradient(180deg, #ffffff 0%, #f7faff 42%, #ffffff 100%);
}

main.page-circuit-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../images/banners/values-section-tech-bg-transparent.png");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: max(100%, 1500px) auto;
    opacity: 0.085;
    pointer-events: none;
}

main.page-circuit-bg > * {
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
    font-family: "Montserrat", Arial, sans-serif;
}

button {
    cursor: pointer;
}

.cursor-glow {
    position: fixed;
    inset: auto;
    left: var(--mx);
    top: var(--my);
    width: 18rem;
    height: 18rem;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 90, 0, 0.14), transparent 62%);
    mix-blend-mode: normal;
    z-index: 2;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    color: var(--white);
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.34rem var(--page-gutter);
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar span {
    white-space: nowrap;
}

.topbar-ruc {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.4rem;
    min-height: 5.35rem;
    padding: 0.6rem var(--page-gutter);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 38px rgba(0, 27, 68, 0.1);
    color: var(--deep);
}

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

.brand img {
    width: auto;
    height: clamp(3.15rem, 5vw, 4.15rem);
    max-width: clamp(15rem, 30vw, 23rem);
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 2rem);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    padding: 0.55rem 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.menu-toggle span {
    width: 1.15rem;
    height: 2px;
    background: var(--deep);
}

.nav-cta,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 2.9rem;
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta::before,
.primary-btn::before,
.secondary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.26) 48%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.nav-cta:hover::before,
.primary-btn:hover::before,
.secondary-btn:hover::before {
    transform: translateX(120%);
}

.nav-cta > *,
.primary-btn > *,
.secondary-btn > * {
    position: relative;
    z-index: 1;
}

.nav-cta,
.primary-btn {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(255, 90, 0, 0.28);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
}

.nav-cta svg,
.primary-btn svg,
.slider-btn svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-slider {
    position: relative;
    min-height: clamp(38rem, 72vh, 44rem);
    overflow: hidden;
    background: var(--deep);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    min-height: clamp(38rem, 72vh, 44rem);
    padding: 9.7rem var(--page-gutter) 3.2rem;
    background-image: var(--slide-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    pointer-events: none;
    transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 27, 68, 0.94) 0%, rgba(0, 27, 68, 0.84) 38%, rgba(0, 27, 68, 0.3) 76%, rgba(0, 27, 68, 0.12) 100%),
        linear-gradient(180deg, rgba(0, 27, 68, 0.24), rgba(0, 27, 68, 0.52));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 46rem;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(2.05rem, 4vw, 3.45rem);
    line-height: 1.04;
    font-weight: 800;
}

.hero-summary {
    max-width: 38rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
}

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

.hero-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.hero-kpis span,
.tag-list span,
.spec-row span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-kpis span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.slider-controls {
    position: absolute;
    right: var(--page-gutter);
    bottom: 2.05rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.slider-btn {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.slider-dots {
    display: flex;
    gap: 0.45rem;
}

.slider-dots button {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.4);
}

.slider-dots button.is-active {
    width: 2.1rem;
    border-radius: 99px;
    background: var(--orange);
}

.quick-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.45rem);
    width: min(88rem, calc(100% - clamp(8rem, 14vw, 16rem)));
    margin: 0 auto;
    transform: translateY(-2.45rem);
    position: relative;
    z-index: 6;
}

.quick-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    min-height: 7.4rem;
    padding: 1.35rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 46, 111, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96)),
        var(--white);
    box-shadow: 0 22px 54px rgba(0, 27, 68, 0.12);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.quick-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 0.22rem;
    background: linear-gradient(90deg, var(--orange), rgba(255, 90, 0, 0.18));
}

.quick-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 90, 0, 0.42);
    box-shadow: 0 28px 70px rgba(0, 27, 68, 0.16);
}

.quick-icon {
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    color: var(--orange);
    background: #fff1e8;
    box-shadow: inset 0 0 0 1px rgba(255, 90, 0, 0.16), 0 12px 26px rgba(255, 90, 0, 0.12);
}

.quick-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-strip strong,
.quick-card div > span {
    display: block;
}

.quick-strip strong {
    color: var(--blue);
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
}

.quick-card div > span {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.quick-strip .quick-icon {
    display: grid;
    color: var(--orange) !important;
}

.section {
    padding: clamp(4rem, 8vw, 6.5rem) var(--page-gutter);
}

.section-heading {
    max-width: 49rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.categories-section {
    padding-top: clamp(3rem, 6vw, 5.5rem);
    position: relative;
    background:
        linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at 88% 8%, rgba(255, 90, 0, 0.08), transparent 24rem);
    border-top: 1px solid rgba(0, 46, 111, 0.05);
}

.section-heading h2,
.solution-copy h2,
.contact-copy h2 {
    margin: 0;
    color: var(--deep);
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    line-height: 1.08;
    font-weight: 800;
}

.section-heading p,
.solution-copy p,
.contact-copy p {
    margin: 1rem 0 0;
    color: #5f6c7a;
    line-height: 1.8;
}

.service-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding-top: clamp(3.5rem, 6vw, 5rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98)),
        radial-gradient(circle at 12% 18%, rgba(255, 90, 0, 0.08), transparent 20rem);
}

.service-overview__copy h2,
.technical-copy h2,
.supply-panel h2 {
    margin: 0.45rem 0 0;
    color: var(--deep);
    font-size: clamp(2rem, 3.2vw, 3.15rem);
    line-height: 1.08;
    font-weight: 800;
}

.service-overview__copy p,
.technical-copy p,
.supply-panel p {
    max-width: 46rem;
    color: #5f6c7a;
    line-height: 1.8;
}

.service-overview__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-top: 1.5rem;
}

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

.service-stat {
    position: relative;
    min-height: 9rem;
    padding: 1.25rem;
    border: 1px solid rgba(0, 46, 111, 0.12);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)),
        var(--white);
    box-shadow: 0 20px 56px rgba(0, 27, 68, 0.09);
    overflow: hidden;
}

.service-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0.28rem;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--blue));
}

.service-stat strong,
.service-stat span {
    display: block;
}

.service-stat strong {
    color: var(--orange);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1;
    font-weight: 800;
}

.service-stat span {
    margin-top: 0.7rem;
    color: var(--deep);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.catalog-cta-section {
    overflow: hidden;
    color: var(--white);
    background: var(--deep);
}

.catalog-cta__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(2.5rem, 4vw, 3.7rem) var(--page-gutter-wide);
    background:
        linear-gradient(135deg, rgba(0, 80, 170, 0.96), rgba(0, 46, 111, 0.96)),
        var(--blue);
}

.catalog-cta__top .eyebrow {
    color: #78d9ff;
}

.catalog-cta__top h2 {
    margin: 0.25rem 0 0;
    max-width: 43rem;
    color: var(--white);
    font-size: clamp(1.55rem, 2.9vw, 2.55rem);
    line-height: 1.08;
    text-transform: uppercase;
}

.catalog-cta__top p {
    max-width: 48rem;
    margin: 0.85rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.catalog-cta__download,
.catalog-cta__button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3.4rem;
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 20px 38px rgba(0, 27, 68, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.catalog-cta__download::before,
.catalog-cta__button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.catalog-cta__download:hover,
.catalog-cta__button:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 24px 46px rgba(0, 27, 68, 0.32);
}

.catalog-cta__download:hover::before,
.catalog-cta__button:hover::before {
    transform: translateX(120%);
}

.catalog-cta__download > *,
.catalog-cta__button > * {
    position: relative;
    z-index: 1;
}

.catalog-cta__download {
    background: var(--orange);
}

.catalog-cta__download svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-cta__main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(21rem, 0.92fr) minmax(0, 1.08fr);
    align-items: end;
    min-height: clamp(30rem, 42vw, 38rem);
    padding: 0 var(--page-gutter-wide);
    background:
        linear-gradient(135deg, rgba(0, 27, 68, 0.98), rgba(0, 46, 111, 0.92)),
        var(--deep);
}

.catalog-cta__main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 90, 0, 0.12), transparent 34%),
        linear-gradient(135deg, transparent 70%, rgba(255, 90, 0, 0.18));
    pointer-events: none;
}

.catalog-cta__person {
    position: relative;
    z-index: 1;
    align-self: end;
    display: flex;
    justify-content: center;
    margin: 0;
    min-height: 100%;
}

.catalog-cta__person img {
    align-self: end;
    width: min(38vw, 34rem);
    min-width: 22rem;
    max-height: clamp(29rem, 42vw, 38rem);
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.28));
}

.catalog-cta__content {
    position: relative;
    z-index: 1;
    align-self: center;
    max-width: 44rem;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.catalog-cta__content .eyebrow {
    color: var(--orange);
}

.catalog-cta__content h2 {
    margin: 0.4rem 0 0;
    color: var(--white);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.18;
    text-transform: uppercase;
}

.catalog-cta__content p {
    max-width: 40rem;
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
    line-height: 1.85;
}

.catalog-cta__points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.5rem 0 0;
}

.catalog-cta__points span {
    display: inline-flex;
    align-items: center;
    min-height: 2.3rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
}

.catalog-cta__button {
    margin-top: 1.65rem;
    background: linear-gradient(135deg, var(--orange), #ff7a1f);
}

.category-grid,
.product-grid,
.process-grid {
    display: grid;
    gap: 1rem;
}

.category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1rem, 1.4vw, 1.25rem);
}

.category-card,
.product-card,
.process-card,
.quote-form {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(0, 27, 68, 0.08);
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 15.5rem;
    padding: clamp(1.1rem, 1.45vw, 1.35rem);
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    border-color: rgba(0, 46, 111, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
        var(--white);
    box-shadow: 0 20px 54px rgba(0, 27, 68, 0.1);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 0.28rem;
    background: linear-gradient(90deg, var(--orange), rgba(255, 90, 0, 0.18));
    opacity: 1;
    z-index: 0;
}

.category-card::after,
.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 46, 111, 0.1), transparent 45%, rgba(255, 90, 0, 0.12));
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.process-card::before {
    z-index: 0;
}

.category-card:hover {
    border-color: rgba(255, 90, 0, 0.42);
    box-shadow: 0 24px 66px rgba(0, 27, 68, 0.14), 0 0 0 1px rgba(255, 90, 0, 0.08);
}

.category-card:hover::after,
.process-card:hover::before {
    opacity: 1;
}

.category-index {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--orange);
    font-size: clamp(2.6rem, 3vw, 3.35rem);
    line-height: 1;
    font-weight: 800;
    text-shadow: 0 12px 26px rgba(255, 90, 0, 0.16);
    width: auto;
}

.category-index::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.55rem;
    width: 2.6rem;
    height: 0.22rem;
    border-radius: 999px;
    background: rgba(255, 90, 0, 0.32);
}

.category-card h3,
.process-card h3 {
    position: relative;
    margin: 1.05rem 0 0.7rem;
    color: var(--deep);
    font-size: 1.15rem;
}

.category-card h3 {
    margin-top: 1.05rem;
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

.category-card p,
.process-card p,
.product-card p {
    position: relative;
    color: #64717e;
    line-height: 1.65;
}

.category-card p {
    margin-top: 0;
}

.category-card .tag-list {
    margin-top: auto;
    padding-top: 0.85rem;
}

.category-card .tag-list span {
    border: 1px solid rgba(0, 46, 111, 0.08);
    background: #edf4fc;
    box-shadow: 0 8px 20px rgba(0, 27, 68, 0.05);
}

.category-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.4rem;
    margin-top: 0.85rem;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.contact-highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 800;
    background: #edf4fc;
    border: 1px solid rgba(0, 46, 111, 0.09);
}

.category-action::after {
    content: "";
    width: 1.65rem;
    height: 0.15rem;
    border-radius: 999px;
    background: currentColor;
    transition: width 0.2s ease;
}

.category-card:hover .category-action::after {
    width: 2.35rem;
}

.tag-list,
.spec-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.tag-list span,
.spec-row span {
    color: var(--blue);
    background: #eef4fb;
}

.filter-bar {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.filter-btn {
    min-height: 2.65rem;
    padding: 0.7rem 0.95rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    color: var(--blue);
    background: var(--white);
    font-weight: 800;
}

.filter-btn.is-active {
    color: var(--white);
    border-color: var(--blue);
    background: var(--blue);
}

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

.product-card {
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.2s ease;
    display: flex;
    flex-direction: column;
}

.product-card.is-hidden {
    display: none;
}

.showcase-product.is-hidden {
    display: none;
}

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

.product-media--template {
    margin: 1rem 1rem 0;
    padding: 0.45rem;
    border: 1px solid rgba(0, 46, 111, 0.14);
    border-radius: calc(var(--radius) - 2px);
    transition: transform 0.25s ease;
}

.product-template-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 20px rgba(0, 27, 68, 0.12));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.product-card:hover .product-template-image,
.catalog-card:hover .product-template-image {
    transform: scale(1.035);
    filter: drop-shadow(0 26px 24px rgba(0, 27, 68, 0.18));
}

.product-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image {
    position: relative;
    z-index: 1;
    width: 78%;
    height: 70%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 24px 18px rgba(0, 27, 68, 0.16));
    transform: translateY(0.35rem);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.product-card:hover .product-image {
    transform: translateY(-0.1rem) scale(1.04);
    filter: drop-shadow(0 28px 22px rgba(0, 27, 68, 0.2));
}

.product-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.1rem;
}

.product-tag {
    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-copy h3 {
    margin: 0.35rem 0 0;
    color: var(--deep);
    font-size: 1.04rem;
    line-height: 1.3;
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--blue);
    font-weight: 800;
}

.catalog-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.showcase-section {
    display: grid;
    grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
    gap: clamp(1.6rem, 3vw, 3rem);
    align-items: start;
}

.showcase-rail {
    position: sticky;
    top: 7rem;
    padding: 1rem 0;
}

.showcase-rail h2 {
    margin: 0.45rem 0 1.4rem;
    color: var(--deep);
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    line-height: 1.15;
    font-weight: 800;
}

.showcase-filter {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 2.45rem;
    padding: 0.35rem 0;
    border: 0;
    border-bottom: 2px solid transparent;
    color: #687381;
    background: transparent;
    font-size: clamp(1rem, 1.4vw, 1.28rem);
    font-weight: 800;
    text-align: left;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.showcase-filter:hover,
.showcase-filter.is-active {
    color: var(--deep);
    border-color: var(--orange);
    transform: translateX(0.18rem);
}

.showcase-link {
    display: inline-flex;
    margin-top: 1.35rem;
    color: var(--blue);
    font-weight: 800;
}

.showcase-carousel {
    position: relative;
    min-width: 0;
    padding-bottom: 3.25rem;
}

.showcase-products {
    --showcase-gap: clamp(1rem, 1.6vw, 1.45rem);
    display: flex;
    flex-wrap: nowrap;
    gap: var(--showcase-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0.25rem 0.9rem;
    scroll-behavior: smooth;
    scroll-padding-inline: 0.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.showcase-products::-webkit-scrollbar {
    display: none;
}

.showcase-product {
    display: grid;
    gap: 0.85rem;
    flex: 0 0 calc((100% - (var(--showcase-gap) * 3)) / 4);
    min-width: 0;
    color: var(--deep);
    scroll-snap-align: start;
}

.showcase-product__media {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: 0.55rem;
    border: 1px solid rgba(0, 46, 111, 0.14);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 46px rgba(0, 27, 68, 0.08);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.showcase-product:hover .showcase-product__media {
    transform: translateY(-4px);
    border-color: rgba(255, 90, 0, 0.36);
    box-shadow: 0 24px 62px rgba(0, 27, 68, 0.14);
}

.showcase-product__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 18px rgba(0, 27, 68, 0.12));
}

.showcase-product strong {
    min-height: 2.7rem;
    color: var(--deep);
    font-size: 0.94rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.showcase-controls {
    position: absolute;
    right: 0.25rem;
    bottom: 0;
    display: flex;
    gap: 0.65rem;
}

.showcase-nav {
    display: inline-grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid rgba(0, 46, 111, 0.16);
    border-radius: 999px;
    color: var(--deep);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(0, 27, 68, 0.12);
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.showcase-nav:hover {
    color: var(--orange);
    border-color: rgba(255, 90, 0, 0.36);
    transform: translateY(-2px);
}

.showcase-nav svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.technical-section {
    padding: clamp(4rem, 8vw, 6.5rem) var(--page-gutter);
    background:
        linear-gradient(135deg, rgba(0, 27, 68, 0.98), rgba(0, 46, 111, 0.94)),
        var(--deep);
}

.technical-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    color: var(--white);
}

.technical-copy .eyebrow {
    color: var(--orange);
}

.technical-copy h2 {
    color: var(--white);
}

.technical-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.technical-route {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.technical-route span {
    display: grid;
    min-height: 3rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.07);
}

.technical-checklist {
    display: grid;
    gap: 0.8rem;
}

.technical-checklist article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.technical-checklist article > span {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: var(--orange);
}

.technical-checklist svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.technical-checklist h3 {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
}

.technical-checklist p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.solutions-section {
    padding: clamp(3rem, 7vw, 6rem) var(--page-gutter);
    background:
        linear-gradient(135deg, rgba(0, 27, 68, 0.98), rgba(0, 46, 111, 0.92)),
        var(--deep);
}

.solution-band {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    color: var(--white);
}

.solution-copy h2 {
    color: var(--white);
}

.solution-copy p,
.solution-copy li {
    color: rgba(255, 255, 255, 0.78);
}

.solution-copy ul {
    display: grid;
    gap: 0.75rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.solution-copy li {
    position: relative;
    padding-left: 1.35rem;
}

.solution-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--orange);
}

.solution-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.solution-pill-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.solution-image-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.solution-image-card img {
    display: block;
    width: 100%;
    min-height: 24rem;
    object-fit: cover;
}

.solution-image-card figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.45;
    background: rgba(0, 27, 68, 0.78);
    backdrop-filter: blur(12px);
}

.panel-stack {
    position: relative;
    min-height: 23rem;
}

.electric-panel {
    position: absolute;
    right: 8%;
    top: 8%;
    width: min(80%, 27rem);
    aspect-ratio: 1.1;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.electric-panel span {
    border-radius: var(--radius);
    background: linear-gradient(180deg, #f8fbff, #cbd4dd);
    position: relative;
}

.electric-panel span::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: 18%;
    height: 18%;
    border-radius: 4px;
    background: var(--graphite);
}

.meter-card {
    position: absolute;
    left: 5%;
    bottom: 10%;
    width: 12rem;
    padding: 1.1rem;
    border-radius: var(--radius);
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(255, 90, 0, 0.25);
}

.meter-card strong,
.meter-card small {
    display: block;
}

.meter-card strong {
    font-size: 2.25rem;
}

.spark-line {
    position: absolute;
    left: 8%;
    right: 2%;
    top: 58%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), #ffd0b4, transparent);
    box-shadow: 0 0 25px rgba(255, 90, 0, 0.8);
    transform: rotate(-14deg);
    animation: pulseLine 2.2s ease-in-out infinite;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-card {
    position: relative;
    min-height: 14rem;
    padding: 1.25rem;
    overflow: hidden;
}

.process-card span {
    color: var(--orange);
    font-weight: 800;
}

.supply-section {
    padding-top: 0;
}

.supply-panel {
    padding: clamp(1.5rem, 4vw, 2.6rem);
    border: 1px solid rgba(0, 46, 111, 0.12);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
        var(--white);
    box-shadow: 0 24px 70px rgba(0, 27, 68, 0.1);
    overflow: hidden;
}

.supply-marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.supply-marquee a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.58rem 0.8rem;
    border: 1px solid rgba(0, 46, 111, 0.12);
    border-radius: var(--radius);
    color: var(--blue);
    background: #edf4fc;
    font-size: 0.82rem;
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.supply-marquee a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 90, 0, 0.34);
    background: #fff7f1;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    padding: clamp(4rem, 8vw, 6.5rem) var(--page-gutter);
    align-items: start;
}

.source-note {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 4px solid var(--orange);
    background: #f8fbff;
}

.source-note strong {
    color: var(--deep);
}

.source-note a {
    color: var(--blue);
    font-weight: 700;
}

.quote-form {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.quote-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--deep);
    font-size: 0.86rem;
    font-weight: 800;
}

.anti-spam-field {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
}

.quote-form.is-spam-blocked {
    animation: spamBlocked 0.42s ease;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.9rem 1rem;
    color: var(--graphite);
    background: #fbfcfe;
    outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.12);
}

.quote-form .primary-btn {
    border: 0;
}

.brand-slider-section {
    position: relative;
    overflow: hidden;
    padding: clamp(2.6rem, 5vw, 4.2rem) var(--page-gutter);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
        radial-gradient(circle at 50% 0, rgba(255, 90, 0, 0.07), transparent 26%);
    border-top: 1px solid rgba(210, 221, 235, 0.8);
}

.brand-slider-section::before {
    content: "";
    position: absolute;
    inset: 0 var(--page-gutter) auto;
    height: 0.28rem;
    max-width: 13rem;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--deep));
}

.brand-slider-heading {
    max-width: 52rem;
    margin: 0 auto clamp(1.45rem, 3vw, 2.15rem);
    text-align: center;
}

.brand-slider-heading h2 {
    margin: 0.2rem 0 0;
    color: var(--deep);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-slider-heading p {
    max-width: 44rem;
    margin: 0.85rem auto 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.brand-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(0.65rem, 1.4vw, 1rem);
    align-items: center;
    max-width: 92rem;
    margin: 0 auto;
}

.brand-track {
    --brand-gap: 1.4rem;
    display: flex;
    gap: var(--brand-gap);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0.65rem 0.15rem 0.9rem;
    scrollbar-width: none;
}

.brand-track::-webkit-scrollbar {
    display: none;
}

.brand-card {
    position: relative;
    isolation: isolate;
    flex: 0 0 calc((100% - 5.6rem) / 5);
    min-height: 8.35rem;
    display: grid;
    place-items: center;
    padding: 0.8rem 1rem;
    overflow: hidden;
    color: var(--deep);
    text-align: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-align: start;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.brand-card::after {
    display: none;
}

.brand-card:hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
    opacity: 0.92;
}

.brand-card img {
    display: block;
    width: min(100%, 15.75rem);
    height: 6.25rem;
    max-width: 100%;
    max-height: 6.25rem;
    object-fit: contain;
    mix-blend-mode: normal;
    transform-origin: center;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s ease;
    will-change: transform;
}

.brand-carousel.is-visible .brand-card img {
    animation: brandLogoZoom 0.78s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(0.36s + (var(--brand-order, 0) * 70ms));
}

.brand-card:nth-child(1) { --brand-order: 0; }
.brand-card:nth-child(2) { --brand-order: 1; }
.brand-card:nth-child(3) { --brand-order: 2; }
.brand-card:nth-child(4) { --brand-order: 3; }
.brand-card:nth-child(5) { --brand-order: 4; }
.brand-card:nth-child(6) { --brand-order: 5; }
.brand-card:nth-child(7) { --brand-order: 6; }
.brand-card:nth-child(8) { --brand-order: 7; }
.brand-card:nth-child(9) { --brand-order: 8; }
.brand-card:nth-child(10) { --brand-order: 9; }
.brand-card:nth-child(11) { --brand-order: 10; }
.brand-card:nth-child(12) { --brand-order: 11; }

.brand-card:hover img,
.brand-card:focus-visible img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.brand-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    color: var(--white);
    background: var(--deep);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    box-shadow: 0 18px 34px rgba(0, 27, 68, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.brand-nav:hover {
    transform: translateY(-2px);
    background: var(--orange);
}

.brand-nav svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(17rem, 1.15fr) minmax(14rem, 0.75fr);
    gap: clamp(1.2rem, 3vw, 2.4rem);
    align-items: center;
    padding:
        clamp(2.2rem, 4vw, 3rem)
        clamp(16rem, 24vw, 22rem)
        1.25rem
        var(--page-gutter);
    color: rgba(255, 255, 255, 0.76);
    background:
        linear-gradient(135deg, rgba(0, 27, 68, 0.98), rgba(0, 46, 111, 0.94)),
        var(--deep);
    border-top: 4px solid var(--orange);
}

.footer-brand,
.footer-contact {
    display: grid;
    gap: 0.7rem;
}

.footer-brand__logo {
    width: min(17rem, 100%);
    max-height: 8.2rem;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p,
.footer-copy span {
    margin: 0;
    line-height: 1.65;
}

.footer-contact span {
    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.site-footer a {
    color: var(--white);
    font-weight: 800;
    white-space: nowrap;
}

.footer-copy {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.15rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.86rem;
}

.footer-developed {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    white-space: nowrap;
}

.footer-developed img {
    display: block;
    width: min(16.5rem, 31vw);
    height: auto;
    max-height: 4.05rem;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.24));
}

.contact-info-grid a {
    color: var(--deep);
    font-weight: 700;
    text-decoration: none;
}

.whatsapp-float {
    position: fixed;
    right: clamp(1rem, 3vw, 1.6rem);
    bottom: clamp(4.1rem, 6.8vw, 6.7rem);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 4.05rem;
    padding: 0.55rem 0.6rem 0.55rem 1.15rem;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, #2dd36f 0%, #18b84f 58%, #0fa247 100%);
    border: 0;
    background-clip: padding-box;
    box-shadow: 0 18px 42px rgba(0, 27, 68, 0.22), 0 0 0 0.45rem rgba(37, 211, 102, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 45%);
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    filter: saturate(1.1);
    box-shadow: 0 22px 48px rgba(0, 27, 68, 0.28), 0 0 0 0.5rem rgba(37, 211, 102, 0.12);
}

.whatsapp-float__icon {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: block;
    width: 3.05rem;
    height: 3.05rem;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 27, 68, 0.18));
}

.whatsapp-float__copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.08rem;
    min-width: 8.1rem;
    color: var(--white);
    line-height: 1.08;
    text-align: center;
    text-shadow: 0 1px 0 rgba(0, 27, 68, 0.18);
}

.whatsapp-float__copy small,
.whatsapp-float__copy strong {
    display: block;
}

.whatsapp-float__copy small {
    font-size: 0.68rem;
    font-weight: 800;
}

.whatsapp-float__copy strong {
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0;
}

@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow: 0 18px 42px rgba(0, 27, 68, 0.22), 0 0 0 0.45rem rgba(37, 211, 102, 0.16);
    }

    50% {
        box-shadow: 0 18px 42px rgba(0, 27, 68, 0.22), 0 0 0 0.8rem rgba(37, 211, 102, 0);
    }
}

.inner-hero {
    min-height: 30rem;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: end;
    padding: 10.5rem var(--page-gutter) 3.5rem;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(0, 27, 68, 0.96), rgba(0, 46, 111, 0.78)),
        url("../images/banners/slider-ferreteria.png") center / cover;
}

.inner-hero--catalog {
    background:
        linear-gradient(90deg, rgba(0, 27, 68, 0.98) 0%, rgba(0, 27, 68, 0.9) 34%, rgba(0, 46, 111, 0.62) 68%, rgba(0, 27, 68, 0.38) 100%),
        url("../images/banners/catalog-hero-kys-ai.png?v=20260724a") center / cover;
}

.inner-hero--about {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.75fr);
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 27, 68, 0.98) 0%, rgba(0, 46, 111, 0.9) 48%, rgba(0, 27, 68, 0.7) 100%),
        url("../images/banners/kys-quotation-desk-ai.png") center / cover;
}

.inner-hero--contact {
    grid-template-columns: minmax(0, 56rem);
    align-items: center;
}

.inner-hero h1 {
    margin: 0;
    max-width: 58rem;
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    line-height: 1.04;
    font-weight: 800;
}

.inner-hero p {
    max-width: 49rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.catalog-search {
    align-self: end;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 0.7rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.catalog-search input {
    min-height: 3rem;
    border: 0;
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    outline: none;
}

.catalog-search .primary-btn {
    border: 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(17rem, 20rem) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
    padding: clamp(2rem, 5vw, 4rem) var(--page-gutter) clamp(4rem, 8vw, 6rem);
}

.catalog-sidebar {
    position: sticky;
    top: 7.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(0, 27, 68, 0.08);
    overflow: hidden;
}

.sidebar-title,
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.sidebar-title {
    padding: 1rem;
    background: var(--deep);
    color: var(--white);
}

.sidebar-title a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 800;
}

.sidebar-title__main {
    color: var(--white) !important;
    font-size: 1rem !important;
}

.sidebar-group {
    border-top: 1px solid var(--line);
}

.sidebar-parent,
.sidebar-children a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--deep);
}

.sidebar-parent {
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
    font-weight: 800;
    background: #fbfcfe;
    border: 0;
    border-left: 3px solid transparent;
    width: 100%;
    font-family: inherit;
    text-align: left;
}

.sidebar-parent--toggle {
    cursor: pointer;
}

.sidebar-parent__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.sidebar-parent__icon {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.sidebar-group.is-open .sidebar-parent__icon {
    transform: rotate(180deg);
}

.sidebar-children {
    display: none;
    padding: 0.45rem 0;
}

.sidebar-group.is-open .sidebar-children {
    display: grid;
}

.sidebar-children[hidden] {
    display: none;
}

.sidebar-children a {
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    color: #5f6c7a;
    font-size: 0.82rem;
    line-height: 1.35;
    border-left: 3px solid transparent;
}

.sidebar-category-link {
    font-weight: 800;
}

.sidebar-category-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.25rem;
    align-items: stretch;
}

.sidebar-category-row .sidebar-category-link {
    padding-right: 0.5rem;
}

.sidebar-subtoggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-left: 1px solid rgba(0, 35, 87, 0.08);
    background: transparent;
    color: var(--deep);
    cursor: pointer;
}

.sidebar-subtoggle svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.sidebar-category-row.is-open .sidebar-subtoggle svg {
    transform: rotate(180deg);
}

.sidebar-subtoggle:hover,
.sidebar-subtoggle:focus-visible {
    background: #eef4fb;
    color: var(--blue);
    outline: none;
}

.sidebar-subchildren {
    display: none;
    padding: 0.1rem 0 0.35rem;
}

.sidebar-subchildren:not([hidden]) {
    display: grid;
}

.sidebar-subchildren a {
    padding-left: 2.25rem;
    font-size: 0.78rem;
    color: #738092;
}

.sidebar-parent small,
.sidebar-children small {
    color: var(--orange);
    font-weight: 800;
}

.sidebar-parent.is-active,
.sidebar-children a.is-active,
.sidebar-parent:hover,
.sidebar-children a:hover {
    color: var(--blue);
    background: #eef4fb;
    border-left-color: var(--orange);
}

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

.catalog-toolbar {
    margin-bottom: 1.25rem;
}

.catalog-toolbar h2 {
    margin: 0;
    color: var(--deep);
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.catalog-toolbar p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-weight: 600;
}

.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    color: var(--blue);
    background: var(--white);
    font-weight: 800;
}

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

.catalog-card {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(0, 27, 68, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    display: flex;
    flex-direction: column;
}

.catalog-card__image {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    margin: 1rem 1rem 0;
    padding: 0.45rem;
    border: 1px solid rgba(0, 46, 111, 0.14);
    border-radius: calc(var(--radius) - 2px);
    background: #fff;
    overflow: hidden;
}

.catalog-card__image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 20px rgba(0, 27, 68, 0.12));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.catalog-card:hover .catalog-card__image img {
    transform: scale(1.035);
    filter: drop-shadow(0 26px 24px rgba(0, 27, 68, 0.18));
}

.catalog-card__body {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0.95rem 1rem 1.05rem;
}

.catalog-card__body h3 {
    margin: 0;
    color: var(--deep);
    font-size: 1.05rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.catalog-card__body p {
    margin: 0.75rem 0 0;
    color: #64717e;
    line-height: 1.65;
}

.catalog-card__body .text-link,
.product-copy .text-link {
    margin-top: auto;
    padding-top: 1rem;
}

.catalog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: clamp(1.4rem, 3vw, 2.1rem);
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
        radial-gradient(circle at 15% 0, rgba(255, 90, 0, 0.08), transparent 32%);
    box-shadow: 0 18px 50px rgba(0, 27, 68, 0.08);
}

.catalog-pagination__summary {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.catalog-pagination__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
}

.catalog-page-link,
.catalog-page-ellipsis {
    min-width: 2.6rem;
    min-height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    color: var(--deep);
    font-weight: 800;
    text-decoration: none;
}

.catalog-page-link {
    border: 1px solid rgba(0, 46, 111, 0.14);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0, 27, 68, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.catalog-page-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 90, 0, 0.5);
    color: var(--orange);
}

.catalog-page-link.is-active {
    color: var(--white);
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--orange), #ff7a2f);
    box-shadow: 0 16px 30px rgba(255, 90, 0, 0.24);
}

.catalog-page-link.is-disabled {
    pointer-events: none;
    color: #9aa7b4;
    background: #f2f6fb;
    box-shadow: none;
    opacity: 0.72;
}

.catalog-page-link--wide {
    gap: 0.4rem;
    padding-inline: 0.85rem;
}

.catalog-page-link svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-page-ellipsis {
    color: #8b98a8;
}

.empty-state {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
}

.product-detail-page {
    padding: 7.35rem var(--page-gutter) clamp(4rem, 8vw, 6rem);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    color: #667382;
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    color: var(--blue);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(20rem, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(1.25rem, 3vw, 3rem);
    align-items: start;
}

.product-detail__media {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0.75rem;
}

.product-detail__media img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 24px 28px rgba(0, 27, 68, 0.16));
}

.product-detail__media > img {
    border-radius: calc(var(--radius) - 2px);
}

.product-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(4.75rem, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.product-gallery__item {
    appearance: none;
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) - 4px);
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-gallery__item:hover,
.product-gallery__item.is-active {
    border-color: var(--orange);
    box-shadow: 0 12px 28px rgba(255, 85, 0, 0.16);
}

.product-gallery__item:hover {
    transform: translateY(-2px);
}

.product-gallery__item.is-active {
    outline: 2px solid rgba(255, 85, 0, 0.18);
    outline-offset: 2px;
}

.product-gallery img {
    width: 100%;
    height: 100%;
    padding: 0.25rem;
    filter: none;
    pointer-events: none;
}

.product-media-advice {
    width: 100%;
    margin-top: 0.85rem;
    padding: 1rem;
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid rgba(0, 46, 111, 0.13);
    background: linear-gradient(135deg, rgba(0, 46, 111, 0.04), rgba(255, 90, 0, 0.07));
}

.product-media-advice h2 {
    margin: 0 0 0.45rem;
    color: var(--deep);
    font-size: 0.95rem;
}

.product-media-advice p {
    margin: 0;
    color: #5f6c7a;
    font-size: 0.9rem;
    line-height: 1.65;
}

.product-detail__copy {
    display: grid;
    align-content: start;
    gap: 0.9rem;
}

.product-detail__copy h1 {
    margin: 0;
    color: var(--deep);
    font-size: clamp(1.9rem, 3.2vw, 3.25rem);
    line-height: 1.06;
    text-transform: uppercase;
}

.product-detail__copy p {
    margin: 0;
    color: #5f6c7a;
    line-height: 1.72;
}

.product-detail__copy .lead {
    margin: 0;
    color: var(--graphite);
    font-size: 1.03rem;
    font-weight: 600;
}

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

.product-benefit {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 3.25rem;
    padding: 0.72rem 0.85rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 46, 111, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
    color: var(--deep);
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(0, 27, 68, 0.06);
}

.product-benefit__icon {
    display: grid;
    place-items: center;
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius);
    background: #fff3ea;
    color: var(--orange);
}

.product-benefit__icon svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.detail-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.15rem;
}

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

.product-data-panel {
    min-width: 0;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(0, 27, 68, 0.07);
    padding: 1rem;
}

.product-data-panel--wide {
    grid-column: 1 / -1;
}

.product-data-panel--accent {
    background: linear-gradient(135deg, rgba(0, 46, 111, 0.05), rgba(255, 90, 0, 0.07));
}

.product-data-panel h2 {
    margin: 0 0 0.7rem;
    color: var(--deep);
    font-size: 0.94rem;
}

.product-data-panel p {
    color: #5f6c7a;
    font-size: 0.9rem;
    line-height: 1.65;
}

.product-application-list {
    display: grid;
    gap: 0.48rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-application-list li {
    position: relative;
    padding-left: 0.9rem;
    color: #5f6c7a;
    font-size: 0.88rem;
    line-height: 1.5;
}

.product-application-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 2px;
    background: var(--orange);
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.detail-panel,
.about-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(0, 27, 68, 0.08);
    padding: 1.25rem;
}

.detail-panel h2,
.about-card h2 {
    margin: 0 0 0.85rem;
    color: var(--deep);
    font-size: 1.15rem;
}

.detail-panel p,
.detail-panel li,
.about-card p {
    color: #64717e;
    line-height: 1.75;
}

.detail-panel ul {
    margin: 0;
    padding-left: 1.1rem;
}

.detail-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-specs span {
    padding: 0.55rem 0.7rem;
    border-radius: var(--radius);
    color: var(--blue);
    background: #eef4fb;
    font-size: 0.8rem;
    font-weight: 800;
}

.detail-specs--variants span {
    background: #fff3ea;
    color: var(--orange);
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 4.5rem);
}

.about-card span {
    color: var(--orange);
    font-weight: 800;
}

.about-band {
    margin-top: 0;
}

.about-hero__content .hero-actions {
    margin-top: 1.65rem;
}

.about-hero__panel {
    align-self: stretch;
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 4px solid var(--orange);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.about-hero__panel > span {
    color: #8fd4ff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-hero__panel strong {
    color: var(--white);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1.25;
}

.about-hero__panel ul {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-hero__panel li {
    position: relative;
    padding-left: 1.35rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.about-hero__panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0.35rem rgba(255, 90, 0, 0.16);
}

.about-overview {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.98)),
        radial-gradient(circle at 12% 18%, rgba(255, 90, 0, 0.08), transparent 22rem);
}

.about-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.about-copy h2 {
    margin: 0.4rem 0 0;
    max-width: 42rem;
    color: var(--deep);
    font-size: clamp(2rem, 3.5vw, 3.35rem);
    line-height: 1.06;
    font-weight: 800;
}

.about-copy p {
    max-width: 45rem;
    margin: 1rem 0 0;
    color: #64717e;
    line-height: 1.85;
}

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

.about-proof-card {
    min-height: 9.2rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 42px rgba(0, 27, 68, 0.08);
}

.about-proof-card strong {
    display: block;
    color: var(--orange);
    font-size: clamp(2.3rem, 4vw, 3.15rem);
    line-height: 1;
    font-weight: 800;
}

.about-proof-card span {
    display: block;
    margin-top: 0.7rem;
    color: var(--deep);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-store-visual {
    position: relative;
    overflow: hidden;
    min-height: 25rem;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--deep);
    box-shadow: 0 24px 62px rgba(0, 27, 68, 0.16);
}

.about-store-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 46%, rgba(0, 27, 68, 0.7) 100%),
        linear-gradient(90deg, rgba(255, 90, 0, 0.12), transparent 38%);
    pointer-events: none;
}

.about-store-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 25rem;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}

.about-store-visual figcaption {
    position: absolute;
    z-index: 2;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem 1rem;
    color: var(--white);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    background: rgba(0, 27, 68, 0.78);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.45;
    backdrop-filter: blur(10px);
}

.mission-section {
    background: var(--white);
}

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

.mission-card,
.value-card,
.about-process-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 46px rgba(0, 27, 68, 0.08);
}

.mission-card {
    min-height: 18rem;
    padding: 1.5rem;
}

.mission-card::before,
.value-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--orange), rgba(0, 46, 111, 0.28));
}

.mission-icon {
    display: inline-grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    border-radius: 50%;
    background: var(--orange);
    font-weight: 800;
}

.mission-card h3,
.value-card h3,
.about-process-card h3 {
    margin: 0;
    color: var(--deep);
    font-size: 1.2rem;
}

.mission-card p,
.value-card p,
.about-process-card p {
    margin: 0.85rem 0 0;
    color: #64717e;
    line-height: 1.75;
}

.values-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: transparent;
}

.values-section .section-heading,
.values-section .values-grid {
    position: relative;
    z-index: 1;
}

.page-circuit-bg .about-overview,
.page-circuit-bg .mission-section,
.page-circuit-bg .values-section,
.page-circuit-bg .categories-section,
.page-circuit-bg .showcase-section,
.page-circuit-bg .contact-section,
.page-circuit-bg .catalog-layout,
.page-circuit-bg .product-detail-page,
.page-circuit-bg .contact-page-section {
    background: transparent;
}

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

.value-card {
    min-height: 11.5rem;
    padding: 1.35rem;
}

.about-process-section {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(0, 27, 68, 0.98), rgba(0, 46, 111, 0.94)),
        radial-gradient(circle at 85% 12%, rgba(255, 90, 0, 0.22), transparent 22rem);
}

.about-process-section .section-heading h2,
.about-process-section .section-heading p {
    color: var(--white);
}

.about-process-section .section-heading p {
    color: rgba(255, 255, 255, 0.78);
}

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

.about-process-card {
    min-height: 13rem;
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.about-process-card span {
    display: inline-flex;
    margin-bottom: 1.2rem;
    color: var(--orange);
    font-weight: 800;
}

.about-process-card h3 {
    color: var(--white);
}

.about-process-card p {
    color: rgba(255, 255, 255, 0.78);
}

.about-cta-section {
    padding-top: clamp(3rem, 5vw, 4.5rem);
    background: #f7faff;
}

.about-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(0, 27, 68, 0.98), rgba(0, 46, 111, 0.94)),
        radial-gradient(circle at 88% 12%, rgba(255, 90, 0, 0.26), transparent 18rem);
    box-shadow: var(--shadow);
}

.about-cta-panel h2 {
    max-width: 54rem;
    margin: 0.35rem 0 0;
    color: var(--white);
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    line-height: 1.1;
}

.about-cta-panel p {
    max-width: 48rem;
    margin: 0.9rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.contact-page-section {
    padding-top: clamp(3rem, 6vw, 5rem);
}

.contact-info-grid {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.contact-info-grid div {
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #f8fbff;
}

.contact-info-grid strong,
.contact-info-grid span {
    display: block;
}

.contact-info-grid strong {
    color: var(--deep);
    margin-bottom: 0.25rem;
}

.contact-info-grid span {
    color: #64717e;
    line-height: 1.6;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.65s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.reveal-enabled .reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(5px);
}

.reveal-enabled .reveal.is-visible,
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

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

.hover-lift:hover,
.hover-lift:focus-within {
    transform: translateY(-5px);
    border-color: rgba(255, 90, 0, 0.28);
    box-shadow: 0 26px 60px rgba(0, 27, 68, 0.14);
}

.hover-glow {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease,
        background 0.25s ease;
}

.hover-glow:hover,
.hover-glow:focus-visible {
    filter: saturate(1.08);
    box-shadow: 0 20px 42px rgba(255, 90, 0, 0.24);
}

.catalog-card.hover-lift:hover .catalog-card__image img,
.showcase-product.hover-lift:hover img,
.brand-card.hover-lift:hover img {
    transform: scale(1.045);
}

@keyframes pageShellEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

    65% {
        transform: translateX(6px);
    }
}

@keyframes pulseLine {
    0%, 100% { opacity: 0.45; transform: rotate(-14deg) translateX(-2%); }
    50% { opacity: 1; transform: rotate(-14deg) translateX(2%); }
}

@keyframes brandLogoZoom {
    0% {
        opacity: 0.72;
        transform: scale(0.88);
        filter: blur(1px) saturate(0.95);
    }

    58% {
        opacity: 1;
        transform: scale(1.1);
        filter: blur(0) saturate(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0) saturate(1);
    }
}

@media (max-width: 1100px) {
    .category-grid,
    .product-grid,
    .process-grid,
    .catalog-grid,
    .catalog-grid--related,
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-band,
    .service-overview,
    .about-overview__grid,
    .catalog-cta__top,
    .catalog-cta__main,
    .technical-shell,
    .contact-section,
    .inner-hero,
    .product-detail,
    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
    }

    .showcase-section {
        grid-template-columns: 1fr;
    }

    .showcase-rail {
        position: static;
        padding: 0;
    }

    .showcase-filter {
        display: inline-flex;
        width: auto;
        margin-right: 1rem;
    }

    .showcase-product {
        flex-basis: clamp(14rem, 34vw, 19rem);
    }

    .brand-carousel {
        grid-template-columns: minmax(0, 1fr);
    }

    .brand-nav {
        display: none;
    }

    .service-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .mission-grid,
    .values-grid,
    .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-cta__download {
        justify-self: start;
    }

    .catalog-cta__person img {
        width: min(58vw, 32rem);
    }
}

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

    .navbar {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 4.8rem;
        padding-block: 0.55rem;
    }

    .brand img {
        height: 3.35rem;
        max-width: min(62vw, 17rem);
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .navbar.is-open .nav-links {
        grid-column: 1 / -1;
        display: grid;
        justify-content: stretch;
        gap: 0.2rem;
        width: 100%;
        padding-top: 0.75rem;
    }

    .navbar.is-open .nav-links a {
        padding: 0.85rem 0;
        border-top: 1px solid var(--line);
    }

    .hero-slide {
        padding-top: 8rem;
        background-position: 63% center;
    }

    .slider-controls {
        bottom: 2.1rem;
    }

    .hero-content h1 {
        max-width: min(100%, 28rem);
    }

    .inner-hero {
        padding-top: 7rem;
    }

    .quick-strip {
        grid-template-columns: 1fr;
        transform: translateY(0);
        width: calc(100% - 2rem);
        margin-top: 1rem;
    }

    .quick-card {
        min-height: auto;
    }

    .catalog-cta__top {
        padding: 2.3rem 1rem;
    }

    .catalog-cta__main {
        padding: 0 1rem;
    }

    .catalog-cta__content {
        order: 1;
        padding: 2.7rem 0 1rem;
    }

    .catalog-cta__person {
        order: 2;
        justify-content: flex-start;
        overflow: hidden;
    }

    .catalog-cta__person img {
        width: min(78vw, 25rem);
        min-width: 0;
        max-height: 32rem;
        transform: translateX(-0.75rem);
    }

    .whatsapp-float {
        right: 0.85rem;
        bottom: 0.85rem;
        gap: 0.55rem;
        min-height: 3.65rem;
        padding: 0.48rem 0.5rem 0.48rem 0.9rem;
    }

    .whatsapp-float__copy {
        min-width: 7.1rem;
    }

    .whatsapp-float__copy small {
        font-size: 0.6rem;
    }

    .whatsapp-float__copy strong {
        font-size: 0.84rem;
    }

    .whatsapp-float__icon {
        width: 2.7rem;
        height: 2.7rem;
    }

    .brand-card {
        flex-basis: min(72vw, 18.5rem);
        min-height: 8rem;
    }

    .brand-card img {
        height: 5.8rem;
    }

    .about-store-visual,
    .about-store-visual img {
        min-height: 22rem;
    }

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

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

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 620px) {
    .hero-slider,
    .hero-slide {
        min-height: 40rem;
    }

    .hero-slide {
        align-items: flex-start;
        padding: 6.35rem var(--page-gutter-mobile) 5.4rem;
        background-position: 66% center;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    .hero-content h1 {
        max-width: min(100%, 23rem);
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: 1.06;
    }

    .hero-summary {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.58;
    }

    .hero-kpis {
        display: none;
    }

    .hero-kpis span,
    .tag-list span,
    .spec-row span {
        min-height: 1.8rem;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        font-size: 0.72rem;
    }

    .slider-controls {
        left: var(--page-gutter-mobile);
        right: auto;
        bottom: 1.25rem;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(0, 27, 68, 0.95), rgba(0, 27, 68, 0.64));
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 0.65rem;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        min-height: 2.75rem;
        padding: 0.75rem 0.95rem;
        font-size: 0.82rem;
    }

    .section,
    .technical-section,
    .solutions-section,
    .contact-section,
    .brand-slider-section,
    .catalog-layout,
    .product-detail-page,
    .inner-hero {
        padding-left: var(--page-gutter-mobile);
        padding-right: var(--page-gutter-mobile);
    }

    .categories-section {
        padding-top: 3rem;
    }

    .section-heading {
        max-width: 100%;
        margin-bottom: 1.55rem;
    }

    .section-heading h2,
    .solution-copy h2,
    .contact-copy h2 {
        max-width: 100%;
        font-size: clamp(1.85rem, 9vw, 2.35rem);
        line-height: 1.08;
    }

    .section-heading p,
    .solution-copy p,
    .contact-copy p {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .catalog-cta__download,
    .catalog-cta__button {
        width: 100%;
    }

    .catalog-cta__top h2,
    .catalog-cta__content h2 {
        font-size: clamp(1.55rem, 8vw, 2.1rem);
    }

    .category-grid,
    .product-grid,
    .process-grid,
    .catalog-grid,
    .catalog-grid--related,
    .about-grid,
    .about-proof-grid,
    .mission-grid,
    .values-grid,
    .about-process-grid,
    .product-benefits,
    .product-detail__data,
    .detail-info-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .category-grid {
        gap: 0.9rem;
    }

    .category-card {
        width: 100%;
        min-height: auto;
        padding: 1.15rem;
    }

    .category-index {
        font-size: clamp(2.25rem, 12vw, 3.1rem);
    }

    .category-card h3 {
        font-size: 1.08rem;
        line-height: 1.22;
    }

    .category-card p {
        font-size: 0.92rem;
        line-height: 1.58;
    }

    .service-stats,
    .technical-route {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-data-panel--wide {
        grid-column: auto;
    }

    .showcase-product {
        flex-basis: min(82vw, 18rem);
    }

    .catalog-search,
    .catalog-toolbar,
    .detail-actions {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .catalog-toolbar {
        display: grid;
    }

    .catalog-search .primary-btn,
    .detail-actions .primary-btn,
    .detail-actions .secondary-action {
        width: 100%;
    }

    .site-footer {
        padding-right: 1rem;
    }

    .footer-copy {
        display: grid;
        justify-content: stretch;
    }

    .footer-developed {
        justify-content: flex-start;
        white-space: normal;
    }

    .footer-developed img {
        width: min(10rem, 55vw);
    }

    .catalog-pagination {
        align-items: stretch;
        flex-direction: column;
    }

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

    .catalog-page-link--wide {
        flex: 1 1 8.5rem;
    }

    .site-footer {
        text-align: left;
    }

    .category-card {
        min-height: auto;
    }

    .about-proof-card,
    .mission-card,
    .value-card,
    .about-process-card {
        min-height: auto;
    }

    .about-hero__panel {
        padding: 1.2rem;
    }

    .about-store-visual,
    .about-store-visual img {
        min-height: 18rem;
    }

    .about-store-visual figcaption {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
