:root {
    --blue-900: #101014;
    --blue-700: #25252c;
    --blue-500: #d71920;
    --blue-100: #f3f4f7;
    --yellow-500: #d71920;
    --yellow-300: #ff3b30;
    --green-500: #12a064;
    --carbon-950: #07080a;
    --carbon-900: #101115;
    --carbon-800: #191b21;
    --metal-200: #d8dde6;
    --ember-500: #f0a11f;
    --ember-300: #ffc15d;
    --ink: #151519;
    --muted: #646a78;
    --line: #e2e6ee;
    --white: #ffffff;
    --shadow: 0 22px 55px rgba(0, 0, 0, .18);
    --font: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    background:
        linear-gradient(90deg, rgba(16, 16, 20, .035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(16, 16, 20, .035) 1px, transparent 1px),
        var(--white);
    background-size: 34px 34px;
}

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

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

.shell {
    width: min(1160px, calc(100% - 36px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 16px;
    z-index: 50;
    padding: 10px 14px;
    color: var(--white);
    background: var(--blue-900);
}

.skip-link:focus {
    top: 16px;
}

.topbar {
    color: var(--white);
    background: linear-gradient(90deg, #050505, #24242b 54%, #d71920);
    font-size: .88rem;
    font-weight: 700;
}

.topbar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-header {
    position: relative;
    z-index: 200;
}

.nav-shell {
    position: sticky;
    top: 0;
    z-index: 210;
    padding: 15px 0;
    background: rgba(8, 8, 10, .96);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.nav-shell.is-scrolled {
    background: rgba(8, 8, 10, .98);
}

.nav-shell .shell {
    width: min(1380px, calc(100% - 28px));
}

.nav-shell__inner {
    position: relative;
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
}

.brand img {
    width: auto;
    height: 82px;
    max-width: 245px;
    object-fit: contain;
}

.main-nav {
    align-self: end;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 3px;
}

.main-nav a,
.nav-item > a {
    border-radius: 999px;
    padding: 8px 8px;
    color: var(--white);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-item > a:hover,
.nav-item > a.is-active {
    color: var(--white);
    background: var(--yellow-500);
}

.nav-item {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.product-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 220;
    width: 320px;
    max-height: 70vh;
    overflow: auto;
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.product-menu--simple {
    width: 220px;
}

.nav-item:hover .product-menu,
.nav-item:focus-within .product-menu,
.nav-item.is-open .product-menu {
    display: block;
}

.product-menu a,
.product-menu li a {
    position: relative;
    display: block;
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--blue-900);
    background: transparent;
    font-size: .86rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
}

.product-menu a:hover,
.product-menu li a:hover,
.product-menu a.is-active,
.product-menu li a.is-active {
    color: var(--white);
    background: var(--yellow-500);
}

.product-menu ul {
    margin: 4px 0 0 0;
    padding: 0 0 0 12px;
    list-style: none;
}

.product-menu ul ul {
    margin-left: 8px;
    padding-left: 8px;
}

.product-menu li {
    margin: 2px 0;
}

.product-menu li.has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-menu li.has-children > a::after {
    content: "+";
    opacity: .36;
    font-size: .78rem;
    font-weight: 800;
}

.product-menu li li > a {
    padding-left: 26px;
}

.product-menu li li > a::before {
    content: "›";
    position: absolute;
    left: 12px;
    opacity: .34;
    font-size: .72rem;
    font-weight: 800;
}

.lang-switch {
    position: absolute;
    top: 2px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 3px;
}

.lang-switch a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, .12);
}

.lang-switch a.is-active {
    border-color: var(--yellow-500);
    background: rgba(255, 255, 255, .24);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--yellow-500);
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: var(--blue-900);
}

.hero,
.page-hero,
.product-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(118deg, transparent 0 42%, rgba(240, 161, 31, .16) 42% 45%, transparent 45% 100%),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        radial-gradient(circle at 82% 18%, rgba(215, 25, 32, .46), transparent 31%),
        linear-gradient(135deg, #050505, #15161b 52%, #2b0608);
    background-size: auto, 38px 38px, 38px 38px, auto, auto;
}

.hero {
    min-height: 720px;
    display: grid;
    align-items: center;
    padding: 92px 0 130px;
}

.home-banner .hero-slide--image,
.home-banner .hero-slide--video {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1920 / 800;
    padding: 0;
}

.hero__water {
    position: absolute;
    inset: 0;
    opacity: .34;
    background-image: url("../img/visual/measurement-banner.png");
    background-size: cover;
    background-position: center;
    animation: waterDrift 16s ease-in-out infinite alternate;
}

.home-banner {
    position: relative;
}

.hero-slide {
    display: none;
}

.hero-slide.is-active {
    display: grid;
}

.hero__water--full {
    opacity: 1;
    background-size: cover;
    background-position: center;
    animation: none;
}

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

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 92px;
    z-index: 8;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.banner-dots button {
    width: 11px;
    height: 11px;
    border: 1px solid var(--white);
    border-radius: 50%;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.banner-dots button.is-active {
    background: var(--yellow-500);
}

.hero__grid,
.product-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    align-items: center;
    gap: 46px;
}

.hero h1,
.page-hero h1,
.product-hero h1 {
    margin: 12px 0 18px;
    font-size: clamp(2.35rem, 5vw, 4.85rem);
    line-height: .98;
    letter-spacing: 0;
}

.hero p,
.page-hero p,
.product-hero p {
    max-width: 90%;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 1.08rem;
}

.page-hero p {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--yellow-500);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::after {
    content: "";
    width: 42px;
    height: 3px;
    border-radius: 4px;
    background: currentColor;
}

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

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn--primary {
    color: var(--white);
    background: var(--yellow-500);
    box-shadow: 0 12px 26px rgba(237, 28, 36, .24);
}

.btn--ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .12);
}

.btn--light {
    color: var(--blue-900);
    background: var(--white);
}

.btn--ghost-dark {
    color: var(--blue-900);
    border: 1px solid rgba(12, 26, 85, .22);
    background: var(--white);
}

.hero__product,
.product-hero__image {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.hero__product::before,
.product-hero__image::before {
    content: "";
    position: absolute;
    width: min(92%, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .08));
    box-shadow: inset 0 0 80px rgba(255, 255, 255, .22);
}

.hero__product img,
.product-hero__image img {
    position: relative;
    z-index: 1;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 26px 36px rgba(0, 0, 0, .24));
    animation: floatProduct 5.5s ease-in-out infinite;
}

.hero__product--photo::before {
    display: none;
}

.hero__product--photo img {
    width: min(100%, 560px);
    height: 390px;
    border: 8px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    object-fit: cover;
    animation: none;
}

.hero-badge {
    position: absolute;
    z-index: 2;
    min-width: 104px;
    border-radius: 22px 22px 22px 2px;
    padding: 13px 16px;
    color: var(--white);
    background: var(--yellow-500);
    font-weight: 900;
    box-shadow: var(--shadow);
}

.hero-badge--one {
    top: 18%;
    right: 10%;
}

.hero-badge--two {
    bottom: 14%;
    left: 8%;
    color: var(--blue-900);
    background: var(--white);
}

.wave {
    display: none;
}

.page-hero::after,
.product-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 92px;
    background:
        linear-gradient(128deg, transparent 0 32%, rgba(240, 161, 31, .82) 32% 34%, transparent 34% 100%),
        linear-gradient(145deg, var(--blue-100), #e5e9f0);
    clip-path: polygon(0 68%, 18% 82%, 38% 54%, 57% 72%, 78% 42%, 100% 58%, 100% 100%, 0 100%);
}

.product-hero::after {
    background:
        linear-gradient(128deg, transparent 0 32%, rgba(240, 161, 31, .82) 32% 34%, transparent 34% 100%),
        var(--white);
}

.stats-strip {
    margin-top: -42px;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-radius: 8px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(228, 35, 42, .25), transparent 34%),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        #0b0b0e;
    background-size: auto, 28px 28px, 28px 28px, auto;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.stats-card {
    position: relative;
    overflow: hidden;
    display: grid;
    justify-items: center;
    min-height: 150px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: 26px 14px;
    text-align: center;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, .16), transparent 25%),
        linear-gradient(135deg, #25252b 0%, #111116 46%, #070709 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.stats-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(228, 35, 42, .9) 42% 44%, transparent 44% 100%),
        linear-gradient(180deg, rgba(228, 35, 42, .16), transparent 58%);
    opacity: .8;
}

.stats-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -42px;
    width: 138px;
    height: 92px;
    border-radius: 999px 0 0 0;
    background: linear-gradient(135deg, rgba(228, 35, 42, .38), rgba(244, 196, 48, .12));
    filter: blur(.2px);
}

.stats-card:nth-child(2) {
    background:
        radial-gradient(circle at 94% 16%, rgba(244, 196, 48, .22), transparent 25%),
        linear-gradient(135deg, #2c1717 0%, #151216 48%, #070709 100%);
}

.stats-card:nth-child(2)::before {
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(244, 196, 48, .9) 42% 44%, transparent 44% 100%),
        linear-gradient(180deg, rgba(228, 35, 42, .18), transparent 58%);
}

.stats-card:nth-child(3) {
    background:
        radial-gradient(circle at 94% 16%, rgba(228, 35, 42, .24), transparent 25%),
        linear-gradient(135deg, #231113 0%, #121216 48%, #070709 100%);
}

.stats-card__watermark {
    position: absolute;
    top: 50%;
    left: -64px;
    z-index: 0;
    width: 152px;
    height: 152px;
    display: grid;
    place-items: center;
    color: #e4232a;
    opacity: .34;
    transform: translateY(-50%);
}

.stats-card__watermark svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stats-grid strong {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--white);
    text-shadow: 0 8px 24px rgba(228, 35, 42, .34);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.stats-card > strong,
.stats-card > span:not(.stats-card__watermark) {
    position: relative;
    z-index: 1;
}

.stats-grid span {
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
    letter-spacing: .02em;
}

.stats-grid .stats-card__watermark {
    color: #e4232a;
}


.section {
    padding: 96px 0;
}

.section--soft,
.section--about {
    background:
        linear-gradient(180deg, rgba(234, 247, 255, .82), rgba(234, 247, 255, .42)),
        radial-gradient(circle at 80% 20%, rgba(255, 178, 41, .16), transparent 24%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.split h2,
.contact-copy h2,
.cta-band h2 {
    margin: 10px 0 14px;
    color: var(--blue-900);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.section-heading p,
.split p,
.contact-copy p {
    color: var(--muted);
}

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

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

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

.product-card {
    min-height: 386px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 32px rgba(6, 61, 115, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 147, 223, .45);
    box-shadow: var(--shadow);
}

.product-card a {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.product-card__category {
    align-self: flex-start;
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: .72rem;
    font-weight: 900;
}

.product-card img {
    width: 100%;
    height: 170px;
    margin: 8px 0;
    object-fit: contain;
    transition: transform .3s ease;
}

.product-card:hover img {
    transform: scale(1.06) rotate(-1deg);
}

.product-card h3 {
    margin: 0 0 8px;
    color: var(--blue-900);
    font-size: 1.1rem;
    line-height: 1.2;
}

.product-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: .93rem;
}

.product-card__application {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 750;
}

.text-link {
    margin-top: auto;
    color: var(--blue-700);
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: 56px;
}

.feature-stack {
    display: grid;
    gap: 16px;
}

.feature-step,
.info-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(6, 61, 115, .08);
}

.feature-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
}

.feature-step span,
.info-card span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--yellow-500);
    font-weight: 900;
}

.image-panel {
    overflow: hidden;
    border-radius: 8px 80px 8px 80px;
    box-shadow: var(--shadow);
}

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

.image-panel--catalog-home img {
    object-position: 78% center;
}

.media-carousel {
    position: relative;
}

.media-carousel__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #eef2f8;
    box-shadow: var(--shadow);
}

.media-carousel__slide {
    display: none;
    margin: 0;
}

.media-carousel__slide.is-active {
    display: block;
}

.media-carousel__slide img {
    width: 100%;
    aspect-ratio: 574 / 415;
    object-fit: cover;
}

.media-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--yellow-500);
    box-shadow: 0 12px 26px rgba(12, 26, 85, .22);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.media-carousel__arrow--prev { left: 14px; }
.media-carousel__arrow--next { right: 14px; }

.media-carousel__dots {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.media-carousel__dots button {
    width: 11px;
    height: 11px;
    border: 1px solid var(--white);
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, .22);
    cursor: pointer;
}

.media-carousel__dots button.is-active {
    background: var(--yellow-500);
}

.cta-band {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(12, 26, 85, .95), rgba(237, 28, 36, .72)),
        url("../img/ceramicpower/banner-contact.jpg") center/cover;
}

.cta-band__inner {
    min-height: 290px;
    display: grid;
    align-content: center;
    justify-items: start;
}

.cta-band h2 {
    color: var(--white);
}

.cta-band p {
    max-width: 680px;
    margin-top: 0;
}

.insight-banner {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: grid;
    align-items: center;
    color: var(--white);
    isolation: isolate;
}

.insight-banner__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.insight-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(6, 61, 115, .88) 0%, rgba(6, 61, 115, .54) 48%, rgba(6, 61, 115, .12) 100%);
}

.insight-banner__content {
    max-width: 660px;
    padding: 84px 0;
}

.insight-banner h2 {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.insight-banner p {
    color: rgba(255, 255, 255, .9);
}

.insight-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.insight-cards span {
    min-height: 118px;
    display: grid;
    align-content: end;
    border-radius: 8px 36px 8px 8px;
    padding: 18px;
    color: var(--white);
    background: rgb(223 20 20 / 72%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    font-weight: 900;
}

.insight-cards span:nth-child(3) {
        color: #ffffff;
    background: rgb(21 21 21 / 88%);
}

.page-hero {
    padding: 105px 0 140px;
    text-align: center;
}

.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .32;
    background-size: cover;
    background-position: center;
}

.page-hero > .shell {
    position: relative;
    z-index: 1;
}

.page-hero--compact {
    padding-bottom: 120px;
}

.page-hero .eyebrow {
    justify-content: center;
}

.page-hero .eyebrow::after {
    display: none;
}

.company-grid,
.product-detail-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.support-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    align-items: stretch;
    gap: 28px;
}

.support-copy,
.narrow-copy {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 34px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.narrow-copy {
    max-width: 860px;
    margin-inline: auto;
}

.support-copy h2,
.narrow-copy h2 {
    margin: 12px 0 14px;
    color: var(--blue-900);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.05;
}

.support-copy p,
.narrow-copy p {
    color: var(--muted);
}

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

.support-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(215, 25, 32, .08), transparent 46%),
        var(--white);
    box-shadow: var(--shadow);
}

.location-browser {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.location-page-intro {
    max-width: 780px;
    margin: 0 auto 34px;
    color: var(--muted);
    text-align: center;
    font-size: 1.08rem;
    font-weight: 800;
}

.location-browser__aside {
    position: sticky;
    top: 132px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.location-country-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.location-country-list a {
    display: grid;
    border-radius: 8px;
    padding: 14px;
    color: var(--white);
    background: linear-gradient(145deg, var(--carbon-900), var(--carbon-800));
}

.location-country-list span {
    color: rgba(255, 255, 255, .66);
    font-size: .86rem;
}

.location-browser__content,
.location-state-grid {
    display: grid;
    gap: 22px;
}

.location-country {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.location-country__head h2 {
    margin: 8px 0 0;
    color: var(--blue-900);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1;
}

.location-country__head p {
    margin: 8px 0 16px;
    color: var(--muted);
    font-weight: 800;
}

.location-state {
    border-radius: 8px;
    padding: 18px;
    background: #f5f7fb;
}

.location-state h3 {
    margin: 0 0 12px;
    color: var(--blue-900);
    text-transform: uppercase;
}

.location-state--collapsed {
    padding: 0;
    overflow: hidden;
}

.location-state--collapsed > summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    color: var(--blue-900);
    cursor: pointer;
    list-style: none;
    text-transform: uppercase;
}

.location-state--collapsed > summary::-webkit-details-marker,
.location-city summary::-webkit-details-marker {
    display: none;
}

.location-state--collapsed > summary span,
.location-city summary span {
    display: inline-grid;
    min-width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: var(--carbon-950);
    background: var(--ember-500);
    font-size: .82rem;
    font-weight: 900;
}

.location-state--collapsed[open] > summary {
    border-bottom: 1px solid var(--line);
}

.location-state--collapsed > .location-city {
    margin: 0 18px;
}

.location-city {
    border-top: 1px solid var(--line);
    padding: 10px 0;
}

.location-city summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--carbon-900);
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.location-city--standalone-toggle {
    border-top: 0;
    padding-top: 0;
}

.location-state--collapsed .location-city summary,
.location-city--standalone-toggle summary {
    justify-content: flex-start;
}

.location-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.location-card-grid--standalone {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: var(--white);
}

.location-card > span,
.location-card dt {
    color: var(--ember-500);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.location-card h4 {
    margin: 0 0 10px;
    color: var(--blue-900);
    font-size: 1.1rem;
    line-height: 1.12;
    text-transform: uppercase;
}

.location-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.location-card dd {
    margin: 0;
    color: var(--ink);
    font-size: .94rem;
    line-height: 1.35;
}

.location-card-link {
    color: var(--blue-700);
    font-weight: 850;
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--yellow-500) 54%, transparent);
    text-underline-offset: 3px;
}

.location-card-link:hover {
    color: var(--yellow-500);
}

.location-card-link span {
    font-size: .78em;
}

.location-empty {
    border: 1px dashed rgba(240, 161, 31, .55);
    border-radius: 8px;
    margin: 14px 0 0;
    padding: 16px;
    color: var(--muted);
    background: #fff8eb;
    font-weight: 800;
}

.support-card span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px 8px 20px 8px;
    color: var(--white);
    background: var(--yellow-500);
    font-weight: 900;
}

.support-card h2 {
    margin: 0;
    color: var(--blue-900);
    font-size: 1.5rem;
    line-height: 1.1;
}

.support-card p {
    margin: 0;
    color: var(--muted);
}

.support-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.support-visual {
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    margin: 0;
    box-shadow: var(--shadow);
}

.support-visual img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.download-card {
    min-height: 315px;
}

.brand-colors {
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(20, 147, 223, .18), transparent 28%),
        linear-gradient(180deg, #fff, #eef9ff);
}

.brand-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 56px;
}

.brand-grid h2,
.water-statement h2,
.technical-box h2 {
    margin: 10px 0 14px;
    color: var(--blue-900);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.brand-grid p,
.water-statement p,
.technical-box p {
    color: var(--muted);
}

.company-feature-section .image-panel {
    border-radius: 8px;
}

.company-feature-section .image-panel img {
    min-height: 260px;
}

.company-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.topic-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.topic-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.topic-card div {
    padding: 24px;
}

.topic-card span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--yellow-500);
    font-weight: 900;
}

.topic-card h2 {
    margin: 16px 0 8px;
    color: var(--blue-900);
    line-height: 1.15;
}

.topic-card p {
    margin: 0;
    color: var(--muted);
}

.company-video-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    color: var(--white);
    background: var(--blue-900);
}

.company-video-section__bg {
    position: absolute;
    inset: 0;
    opacity: .28;
    background-size: cover;
    background-position: center;
}

.company-video-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(420px, 1fr);
    align-items: center;
    gap: 42px;
}

.company-video-grid h2 {
    margin: 10px 0 14px;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
}

.company-video-grid p {
    color: rgba(255, 255, 255, .86);
}

.video-embed {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: #000;
}

.video-embed iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.brand-drops {
    position: relative;
    min-height: 360px;
}

.company-elements {
    position: relative;
    min-height: 390px;
}
.company-element {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(12, 26, 85, .2));
}
.company-element--one {
    top: 42px;
    left: 46%;
    width: 150px;
    animation: companyFloatRight 6s ease-in-out infinite;
}
.company-element--two {
    top: 150px;
    left: 8%;
    width: 168px;
    animation: companyFloatUp 5s ease-in-out infinite;
}
.company-element--three {
    top: 210px;
    left: 48%;
    width: 128px;
    animation: companyFloatLeft 7s ease-in-out infinite;
}

@keyframes companyFloatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
@keyframes companyFloatLeft {
    0%, 100% { transform: translateX(0) rotate(0); }
    50% { transform: translateX(-20px) rotate(-4deg); }
}
@keyframes companyFloatRight {
    0%, 100% { transform: translateX(0) rotate(0); }
    50% { transform: translateX(22px) rotate(4deg); }
}

.drop {
    position: absolute;
    display: block;
    width: 160px;
    height: 250px;
    border-radius: 100% 0 100% 100%;
    opacity: .92;
    filter: drop-shadow(0 22px 28px rgba(6, 61, 115, .18));
    animation: brandDropFloat 6s ease-in-out infinite;
}

.drop--blue {
    left: 10%;
    top: 56px;
    background: linear-gradient(160deg, #68b9ee, #1493df);
    transform: rotate(-35deg);
}

.drop--yellow {
    left: 36%;
    top: 0;
    background: linear-gradient(160deg, #ffe66d, #ffb229);
    transform: rotate(22deg);
    animation-delay: .6s;
}

.drop--green {
    left: 40%;
    top: 170px;
    width: 240px;
    height: 132px;
    background: linear-gradient(160deg, #9bd36d, #70b84b);
    transform: rotate(4deg);
    animation-delay: 1.2s;
}

.color-meaning {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.color-meaning span {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    background: var(--white);
    font-weight: 800;
}

.swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.swatch--blue { background: var(--blue-500); }
.swatch--yellow { background: var(--yellow-500); }
.swatch--green { background: #78bd4d; }

.water-statement {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(12, 26, 85, .92), rgba(237, 28, 36, .62)),
        url("../img/ceramicpower/banner-performance.jpg") center/cover;
}

.water-statement__inner {
    min-height: 360px;
    display: grid;
    align-content: center;
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.water-statement h2,
.water-statement p {
    color: var(--white);
}

.technical-box {
    border-radius: 8px;
    padding: 34px;
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.catalog-card {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.catalog-card:hover {
    border-color: rgba(20, 147, 223, .35);
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(6, 61, 115, .16);
}

.catalog-card__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 8px 8px 22px 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    font-size: .88rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.catalog-card__category {
    color: var(--blue-700);
    font-weight: 900;
    font-size: .82rem;
    text-transform: uppercase;
}

.catalog-card h2 {
    margin: 0;
    color: var(--blue-900);
    font-size: 1.45rem;
    line-height: 1.15;
}

.catalog-card p {
    margin: 0;
    color: var(--muted);
}

.catalog-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.catalog-card--cover {
    padding-top: 18px;
}

.catalog-card__cover {
    width: min(100%, 230px);
    height: 292px;
    align-self: center;
    border-radius: 6px;
    object-fit: cover;
}

.line-card img {
    height: 220px;
    object-fit: cover;
    background: transparent;
}

.split--reverse .image-panel {
    order: -1;
}

.line-detail-list {
    display: grid;
    gap: 28px;
}

.line-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.line-showcase-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 221, 230, .8);
    border-radius: 8px;
    color: var(--carbon-900);
    background: var(--white);
    box-shadow: var(--shadow);
}

.line-showcase-card__media {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 292px;
    margin: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.line-showcase-card__media::after {
    content: none;
}

.line-showcase-card__media img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
    transition: transform .3s ease, opacity .3s ease;
}

.line-showcase-card:hover .line-showcase-card__media img {
    opacity: 1;
    transform: scale(1.03);
}

.line-showcase-card::before {
    content: none;
}

.line-showcase-card__content {
    position: relative;
    z-index: 1;
    max-width: none;
    padding: 26px;
}

.line-showcase-card__content h2 {
    margin: 10px 0 12px;
    color: var(--blue-900);
    font-size: clamp(1.55rem, 2.2vw, 2.25rem);
    line-height: 1.05;
}

.line-showcase-card__content p {
    color: var(--muted);
}

.line-showcase-card__number {
    position: absolute;
    right: 18px;
    top: 14px;
    z-index: 1;
    color: rgba(215, 25, 32, .14);
    font-size: 3.4rem;
    font-weight: 950;
    line-height: 1;
}

.line-detail {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.line-detail__image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.line-detail__content {
    display: grid;
    align-content: center;
    padding: 42px;
}

.line-detail__content h2,
.social-panel h2,
.social-feed-card h2 {
    margin: 10px 0 14px;
    color: var(--blue-900);
    font-size: clamp(1.85rem, 3.2vw, 2.8rem);
    line-height: 1.05;
}

.line-detail__content p,
.social-panel p,
.social-feed-card p {
    color: var(--muted);
}

.line-detail__actions,
.social-panel__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.line-detail__number {
    position: absolute;
    right: 18px;
    bottom: 10px;
    color: rgba(12, 26, 85, .08);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 1;
}

.line-products-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #fff, #f5f8fc);
}

.line-products-cta h2 {
    margin: 8px 0 8px;
    color: var(--blue-900);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.1;
}

.line-products-cta p {
    color: var(--muted);
}

.social-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 34px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.section--social {
    background: linear-gradient(180deg, #fff, #f5f7fb);
}

.dealer-visual {
    overflow: hidden;
    max-width: 430px;
    margin-top: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fc, #fff);
}

.dealer-visual img {
    width: 100%;
    object-fit: contain;
}

.dealer-visual--small {
    max-width: 300px;
}

.social-feed-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 24px;
    align-items: start;
}

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

.social-feed-grid--three .social-feed-card:nth-child(3) {
    grid-column: 1 / -1;
}

.social-feed-grid--three .social-feed-card:nth-child(3) iframe {
    max-width: 100%;
}

.social-feed-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.facebook-frame {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    background: #f4f5f8;
}

.facebook-frame iframe,
.instagram-frame iframe,
.youtube-frame iframe {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
    display: block;
}

.instagram-frame,
.youtube-frame {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    background: #f4f5f8;
}

.product-catalogs {
    margin-top: 28px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

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

.product-gallery__item {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(12, 26, 85, .08);
    cursor: zoom-in;
}

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

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 30px;
    background: rgba(5, 10, 30, .9);
}

.product-lightbox.is-open { display: grid; }
.product-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    border-radius: 8px;
    background: var(--white);
    object-fit: contain;
}
.product-lightbox button {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--yellow-500);
    font-size: 1.8rem;
    cursor: pointer;
}

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

.product-category-panel,
.empty-products {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.product-category-panel {
    position: sticky;
    top: var(--product-menu-sticky-top, 126px);
    overflow: visible;
}

.product-category-panel h2,
.empty-products h2 {
    margin: 0 0 14px;
    color: var(--blue-900);
    line-height: 1.15;
}

.product-search {
    margin-bottom: 20px;
}
.product-search label {
    display: block;
    margin-bottom: 7px;
    color: var(--blue-900);
    font-size: .82rem;
    font-weight: 900;
}
.product-search > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
}
.product-search input {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 7px 0 0 7px;
    padding: 11px;
}
.product-search button {
    border: 0;
    border-radius: 0 7px 7px 0;
    color: var(--white);
    background: var(--yellow-500);
    font-size: 1.25rem;
    cursor: pointer;
}

.product-category-panel a,
.product-category-panel li a {
    position: relative;
    display: block;
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--blue-900);
    font-weight: 800;
    line-height: 1.25;
}

.product-category-panel a:hover,
.product-category-panel a.is-active,
.product-category-panel li a:hover {
    color: var(--white);
    background: var(--yellow-500);
}

.product-category-group {
    margin-top: 4px;
}

.product-category-parent {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-category-parent::after {
    content: "+";
    opacity: .36;
    font-size: .78rem;
    font-weight: 800;
}

.product-category-group > ul {
    margin-top: 4px;
    padding-left: 12px;
}

.product-category-panel ul {
    margin: 4px 0 0 0;
    padding: 0 0 0 12px;
    list-style: none;
}

.product-category-panel ul ul {
    margin-left: 8px;
    padding-left: 8px;
}

.product-category-panel li.has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-category-panel li.has-children > a::after {
    content: "+";
    opacity: .36;
    font-size: .78rem;
    font-weight: 800;
}

.product-category-panel li li > a {
    padding-left: 26px;
}

.product-category-panel li li > a::before {
    content: "›";
    position: absolute;
    left: 12px;
    opacity: .34;
    font-size: .72rem;
    font-weight: 800;
}

.empty-products p {
    margin: 0;
    color: var(--muted);
}

.product-catalogs h3 {
    margin: 0 0 8px;
    color: var(--blue-900);
    font-size: 1.45rem;
}

.product-catalogs p {
    margin-bottom: 18px;
}

.check-list--columns {
    columns: 2;
    column-gap: 40px;
}

.check-list--columns li {
    break-inside: avoid;
}

.info-card h2 {
    margin: 18px 0 8px;
    color: var(--blue-900);
    line-height: 1.15;
}

.info-card p {
    color: var(--muted);
}

.product-hero {
    padding: 92px 0 130px;
}

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

.product-models-section {
    background: linear-gradient(180deg, #fff, #f2f8fd);
}

.model-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 30px 0 0;
}

.model-tabs a {
    min-height: 62px;
    display: grid;
    place-items: center;
    border-radius: 8px 8px 24px 8px;
    padding: 14px;
    color: var(--blue-900);
    background: #bfd0e7;
    font-weight: 900;
    text-align: center;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.model-tabs a:hover,
.model-tabs a.is-active {
    color: var(--white);
    background: var(--blue-700);
    transform: translateY(-2px);
}

.model-grid {
    display: grid;
    gap: 20px;
    margin-top: 18px;
}

.model-card {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 34px;
    background: #e7eef8;
    box-shadow: var(--shadow);
}

.model-card__image {
    min-height: 320px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
}

.model-card__image img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.model-card__number {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-900);
    background: var(--yellow-500);
    font-weight: 900;
}

.model-card h3 {
    margin: 18px 0 8px;
    color: var(--blue-700);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.15;
}

.capacity-grid {
    display: grid;
    gap: 24px;
    margin-top: 28px;
}

.capacity-card {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.capacity-card figcaption {
    margin-bottom: 16px;
    color: var(--blue-700);
    font-size: 1.1rem;
    font-weight: 900;
}

.capacity-card img {
    max-width: min(980px, 100%);
    height: auto;
    object-fit: contain;
}

.capacity-note {
    margin: 22px auto 0;
    color: var(--blue-700);
    font-size: 1.15rem;
    font-style: italic;
    text-align: center;
}

.check-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--muted);
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: 900;
}

.contact-grid {
    grid-template-columns: .85fr 1.15fr;
}

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

.contact-list li {
    display: grid;
    gap: 2px;
    border-left: 4px solid var(--ember-500);
    padding-left: 14px;
}

.contact-list strong {
    color: var(--blue-900);
}

.contact-list a,
.contact-list span {
    color: var(--muted);
}

.contact-form {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 221, 230, .18);
    border-radius: 8px;
    padding: 34px;
    background:
        linear-gradient(122deg, transparent 0 62%, rgba(240, 161, 31, .13) 62% 64%, transparent 64% 100%),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(145deg, var(--carbon-800), var(--carbon-950));
    background-size: auto, 28px 28px, 28px 28px, auto;
    box-shadow: 0 24px 58px rgba(0, 0, 0, .28);
}

.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--ember-500), transparent);
}

.contact-form .btn--primary {
    color: var(--carbon-950);
    background: var(--ember-500);
    box-shadow: 0 16px 34px rgba(240, 161, 31, .2);
}

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

.contact-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    color: var(--white);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid rgba(216, 221, 230, .24);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: #f4f6fa;
    font: inherit;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--ember-500);
    box-shadow: 0 0 0 3px rgba(240, 161, 31, .16);
}

.contact-form textarea {
    resize: vertical;
}

.contact-visual {
    overflow: hidden;
    margin-top: 28px;
    border-radius: 8px;
    background: #f4f6fb;
}

.contact-visual img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-alert {
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 12px 14px;
    font-weight: 800;
}

.form-alert--ok {
    color: #0b523f;
    background: #d9fff3;
}

.form-alert--error {
    color: #5a3510;
    background: #fff0d2;
}

.site-footer {
    color: var(--white);
    background:
        linear-gradient(122deg, transparent 0 36%, rgba(240, 161, 31, .08) 36% 38%, transparent 38% 100%),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(145deg, var(--carbon-950), var(--carbon-800));
    background-size: auto, 32px 32px, 32px 32px, auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(250px, .78fr);
    align-items: start;
    gap: 28px;
    padding: 42px 0 34px;
}

.footer-logo {
    width: auto;
    height: 54px;
}

.footer-logo-card {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 7px 9px;
}

.site-footer p,
.footer-list {
    color: rgba(255, 255, 255, .78);
}

.site-footer h2 {
    margin: 0 0 10px;
    color: var(--ember-300);
    font-size: 1rem;
}

.footer-list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .92rem;
    line-height: 1.45;
}

.footer-list a:hover {
    color: var(--ember-300);
}

.footer-column--brand p {
    max-width: 46ch;
    margin: 0;
    font-size: .92rem;
    line-height: 1.55;
}

.footer-actions {
    display: grid;
    gap: 18px;
}

.footer-select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 0 42px 0 14px;
    color: var(--white);
    background:
        linear-gradient(45deg, transparent 50%, currentColor 50%) calc(100% - 20px) 18px / 7px 7px no-repeat,
        linear-gradient(135deg, currentColor 50%, transparent 50%) calc(100% - 15px) 18px / 7px 7px no-repeat,
        rgba(255, 255, 255, .08);
    font: inherit;
    font-weight: 800;
    appearance: none;
}

.footer-select:focus {
    outline: 2px solid rgba(240, 161, 31, .62);
    outline-offset: 2px;
}

.footer-select option {
    color: var(--ink);
    background: var(--white);
}

.footer-social h2 {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(145deg, #3b3e47, var(--ember-500));
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 12px max(178px, calc((100vw - 1180px) / 2)) 12px max(16px, calc((100vw - 1180px) / 2));
    color: var(--white);
    border-top: 1px solid rgba(240, 161, 31, .3);
    background: #090a0d;
    font-weight: 800;
    font-size: .9rem;
}

.footer-dev-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: auto;
    color: var(--white);
    font-weight: 800;
    white-space: nowrap;
}

.footer-dev-logo:hover {
    color: var(--white);
    opacity: .9;
}

.footer-dev-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.virtual-support {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: flex;
    justify-content: flex-end;
}

.virtual-support__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 54px;
    height: 54px;
    border-radius: 999px;
    padding: 8px;
    color: var(--white);
    background: #1fb655;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .24);
    overflow: hidden;
    font-weight: 900;
    white-space: nowrap;
    transition: gap .22s ease, padding .22s ease, transform .22s ease, box-shadow .22s ease;
}

.virtual-support:hover .virtual-support__button,
.virtual-support__button:hover,
.virtual-support__button:focus-visible {
    gap: 9px;
    padding-right: 16px;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.virtual-support__button span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.virtual-support__button svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
}

.virtual-support__button strong {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width .22s ease, opacity .18s ease;
}

.virtual-support:hover .virtual-support__button strong,
.virtual-support__button:hover strong,
.virtual-support__button:focus-visible strong {
    max-width: 130px;
    opacity: 1;
}

.site-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(6, 61, 115, .64);
    backdrop-filter: blur(8px);
}

.site-popup.is-hidden {
    display: none;
}

.site-popup__card {
    position: relative;
    width: min(620px, 100%);
    border-radius: 8px;
    padding: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.site-popup__card--image-only {
    width: auto;
    max-width: calc(100vw - 44px);
    padding: 0;
    background: transparent;
    box-shadow: 0 20px 56px rgba(0, 0, 0, .24);
}

.site-popup__card img {
    display: block;
    width: 100%;
    height: min(62vh, 560px);
    border-radius: 8px;
    object-fit: contain;
    margin-bottom: 18px;
    background: #f5f9fc;
}

.site-popup__card--image-only img {
    width: auto;
    max-width: calc(100vw - 44px);
    height: auto;
    max-height: min(82vh, 780px);
    margin: 0;
    background: transparent;
    box-shadow: none;
}

.site-popup__card h2 {
    margin: 0 0 10px;
    color: var(--blue-900);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.05;
}

.site-popup__card p {
    color: var(--muted);
}

.site-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-900);
    font-size: 1.4rem;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes waterDrift {
    from { transform: scale(1.04) translateX(-1%); }
    to { transform: scale(1.1) translateX(1.5%); }
}

@keyframes brandDropFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -18px; }
}

@media (max-width: 1215px) {
    .topbar__hours {
        display: none;
    }

    .product-menu {
        width: 300px;
    }

    .product-menu--simple {
        width: 205px;
    }

    .product-menu a,
    .product-menu li a {
        padding: 7px 9px;
        font-size: .72rem;
        line-height: 1.16;
    }
}

@media (max-width: 1040px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .brand img {
        height: 72px;
        max-width: 220px;
    }

    .main-nav a,
    .nav-item > a {
        padding-inline: 6px;
        font-size: .64rem;
    }

    .product-menu {
        width: 280px;
        padding: 8px;
    }

    .product-menu--simple {
        width: 190px;
    }

    .product-menu a,
    .product-menu li a {
        padding: 6px 8px;
        font-size: .68rem;
        line-height: 1.18;
    }

    .product-menu li li > a {
        padding-left: 21px;
    }

    .product-menu li li > a::before {
        left: 9px;
    }

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

    .footer-actions {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
    }

    .footer-social {
        min-width: 184px;
    }
}

@media (max-width: 1024px) {
    .main-nav .nav-link--home,
    .main-nav .nav-link--noticias {
        display: none;
    }
}

@media (max-width: 850px) {
    .main-nav {
        display: none !important;
    }

    .main-nav .nav-link--home,
    .main-nav .nav-link--noticias {
        display: block;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .main-nav.is-open {
        display: grid !important;
    }
}

@media (max-width: 850px) {
    .topbar__inner {
        justify-content: center;
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .nav-shell__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        align-self: auto;
        grid-column: 1 / -1;
        padding: 16px 18px 22px;
        background: var(--white);
        box-shadow: 0 18px 30px rgba(6, 61, 115, .14);
    }

    .main-nav.is-open {
        display: grid;
    }

    .main-nav a {
        color: var(--blue-900);
        border-radius: 8px;
        padding: 12px;
    }

    .nav-item > a {
        display: block;
        color: var(--blue-900);
        border-radius: 8px;
        padding: 12px;
    }

    .product-menu {
        position: static;
        width: 100%;
        max-height: none;
        display: block;
        margin-top: 6px;
        box-shadow: none;
    }

    .support-layout,
    .support-card-grid,
    .support-card-grid--three,
    .line-showcase-grid,
    .location-browser,
    .location-card-grid,
    .location-card-grid--standalone,
    .social-feed-grid--three {
        grid-template-columns: 1fr;
    }

    .social-feed-grid--three .social-feed-card:nth-child(3) {
        grid-column: auto;
    }

    .location-browser__aside {
        position: static;
    }

    .line-showcase-card__content {
        max-width: 86%;
    }

    .lang-switch {
        top: 50%;
        right: 54px;
        transform: translateY(-50%);
    }

    .hero,
    .product-hero {
        min-height: auto;
        padding: 68px 0 116px;
    }

    .home-banner .hero-slide--image,
    .home-banner .hero-slide--video {
        min-height: 0;
        padding: 0;
    }

    .home-banner .banner-dots {
        bottom: 50px;
    }

    .hero__grid,
    .product-hero__grid,
    .split,
    .brand-grid,
    .company-video-grid,
    .contact-grid,
    .product-detail-grid,
    .line-detail,
    .social-panel,
    .social-feed-grid {
        grid-template-columns: 1fr;
    }

    .insight-cards {
        grid-template-columns: 1fr;
    }

    .brand-drops {
        min-height: 300px;
    }

    .check-list--columns {
        columns: auto;
    }

    .model-tabs {
        grid-template-columns: 1fr;
    }

    .model-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .model-card__image {
        min-height: 240px;
    }

    .hero__product,
    .product-hero__image {
        min-height: 310px;
    }

    .hero__product--photo img {
        height: 300px;
    }

    .line-detail__content {
        padding: 28px;
    }

    .line-detail__image img {
        min-height: 260px;
    }

    .social-panel__actions,
    .line-detail__actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .product-category-panel {
        position: static;
    }

    .stats-grid,
    .company-grid,
    .company-topic-grid,
    .catalog-grid,
    .product-grid,
    .product-grid--compact,
    .product-grid--catalog,
    .product-gallery {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        border-radius: 8px 48px 8px 48px;
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .shell {
        width: min(100% - 26px, 1160px);
    }

    .nav-shell {
        padding: 10px 0;
    }

    .nav-shell__inner {
        min-height: 66px;
        gap: 8px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: clamp(160px, 46vw, 205px);
        height: auto;
        max-height: 52px;
        object-fit: contain;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .lang-switch {
        gap: 3px;
    }

    .lang-switch a {
        width: 32px;
        height: 32px;
        font-size: .95rem;
    }

    .hero h1,
    .page-hero h1,
    .product-hero h1 {
        font-size: 2.25rem;
    }

    .home-banner .hero-slide--image,
    .home-banner .hero-slide--video {
        aspect-ratio: 1920 / 800;
    }

    .home-banner .banner-dots {
        bottom: 44px;
        gap: 6px;
    }

    .home-banner .banner-dots button {
        width: 9px;
        height: 9px;
    }

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

    .btn {
        width: 100%;
    }

    .catalog-actions .text-link {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 34px 0 28px;
    }

    .footer-bottom {
        padding-right: 154px;
    }

    .footer-actions {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

}

@media (max-width: 520px) {
    .topbar__location {
        display: none;
    }
}
